@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}
*/
:root {
  --white: #ffffff;
  --color1: #242f51;
  --color2: #5d544e;
  --color3: #3d3d3d;
  --color4: #616368;
  --color5: #feaa25;
  --color6: #f55767;
  --color7: #2563ff;
  --color8: #40975f;
  --color9: #fede6e;


  --poppins: "Poppins", sans-serif;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif !important;
  background: var(--white) !important;
}

p,
li,
a,
button,
span,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

a:hover {
  text-decoration: none;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color3);
  margin-bottom: 15px;
}

/* Preloader */

#preloader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}

.loader .loader-outter {
  position: absolute;
  border: 4px solid #ff4b36;
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader .loader-inner {
  position: absolute;
  border: 4px solid #ff4b36;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* scrollUp */

.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: 105%;
  right: 30px;
  font-size: 16px;
  border-radius: 6px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: var(--color5);
  transition: 1s ease;
  border: none;
  opacity: 0;
}

.scroll-top.open {
  bottom: 30px;
  opacity: 1;
}

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
  background: var(--color1);
}

.minsection {
  width: 100%;
  float: left;
}

* {
  font-family: "Poppins", sans-serif !important;
}

.fa {
  font: normal normal normal 14px / 1 FontAwesome !important;
}

.showDesktop {}

.showMobile {
  display: none;
}

section {
  width: 100%;
  position: relative;
}

.alignCenter {
  display: flex;
  align-items: center;
}

.heroBg {
  width: 100%;
  position: relative;
  background: url("../../images/hero-background.jpg") no-repeat center bottom;
  height: 100%;
  background-size: cover;
}

h1.heroTitle {
  margin: 0px;
  font-weight: 400;
  font-size: 49px;
  line-height: 55px;
  text-transform: uppercase;
  color: var(--color3);

  span {
    font-weight: 700;
    font-size: 49px;
    line-height: 55px;
    color: var(--color2);
  }
}

ul.heroList {
  margin: 0px;
  padding: 0px;
}

ul.heroList li {
  display: inline-block;
  color: var(--color4);
  margin: 0px;
  padding: 0px 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;

  &:first-child {
    padding-left: 0px;
    border-right: 1px solid var(--color4);
  }

  &:last-child {
    margin-right: 0px;
    border-left: 1px solid var(--color4);
  }
}

.searchBox input {
  border: 1px solid #ebebeb !important;
  border-radius: 30px;
  border-right: none !important;
  background: #FFF !important;
  padding: 15px 15px !important;
  height: auto;
  font-size: 16px;
}

.searchBox input:focus {
  box-shadow: none;
  background: transparent;
}

.searchBox button {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #FFF;
  border: 1px solid #ebebeb !important;
  border-left: none !important;
  padding: 0px 15px;
  color: var(--color3);

  i {
    font-size: 18px !important;
  }
}

.searchBoxTitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

ul.heroDeviceList {
  margin: 0px;
  padding: 0px;
}

ul.heroDeviceList li {
  display: inline-block;
  background: #e2eaed;
  padding: 0px 20px 0px 40px;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 30px;

  &:last-child {
    margin-right: 0px;
  }
}

ul.heroDeviceList li.icon1::before {
  content: "";
  position: absolute;
  margin-left: -40px;
  border-radius: 5px;
  background: var(--color5) url("../../images/icon-1.png") no-repeat center center !important;
  width: 30px;
  height: 30px;
}

p.para1 {
  margin: 0px;
  font-size: 16px;
  line-height: 20px;
  color: var(--color4);
}

h2.titleH2 {
  margin: 0px;
  font-size: 36px;
  line-height: 46px;
  color: var(--color2)
}

h3.titleH3 {
  margin: 0px;
  font-size: 44px;
  line-height: 50px;
  color: var(--color2)
}

.gridContainer1 {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  background-color: #FFF;
  padding: 1px;
}

.gridContainer1Item {
  /* background-color: rgba(255, 255, 255, 0.8); */
  border: 1px solid #eeeeee;
  padding: 0px;
  text-align: center;
  --c: var(--color5);
  --b: 1px;
  --g: 1px;
  padding: calc(var(--g) + var(--b));
  --_g: #0000 25%, var(--c) 0;
  background:
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
    conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
  transition: .3s, background-position .3s .3s;
  cursor: pointer;
}

.gridContainer1Item:hover {
  --_i: 100%;
  transition: .3s, background-size .3s .3s;
}



p.para2 {
  margin: 0px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--color1);
}

.headingColor1 {
  color: var(--color6) !important;
}

.headingColor2 {
  color: var(--color7) !important;
}

.headingColor3 {
  color: var(--color8) !important;
}

p.para3 {
  margin: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--color4);
}

hr.customHR {
  border-bottom: 1px solid #e5e6e5;
  margin: 15px 0px;
}

.sellingBG {
  width: 100%;
  position: relative;
  background: url("../../images/image-3.png") no-repeat center right;
}

.sellingBGMob {
  display: none;
}

.meetClientBG {
  width: 100%;
  position: relative;
  background: url("../../images/image-4.png") no-repeat center left;
}

.meetClientBGMob {
  display: none;
}

ul.testRating {
  margin: 0px;
  padding: 0px;
}

ul.testRating li {
  display: inline-block;
  color: #ffcc00;
}

.meetName {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color1);

  span {
    font-size: 16px;
    font-weight: 400;
    color: #616368;
  }
}

#meetClient .owl-nav {
  position: absolute;
  right: 0;
  bottom: 15px;
}

#meetClient .owl-nav .owl-prev {
  margin-right: 15px;
}

#meetClient .owl-nav .owl-prev::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  background: var(--color2) !important;
  width: 1px;
  height: 20px;
  opacity: 0.4;
}

/********* FAQ ********/
.set {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f5f7fa;
  border: 1px solid #f5f7fa;
  margin-bottom: 20px;
}

.set>a {
  display: block;
  text-decoration: none;
  color: var(--color1);
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 18px;
  padding: 10px 60px 10px 30px;
}

.set>a i {
  /* float: right;
  margin-top: 7px; */
  position: absolute;
  right: 20px;
  top: 17px;
  margin: 0 !important;
}



.set>a.active i {
  margin-top: 0px;
}

.set>a.active {
  background-color: #f5f7fa;
  color: var(--color1);
  padding: 30px 30px 10px 30px;
}

.set .content {
  background-color: #f5f7fa;
  border-bottom: 1px solid #f5f7fa;
  display: none;
  padding: 0px 30px 30px 30px;
  color: var(--color4);
  font-size: 16px;
}

.set .content p {
  margin: 0;
  color: var(--color4);
  font-size: 16px;
}

.downloadtBG {
  width: 100%;
  position: relative;
  background: url("../../images/image-5.png") no-repeat bottom right;
}

/********** Footer**********/
footer.one-footer {
  width: 100%;
  display: inline-block;
  background: #09142e;
  position: relative;
  color: var(--white);
}

ul.footerLinks {
  width: 100%;
  position: relative;
  margin: 0px;
  padding: 0px;
}

ul.footerLinks li {
  display: inline-block;
  margin: 0px 15px;
}

ul.footerLinks li a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
}

ul.socialLinks {
  margin: 0px;
  padding: 0px;
}

ul.socialLinks li {
  display: inline-block;
  margin: 0px 15px;
}

ul.socialLinks li a {
  display: block;
  color: var(--color2);
}

ul.socialLinks li a span {
  font-size: 24px !important;
}

.alltuchtopdown {
  -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

.revealR {
  position: relative;
  transform: translateX(-10%);
  opacity: 0;
  transition: 2s all ease;
}

.revealT {
  position: relative;
  transform: translateY(10%);
  opacity: 0;
  transition: 2s all ease;
}

.revealL {
  position: relative;
  transform: translateX(10%);
  opacity: 0;
  transition: 2s all ease;
  overflow: hidden;
}

.revealR.active {
  transform: translateY(0);
  opacity: 1;
}

.revealL.active {
  transform: translateX(0);
  opacity: 1;
}

.revealT.active {
  transform: translateY(0);
  opacity: 1;
}

/************************************/
.sub-banner {
  width: 100%;
  background-image: url('../../images/sub-banner.png');
  display: inline-block;
  position: relative;
}

.sub-banner:before {
  content: "";
  position: absolute;
  background: rgb(2 39 94 / 61%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-c {
  display: inline-block;
  color: #fff;
}

.text-line ul li {
  float: left;
  margin: 0px 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.color-t {
  color: var(--color5);
}

.colorMain {
  color: var(--color1) !important;
}

ul.productCat {
  width: 100%;
  position: relative;
}

ul.productCat li {
  display: inline-flex;
  margin-bottom: 15px;
}

ul.productCat li a {
  display: block;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  text-align: center;
  background: #f1f1f1;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color1) !important;
  border-radius: 5px;
  margin-right: 15px;

  span {
    background: var(--color5);
    font-weight: normal;
  }
}

ul.productCat li a:hover {
  color: var(--white) !important;
}

.productCard {
  width: 100%;
  position: relative;
  height: 100%;
  transition: all 0.3s ease-out;
  text-align: center;

  img {
    width: 130px;
  }
}

.productCard h6 {
  margin: 10px 0px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: var(--color1);
}

.productCard:hover {
  /* box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2); */

  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.productCard:hover h6 {
  color: var(--color5);
}

.howToSell {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
}

.bg-sec-list {
  background: var(--color5);
  box-shadow: 0px 5px 19.53px 1.47px rgb(85 80 98 / 10%);
  border-radius: 5px;
  padding: 45px 30px;
}

span.text-w {
  font-size: 73px;
  position: absolute;
  right: 20px;
  top: 0px;
  color: rgb(255 255 255 / 40%);
}

.productWrap {
  width: 100%;
  position: relative;
  background: var(--white) !important;
}

.productDetailCard {
  width: 100%;
  position: relative;
  transition: all 0.3s ease-out;
  text-align: center;
  padding: 0px;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 15px;

  img {
    border-radius: 15px;
  }
}

h3.productDetailHead {
  margin: 0px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color1);
}

h3.productDetailHead i {
  font-size: 22px !important;
  line-height: 26px !important;
  cursor: pointer;
}

h6.productDetailSub {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color1);
}

/*********************************/
.detailsCard {
  position: relative;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 0 8px 0 rgba(0, 0, 0, .07) !important; */
}

p.deatailRightPara {
  margin: 0px;
  font-size: 14px;
  line-height: 18px;
  color: var(--color1);
  font-weight: 500;
}

.checkbox-card {
  border: 1px solid;
  border-color: #cccccc;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  padding: 15px;
  background: var(--white);
  border-radius: 0px 10px;
}

.checkbox-card:hover {
  transition: all 200ms cubic-bezier(0.4, 0.0, 0.2, 1);
  /* box-shadow: 0 0.0325rem 0.325rem rgb(0 0 0 / 20%), 0 0.325rem 1.875rem rgb(0 0 0 / 10%); */
  border-radius: 15px 0px;
  border-color: var(--color5);
}

.cardDetailsCheckbox {
  position: absolute;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  top: calc(100% - 23px);
  left: calc(50% - 0.5rem);
}

/* .cardDetailsCheckbox:checked {
  background-color: #0063e6;
  border-color: #0063e6;
  background-image: url("https://assets.codepen.io/8369470/uEA05-approve-white.svg");
  background-position: center;
  background-repeat: no-repeat;
} */

.cardDetailsCheckbox:checked~.checkbox-card {
  border-color: var(--white);
  background: var(--color5);
  border-radius: 15px 0px;
  box-shadow: inset -2px -2px 5px #fff, inset 3px 3px 5px rgba(0, 0, 0, .1);
}

/* .cardDetailsCheckbox:focus~.checkbox-card {
  box-shadow: 0 0 0 2px #b3d4ff;
} */

/*************************************/

.nextBtn {
  display: block;
  font-size: 16px;
  background: var(--color5);
  padding: 10px 30px;
  color: #09142e;
  border-radius: 5px;
  font-weight: 500;
}

#productInfo .owl-stage-outer {
  width: 100%;
  position: relative;
  /* max-height: 450px;
  overflow-y: scroll; */
}

#productInfo .owl-nav {
  text-align: right;
}

.productDetailsSect {
  width: 100%;
  position: relative;
  background: #f6f7f5 !important;
}

.offersCard {
  width: 100%;
  position: relative;
  border: solid 1px #eee;
  padding: 20px;
  border-radius: 10px;
}

span.offersCardBgImg {
  position: absolute;
  right: 15px;
  bottom: 0%;
  width: 100%;
  height: 100%;
  background: #f6f7f5 url("../../images/hand.svg")no-repeat right bottom;
  opacity: 0.03;
}

h1.offersTitle {
  margin: 0px;
  color: var(--color6);
  font-size: 3.2em;
  letter-spacing: .1em;
  font-weight: 700;
  line-height: 1.5em;
  text-transform: uppercase;
}

h2.offersPrice {
  margin: 0px;
  color: #3d4246;
  margin-top: 0;
  font-size: 3.2em !important;
  line-height: 1.5em !important;
}

h2.offersPrice i {
  margin: 0px;
  color: var(--color5);
  font-size: 2.2em !important;
  line-height: 1.5em !important;
}

.sellButton {
  background: var(--color5);

  &:hover {
    color: #FFF;
  }
}

/*********** Modal CSS *********/
.modal-header,
.modal-footer {
  border: 0px;
  padding: 0px;
}

.modal-header .close {
  padding: 0px;
  color: #FFF;
  font-weight: 400 !important;
}

.inputStyle {
  height: 50px;
  font-size: 16px;
}

.inputStyle:focus,
.inputStyle:focus-visible {
  border: 1px solid var(--color5) !important;
  background-color: var(--white) !important;
  box-shadow: none;
  outline: none;
}

/*********** Checkout ***********/
.couponCard {
  width: 100%;
  position: relative;
  border: solid 1px #eee;
  padding: 20px;
  border-radius: 10px;
}

.couponApply input {
  border: 1px solid #ebebeb !important;
  border-radius: 30px;
  border-right: none !important;
  background: #FFF !important;
  padding: 15px 15px !important;
  height: auto;
  font-size: 16px;
}

.couponApply input:focus {
  box-shadow: none;
  background: transparent;
}

.couponApply button {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--color5);
  color: var(--white);
  border: 1px solid #ebebeb !important;
  border-left: none !important;
  padding: 0px 15px;

  i {
    font-size: 18px !important;
  }
}

.couponApplyWrap {
  width: 100%;
  position: relative;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  background: #FFF;
  padding: 30px;
}


.couponTotalHeader {
  width: 100%;
  position: relative;
  background: var(--color5);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 10px;
}

.couponTotal {
  width: 100%;
  position: relative;
  max-height: 300px;
  background: #FFF;
  border: 1px solid var(--color5);
  /* border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px; */
  padding: 15px;
  overflow-y: scroll;
}

.couponTotal::-webkit-scrollbar {
  width: 3px;
}

.couponTotal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.couponTotal::-webkit-scrollbar-thumb {
  background: var(--color5);
}

.couponTotal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

ul.deviceEvList {
  margin: 0px;
  padding: 0px;
}

ul.deviceEvList li {
  font-size: 16px;
  line-height: 18px;
  list-style-type: disclosure-closed;
  margin-left: 20px;
  margin-bottom: 15px;
}

ul.deviceEvList li ul {
  margin: 0px;
  padding: 0px;
}

ul.deviceEvList li ul li {
  font-size: 14px;
  line-height: 16px;
  list-style-type: disc;
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.addressCard {
  width: 100%;
  position: relative;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  border-radius: 30px 0px;
  padding: 40px 30px;
  border: 1px solid var(--color5);
  cursor: pointer;
}

.addressCardTitle {
  width: 100%;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
}

.InputGroup input[type="radio"] {
  visibility: hidden;
  display: none;
  height: 0;
  width: 0;
}

.InputGroup label {
  width: 100%;
  display: block;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: var(--white);
  color: var(--color1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  border-radius: 0px 30px;
  padding: 15px 30px;
  border: 1px solid var(--color5);
  text-transform: inherit;
  touch-action: manipulation;
  transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  -webkit-transition: all ease 300ms;
  -ms-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.InputGroup label:last-of-type {
  margin-right: 0;
}

.InputGroup input[type="radio"]:checked+label {
  background-color: var(--color5);
  color: var(--white);
  box-shadow: none;
}

.InputGroup input[type="radio"]:hover:not(:checked)+label {
  background-color: var(--color5);
  color: var(--white);
}

.paymentCollspan {
  width: 100%;
  position: relative;
}

.paymentCollspan .set {
  width: 100%;
  height: auto;
  border: 1px solid var(--color5);
  background: none;
  border-radius: 5px;
  margin-bottom: 20px;

}

.paymentCollspan .set>a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--color1);
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.paymentCollspan .set>a.active {
  border-radius: 5px 5px 0px 0px;
  background: var(--color5);
  color: var(--white);
}

.paymentCollspan .set .content {
  border-radius: 0px 0px 5px 5px;
  padding: 15px;
  background: #FFF;
}

.paymentCollspan .set .content label {
  font-size: 14px;
  color: var(--color1);
}

.paymentCollspan input {
  border: 1px solid var(--color1);
  color: var(--color1);
  font-size: 14px;
  line-height: 50px;
  height: 50px;
}

.paymentCollspan input:focus {
  border: 1px solid var(--color5);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  background: transparent;
}
.checkoutTerms{
  width:100%;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
  padding: 30px;
}

.checkoutTerms .checkbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  padding-left: 15px;
}

.checkoutTerms .checkbox input[type="checkbox"] {
  display: none;
}

.checkoutTerms .checkbox label {
  position: relative;
  height: 1rem;
  cursor: pointer;
  font-size: 16px;
  color: var(--color1);

}

.checkoutTerms .checkbox label:before {
  content: "\2713";
  display: display;
  font-size: .9rem;
  text-align: center;
  padding: 2px 6px 1px 6px;
  width: 1rem;
  margin-right: 10px;
  border-radius: 2px;
  color: transparent;
  box-shadow: 0 0 0 2px #ccc inset;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.checkoutTerms .checkbox input[type="checkbox"]:checked ~ label:before {
  background-color: var(--color5);
  color: #FFF;
  box-shadow: none;
  transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}
.closeBtnBg{
  background: var(--color4);
  &:hover{
    color:var(--white)
  }
}