*,
body {
  outline: 0;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #050748;
  font-weight: 500;
}

ul {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: auto;
}

body {
  background: #fff;
  font-family: "Lexend", sans-serif;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-os-font-smoothing: grayscale;
  box-sizing: border-box;
}
nav{
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}
nav .wrapper{
  position: relative;
  /* max-width: 1300px; */
  padding: 0px 20px;
  height: 80px;
  /* line-height: 70px; */
  /*margin: auto;*/
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}
/* .wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
} */
.wrapper .logo{
  /*width: 156px;*/
  margin-right: 15px;
  padding-right: 12px;
  border-right: 1px solid #eaeaeb;
}

.wrapper .nav-links{
  display: inline-flex;
  align-items: center;
}
.wrapper .nav-links1{
  /*width: 100px;*/
  display: block;
  line-height: 21px;
  margin: 0;
  position: relative;
  text-wrap: nowrap;
}
.wrapper .nav-links1 span{
  position: absolute;
  font-size: 10px;
  color: #e23744;
  top: -10px;
  right: -12px;
  font-weight: 500;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #1f2937;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 0px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-left: 36px;
}
/* .nav-links li a:hover{
  background: #3A3B3C;
} */
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  /*.wrapper .nav-links{*/
  /*  position: fixed;*/
  /*  height: 100vh;*/
  /*  width: 100%;*/
  /*  max-width: 350px;*/
  /*  top: 0;*/
  /*  left: -100%;*/
  /*  background: #242526;*/
  /*  display: block;*/
  /*  padding: 50px 10px;*/
  /*  line-height: 50px;*/
  /*  overflow-y: auto;*/
  /*  box-shadow: 0px 15px 15px rgba(0,0,0,0.18);*/
  /*  transition: all 0.3s ease;*/
  /*}*/
  /* custom scroll bar */
  /*::-webkit-scrollbar {*/
  /*  width: 10px;*/
  /*}*/
  
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
nav .wrapper .form-label{
  color: #95959D;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 15px;
}
/* nav .wrapper .form-select{
  padding: 0 32px 0 0;
  font-size: 18px;
  border: 0;
  line-height: 23px;
  width: 170px;
  margin-right: 20px;
}
nav .wrapper .form-select:focus{
  box-shadow: none;
} */
nav .wrapper .select-form{
  display: block;
  font-size: 18px;
  color: #1c1c1c;
  line-height: 24px;
  margin-right: 20px;
}
nav .wrapper .select-form i{
  color: rgb(239, 79, 95);
  font-size: 20px;
}
nav .wrapper .input-group{
  width: 380px;
  min-height: 50px;
  margin-left: 36px;
}
nav .wrapper .input-group .input-group-text{
  border-radius: 50px 0 0 50px;
  border-right: 0;
  background: #f8f9fc;
  padding: 0px 5px 0px 16px;
}
nav .wrapper .input-group .input-group-text img{
  width: 16px;
  height: 16px;
}
nav .wrapper .input-group .form-control{
  padding: 10px 10px;
  border-left: 0;
  border-radius: 0 50px 50px 0;
  background: #f8f9fc;
}
nav .wrapper .input-group .form-control::placeholder{
  color: #b2b6c2;
}
nav .wrapper .input-group .form-control:focus{
  box-shadow:none;
  border-color:#e6e9ef;
}
nav .wrapper  .login-btn{
  background: rgb(239, 79, 95);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 40px;
  border-radius: 12px;
  margin-left: 16px;
}
/* delivery-tooltip */
.delivery-tooltip{
  position: absolute;
  top: 52px;
  left: -90px;
  background: #2c3875;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.delivery-tooltip::before{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #0a0a0a;
  top: 2px;
  right: 40%;
  transform: translate(-50%, -50%);
  background: inherit;
  clip-path: polygon(0px 10px, 8px 2px, 8px 2px, 16px 10px);
}
.delivery-tooltip p{
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
/* end delivery-tooltip */

/* banner-slider */
.banner-slider{
  padding-bottom: 20px;
}
/*.banner-slider .carousel-item{*/
/*  height: 600px;*/
/*}*/

/*.banner-slider .carousel-item.active{*/
/*    height: 600px;*/
/*}*/

.banner-slider .carousel-item img{
  object-fit: cover;
  border-radius: 0 0 30px 30px;
}
.banner-slider .carousel-control-next-icon, 
.banner-slider .carousel-control-prev-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  filter: invert(1);
}
.banner-slider .carousel-control-next, 
.banner-slider .carousel-control-prev{
  opacity: .9;
  transition: opacity .15s ease;
  background: #ffffff;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  top: 47%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}
.banner-slider .carousel-control-prev {
  left: 35px;
}
.banner-slider .carousel-control-next{
  right: 35px;
}
.banner-slider .carousel-indicators [data-bs-target]{
  background-color: #bfbfbf66;
  width: 12px;
  height: 5px;
  opacity:0.8;
  border-radius: 4px;
  border-top: unset;
  border-bottom: unset;
}
.banner-slider .carousel-indicators .active{
  background-color: #000;
}
.banner-slider .carousel-indicators{
  bottom: -30px;
}
/* end banner-slider */

/* counter-sec */
.counter-sec{
  padding: 70px 0 80px;
}
.counter-sec .counter-sec-box{
  text-align: center;
}
.counter-sec .counter-sec-box h3{
  font-size: 38px;
  font-weight: 700;
  color: #cf4a57;
  line-height: 50px;
}
.counter-sec .counter-sec-box h6{
  font-size: 20px;
  color: #1c1c1c;
  margin-top: 4px;
}
.bdr{
  border-right: 2px;
	border-left: 0;
	border-style: solid;
  border-image: linear-gradient(to bottom, #ffffff, #e3e3e3, #ffffff) 1 100%;
}
/* end counter-sec */

/* every-step */
.every-step{
  padding-bottom: 60px;
  overflow: hidden;
}
.every-step .faq-item {
  position: relative;
  padding: 28px 15px 0px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  gap: 10px;
}

/* TITLE */
.every-step .faq-title {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    color: #9197a6;
}

.every-step .faq-title i {
    margin-right: 8px;
    color: #0d6efd;
}

/* BODY ANIMATION */
.every-step .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 20px;
    color: #767c8f;
    font-weight: 400;
}

.every-step .faq-item.active .faq-body {
  max-height: 200px;
  margin-top: 20px;
}

/* ARROW ROTATION */
.every-step .arrow i {
    transition: transform 0.3s ease;
}

.every-step .faq-item.active .arrow i {
    transform: rotate(180deg);
}

/* RIGHT CONTENT */
.every-step .content-box {
  display: none;
  animation: fadeIn 0.4s ease;
  height: 600px;
  overflow: hidden;
}

.every-step .content-box.active {
    display: block;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}
.every-step .faq-item img{
  width: 23.99px;
  padding-top: 5px;
}
.every-step .faq-item.active .faq-title{
  color: #1c1c1c;
  font-size: 32px;
  line-height: 36px;
}
.every-step .faq-item.active img{
  filter: brightness(0) saturate(100%) invert(32%) sepia(93%) saturate(5000%) hue-rotate(340deg) brightness(95%) contrast(95%);
}

/* GRAY BORDER (always visible) */
.every-step .faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #ddd; /* gray */
}

/* RED ANIMATION BORDER */
.every-step .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e23744;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 1;
}

/* ACTIVE STATE */
.every-step .faq-item.active::before {
    transform: scaleY(1);
}
.every-step .faq-item1{
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.every-step h3{
  color: #cf4a57;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 52px;
}
.every-step h3 span:nth-child(1){
  font-size: 24px;
  position: relative;
  bottom: -12px;
  left: 5px;
}
.every-step h3 span:nth-child(2){
  font-size: 16px;
  position: relative;
  top: -25px;
  right: 5px;
}
.every-step h5{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 30px;
}
.every-step h5::after{
  display: inline-block;
  margin: 0 0 8px 10px;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
.every-step h5::before{
   display: inline-block;
  margin: 0 10px 8px 0;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
/* end every-step */

/* our-categories */
.our-categories{
  padding: 25px 50px;
}
.our-categories .container-fluid{
  background-color: #fff2f2;
  /*padding: 40px;*/
  border-radius: 30px;
}
.our-categories h3{
  color: #e23744;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.our-categories h3::after{
  display: inline-block;
  margin: 0 0 0px 10px;
  height: 1px;
  content: " ";
  text-shadow: none;
  /* width: 140px; */
  background: linear-gradient(270deg, rgba(255, 194, 171, 0.00) 0%, #FFC2AB 100%);
  flex: 1 1 0%;
}
.our-categories h3::before{
  display: inline-block;
  margin: 0 10px 0px 0;
  height: 1px;
  content: " ";
  text-shadow: none;
  /* background-color: #999; */
  background: linear-gradient(270deg, #FFC2AB 0%, rgba(255, 194, 171, 0.00) 100%);
  flex: 1 1 0%;
}
/* end our-categories */

/* our-categories-sec */
.our-categories-sec{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.our-categories-card{
  background: #fff;
  width: 160px;
  padding: 10px;
  border-radius: 20px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: center;
}
.our-categories-card .our-categories-card-img img{
  height: 80px;
  width: 100%;
  margin-bottom: 7.5px;
  object-fit: contain;
}
.our-categories-card .our-categories-card-txt h6{
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: #1c1c1c;
}
/* end our-categories-sec */

/* product-sec */
.product-sec{
  padding: 40px 0;
}
.product-sec-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.product-sec-header a{
  font-size: 16px;
  font-weight: 500;
      color: #E03546;
}
.product-sec-header img{
  width: 63.99px;
  margin-right: 16px;
}
/* .product-sec-header h3{
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  color: #000;
} */

.product-sec-header h3 {

    color: #1c1c1c;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: normal;
    border-left: 4px solid #ff3867;
    padding: 2px 0 2px 8px;
    font-weight: 700;
    font-size: 22px;
    -webkit-background-clip: text;
}
.product-sec-header p{
  color: dimgray;
  font-size: 16px;
  font-weight: 400;
}
.product-sec-header1{
  display: flex;
  align-items: center;
}
/* end product-sec */

/* product-sec-card */
.product-sec-card{
  /*width: 205px;*/
  /*max-width: 205px;*/
  margin-right: 0;
  margin-bottom: 0;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px 16px;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.product-sec-card .product-sec-card-img{
  position: relative;
  margin-bottom: 12px;
}
.product-sec-card-img .card-imgs{
  overflow: hidden;
}
.product-sec-card-img .card-imgs img{
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}
.product-sec-card-img .card-btn{
  display: flex;
  align-items: end;
  justify-content: space-between;
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 0 8px;
}
.product-sec-card-img .card-btn img{
  width: 12px;
}
.product-sec-card-img .card-btn a{
  width: 88px;
  height: 33px;
  min-height: 33px;
  align-items: center;
  background: #fff5f6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255, 126, 139);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #ef4f5f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}
.product-sec-card-img .card-btn a span{
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-left: 2px;
  color: #ef4f5f;
  position: absolute;
  top: 0;
  right: 6px;
}
.product-sec-card-txt{
  margin-bottom: 10px;
  cursor: pointer;
}
.product-sec-card-txt h3{
  font-size: 15px;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  min-height: 42px;
}
.product-sec-card-txt p{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  flex-wrap: nowrap;
  position: relative;
}
.product-sec-card-txt p span{
  display: inline-flex;
  align-items: center;
  background: #f3f3f3;
  color: #1c1c1c;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 6px;
  white-space: nowrap;
}
.product-sec-card-txt p::after{
  content: "";
  flex: 1;
  border-bottom: 1px dashed #d0d4dc;
  margin-left: -4px;
}
.product-sec-card-txt1 h4{
  font-size: 18px;
    font-weight: 700;
    color: #363636;
    margin-bottom: 4px;
    line-height: 23.64px;
}
.product-sec-card-txt1 h6{
  font-size: 12px;
    color: #9197a6;
    font-weight: 400;
  margin-bottom: 8px;
    line-height: 15.45px;
}
.product-sec-card-txt1 p{
      font-size: 12px;
    color: #24963f;
    background: linear-gradient(90deg, var(--Green-200, #cfffdb) 0, #fff 100%);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 500;
}
/* end product-sec-card */

/* product-sec */
.product-sec .wrapper{
  padding: 0px 0;
  /* overflow: hidden; */
  position: relative;
}
.product-sec .slick-initialized .slick-slide{
  margin: 0 0px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.product-sec .slick-next, 
.product-sec .slick-prev{
  z-index: 5;
}
.product-sec .slick-next{
  right: 15px;
}
.product-sec .slick-prev{
  left: 15px;
}
.product-sec .slick-next:before, 
.product-sec .slick-prev:before{
  color: #000;
  font-size: 26px;
}
/*.product-sec .my-slider .slick-list {*/
  /*padding-right: 120px;*/
/*}*/
.product-sec .prev-btn,
.product-sec .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  box-shadow: 0 9.6px 9.6px rgba(54, 54, 54, .08), 0 19.2px 19.2px rgba(54, 54, 54, .06);
}
/* Positioning */
.product-sec .prev-btn {
  left: 20px;
}
.product-sec .next-btn {
  right: 5px;
}
/* Disabled State */
.product-sec .prev-btn.disabled,
.product-sec .next-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}
/* Arrow Icons using ::before */
.product-sec .prev-btn::before,
.product-sec .next-btn::before {
  font-size: 46px;
  font-weight: 200;
  line-height: 36px;
  color: #ef4f5f;
}
/* Left Arrow */
.product-sec .prev-btn::before {
  content: "‹";
}
/* Right Arrow */
.product-sec .next-btn::before {
  content: "›";
}
/* end product-sec */

/* delivery-models */
.delivery-models{
  text-align: center;
  padding: 40px 0;
}
.delivery-models h3{
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #e23744;
}
.delivery-models p{
  color: #17171c;
  font-size: 20px;
  max-width: 80%;
  margin: 0 auto 44px;
}
.delivery-models-card{
  width: 310px;
}
.delivery-models-card1{
  display: flex;
  gap: 20px;
  justify-content: center;
}
/* end delivery-models */

/* sustainability-sec */
.sustainability-sec{
  padding: 40px 0;
}
.sustainability-sec .row{
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 120px;
  background-color: #91c842;
  border-radius: 30px;
}
.sustainability-sec-txt{
  padding-right: 15px;
}
.sustainability-sec-txt h4{
  font-weight: 700;
  font-size: 40px;
  color: #1c1c1c;
}
.sustainability-sec-txt p{
  color: #17171c;
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
}
.sustainability-sec-img .center-slider .slick-slide {
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
  padding: 0 10px;
  width: 400px !important; /* fixed width */
}
.sustainability-sec-img .center-slider .slick-center {
  opacity: 1;
  transform: scale(1);
}
.sustainability-sec-img .center-slider img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  display: block;
}
.sustainability-sec-img .wrapper {
  position: relative;
  padding-left: 15px;
}
/* Arrows */
.sustainability-sec-img .prev-btn,
.sustainability-sec-img .next-btn {
  position: absolute;
  top: 45%;
  /* transform: translateY(-50%); */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}
/* Left / Right position */
.sustainability-sec-img .prev-btn {
  left: 40px;
}
.sustainability-sec-img .next-btn {
  right: 25px;
}
/* Arrow Icons */
.sustainability-sec-img .prev-btn::before,
.sustainability-sec-img .next-btn::before {
    font-size: 40px;
    font-weight: 300;
    color: #333;
    line-height: 28px;
}
/* Left */
.sustainability-sec-img .prev-btn::before {
  content: "‹";
}
/* Right */
.sustainability-sec-img .next-btn::before {
  content: "›";
}
/* Hover */
.sustainability-sec-img .prev-btn:hover,
.sustainability-sec-img .next-btn:hover {
  transform: scale(1.1);
}
.sustainability-sec-img .prev-btn:hover::before,
.sustainability-sec-img .next-btn:hover::before {
  color: #000;
}
/* Optional: hide arrows on mobile */
@media (max-width: 768px) {
  .sustainability-sec-img .prev-btn,
  .sustainability-sec-img .next-btn {
    display: none;
  }
}
/* end sustainability-sec */

/* partners-say */
.partners-say{
  padding: 40px 50px;
}
.partners-say1{
      background: #F4F4F5;
    padding: 10px 0;
    border-radius: 30px;
}
/* .partners-say h3{
  margin-bottom: 44px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #000;
} */
 .partners-say h3 {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #000;
    text-align: center;
    font-weight: 700;
    color: #e23744;
}

.partners-say-card {
  width: 300px;
  height: 400px;
  /* margin: 1rem auto; */
  perspective: 1000px;
  cursor: pointer;
}
.partners-say-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.partners-say-card:hover .card-inner {
  transform: rotateY(180deg);
}
.partners-say-card .card-front,
.partners-say-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.partners-say-card .card-front {
  background: white;
  border: 1px solid #e5e7eb;
}
.partners-say-card .card-back {
  background: #8b5cf6;
  color: white;
  transform: rotateY(180deg);
}
.partners-say-card .card-front-header{
  margin-bottom: 24px;
  padding: 28px 32px 0px 32px;
  position: absolute;
  top:0;
}
.partners-say-card .card-front-header img{
  height: 48px;
  width: 48px;
  margin-right: 16px;
}
.partners-say-card .card-front-header h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.partners-say-card .card-front-header h6{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.partners-say-card .card-front-header1 p{
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
  margin-top: 24px;
}
.partners-say-card .card-back-header{
  padding: 28px 32px 0px 32px;
  position: absolute;
  top: 0;
  height: 100%;
}
.partners-say-card .card-back-header img{
  height: 48px;
    width: 48px;
    margin-right: 16px;
}
.partners-say-card .card-back-header h3{
  font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}
.partners-say-card .card-back-header h6{
      font-size: 16px;
    font-weight: 400;
    width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fff;
}
.partners-say-card .card-back-header1{
  position: absolute;
  bottom: 25px;
}
.partners-say-card .card-back-header p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.partners-say .wrapper {
  padding: 0 0px; /* space for half slides */
  overflow: hidden;
}
.partners-say .my-sliderss .slick-list {
  overflow: visible;
}
.partners-say .my-sliderss{
  padding: 0 70px;
}
.partners-say .slick-initialized .slick-slide{
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-say .slick-next, 
.partners-say .slick-prev{
  z-index: 5;
}
.partners-say .slick-next{
  right: 15px;
}
.partners-say .slick-prev{
  left: 15px;
}
.partners-say .slick-next:before, 
.partners-say .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.partners-say .wrapper {
  position: relative;
}
/* Arrows */
.partners-say .prev-btn,
.partners-say .next-btn {
  position: absolute;
  top: 42%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  opacity: 0.9;
}
.partners-say .prev-btn {
  left: 20px;
}
.partners-say .next-btn {
  right: 20px;
}
.partners-say .prev-btn::before,
.partners-say .next-btn::before {
  font-size: 40px;
  font-weight: 300;
  color: #333;
  line-height: 28px;
}
.partners-say .prev-btn::before {
  content: "‹";
}
.partners-say .next-btn::before {
  content: "›";
}
.partners-say .prev-btn:hover,
.partners-say .next-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .partners-say .prev-btn,
  .partners-say .next-btn {
    display: none;
  }
}
/* end partners-say */

/* faq-sec  */
.faq-sec{
  padding: 40px 0;
}
.faq-sec h3{
  font-size: 40px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
.faq-sec ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.faq-sec ul.tabs li{
	display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  color: black;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgb(234, 234, 235);
  font-size: 18px;
  box-shadow: rgba(28, 28, 28, 0.06) 0px 1px 4px 0px;
  font-weight: 400;
}
.faq-sec ul.tabs li.current{
	background: #ededed;
	padding: 10px 16px;
  border-radius: 12px;
  background-color: rgb(255, 237, 239);
  color: black;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid rgb(255, 126, 139);
  font-size: 18px;
  box-shadow: rgba(28, 28, 28, 0.06) 0px 1px 4px 0px;
  font-weight: 500;
}
.faq-sec .tab-content{
	display: none;
}
.faq-sec .tab-content.current{
	display: inherit;
}
.faq-sec .contain {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  border: 1px solid #f2f4f7;
  box-shadow: 0 4px 16px 0 rgba(39, 49, 68, .04);
  margin-bottom: 24px;
  border-top: 0 !important;
  margin-top: 0px;
  margin-left: 0px;
  cursor: pointer;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
.faq-sec .question {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 20px 80px 20px 24px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.faq-sec .question::after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 30px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}
.faq-sec .question.active::after {
  transform: rotate(180deg);
}
.faq-sec .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq-sec .answer {
  padding: 0 24px 20px;
  font-size: 18px;
  line-height: 30px;
  color: #696969;
}
.faq-sec .answer ul{
  list-style: disc;
  padding-left: 40px;
  margin-top: 18px;
  padding-bottom: 20px;
}
/* end faq-sec  */

/*  */
footer{
      padding-bottom: 24px;
    padding-top: 40px;
    background-color: #fff;
    color: #293142;
    line-height: 20px;
}
.footer-address{
  padding-right: 50px;
}
.footer-address h5{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 20px;
  color: #293142;
}
.footer-address h6{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 20px;
  color: #293142;
}
.footer-address p{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #767c8f;
}

.footer-address ul li{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}
.footer-address ul li img{
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.footer-address ul li a{
  color: #293142;
}
.footer-address ul li:last-child a{
  color: #e03546;
}
.footer-link h5{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 20px;
  color: #293142;
}
.footer-link ul li{
  margin-bottom: 12px;
}
.footer-link ul li a{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #293142;
}
.footer-social{
  padding-left: 25px;
}
.footer-social h5{
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 20px;
  color: #293142;
}
.footer-social ul{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  line-height: 0;
  padding: 0;
  margin: 0;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.footer-social ul li img{
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-logo{}
.footer-logo .footer-logo1{
  text-align: right;
}
.footer-logo .footer-logo1 img{
  height: 64px;
  width: 64px;
  margin-bottom: 0px;
}
.footer-logo .footer-logo2{
  text-align: right;
}
.footer-logo .footer-logo2 img{
  /*height: fit-content;*/
  /*width: 175px;*/
  /*margin-bottom: 47px;*/
}
.footer-logo .footer-logo3{
  text-align: right;
}
.footer-logo .footer-logo3 ul{
  display: flex;
  gap: 16px;
  justify-content: end;
}
.footer-logo .footer-logo3 img{
  height: 40px;
  width: 135px;
}
.footer-copyright a{
  text-align: right;
  opacity: .4;
  color: #2c3875;
  line-height: 20px;
  word-wrap: break-word;
  font-weight: 400;
  font-size: 14px;
}
.footer-copyright img{
  width: 46px;
  height: 18px;
  margin-right: 4px;
}
.footer-copyright-row{
  border-top: 1px solid #ebebeb;
  padding-top: 24px;
  margin-top: 30px;
}
/* end footer */

/* location-model */
.location-model .modal-dialog{
  max-width: 525px;
}
.location-model img{
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 16px;
}
.location-model h3{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1c1c;
  margin-bottom: 32px;
  padding: 0;
}
.location-model .modal-content{
  border-radius: 24px;
}
.location-model .modal-body .btn-close{
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.location-model .modal-body{
  padding: 30px 24px;
}
.location-search-box .form-control{
  height: 48px;
  padding: 14px 20px;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  font-size: 16px;
  color: #1c1c1c;
  background: #fff;
  transition: border-color .2s;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .08);
}
.location-search-box1{
      flex: 1;
    overflow-y: auto;
    min-height: 220px;
    max-height: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    border: 1px solid #e6e9ef;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .08);
    margin-top: 15px;
    overflow-y: scroll;
}
.location-search-box1 ul{
  
}
.location-search-box1 ul li a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 16px;
  cursor: pointer;
  transition: background-color .2s;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}
.location-search-box1 ul li:not(:last-child) a{
  border-bottom: 2px dashed #f2f4f7;
}
.location-search-box1 ul li a:hover{
  background: #f9fafb;
}
.location-search-box1 ul li a i{
  color: #ef4f5f;
  font-size: 26px;
}
.location-search-box2 h4{
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  margin-top: 8px;
  padding-top: 24px;
  padding-bottom: 20px;
}
.location-search-box2 h4::after{
  display: inline-block;
  margin: 0 0 8px 10px;
  content: " ";
  text-shadow: none;
  height: 1px;
  width: 175px;
  background: repeating-linear-gradient(90deg, #e6e9ef, #e6e9ef 5px, transparent 0, transparent 10px);
}
.location-search-box2 h4::before{
  display: inline-block;
  margin: 0 10px 6px 0;
  content: " ";
  text-shadow: none;
  width: 175px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #e6e9ef, #e6e9ef 5px, transparent 0, transparent 10px);
}
.location-search-box2 a{
      color: #596378;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    display: block;
}
.location-search-box2 a span{
  color: rgb(239, 79, 95);
    text-decoration-line: underline;
    cursor: pointer;
}
/* end location-model */

.categories-sec{
  padding: 40px 0;
}

/*  */
.filter{
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 1px 4px rgba(28, 28, 28, .06);
    border-radius: 24px;
    overflow-y: scroll;
    /*display: flex;*/
    align-items: flex-start;
    position: sticky;
    top: 100px;
    scrollbar-width: none;
    max-height: 84vh;
}
.filter ul{
  margin: 5px;
} 
.filter ul li{
  padding: 10px;
  position: relative;
} 
.filter ul li a{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #696969;
} 
.filter-img{
  background: #f5f5f5;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.filter-img img{
  width: 50px;
  object-fit: contain;
}
.filter ul li.active::after{
    content: '';
    width: 10px;
    background: #e23744;
    border-radius: 100px 0 0 100px;
    height: 60px;
    position: absolute;
    right: -5px;
    top: 10px;
}
.filter ul .active .filter-img{
  background: #ffedef;
}
.horizontal-filter{
  position: sticky;
  top: 80px;
  z-index: 1;
  background: #fff;
  box-shadow: 5px 4px 22px 6px #fff;
  padding-bottom: 0px;
  margin-bottom: 5px;
  padding-top: 20px;
}
.horizontal-filter ul{
  display: flex;
  flex-wrap: wrap;
}
.horizontal-filter ul li{
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 1px 4px rgba(28, 28, 28, .06);
  border-radius: 40px;
  padding: 8px 16px 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 1rem;
  margin-bottom: 16px;
}
.horizontal-filter ul li a{
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horizontal-filter ul li img{
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.horizontal-filter ul li a i{
  font-size: 22px;
  margin-left: 8px;
}
/*  */

/*  */
.asas .filter-slider {
  display: flex;
  align-items: center;
  /* width: 500px;
  margin: 50px auto; */

    width: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 1px 4px rgba(28, 28, 28, .06);
    border-radius: 24px;
    padding: 0px 15px;
    margin-bottom: 25px;
}

.asas .filter-wrapper {
  overflow: hidden;
  width: 100%;
}

.asas .filter-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;   /* ✅ MUST */
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.asas .filter-container::-webkit-scrollbar {
  display: none;
}

.asas .filt {
  flex: 0 0 auto;  /* ✅ IMPORTANT */
  /* padding: 10px 20px;
  background: #eee;
  border-radius: 20px; */
  cursor: pointer;
  white-space: nowrap;
  border: 0;
  font-size: 18px;
  font-weight: 400;
  color: dimgray;
  margin: 18px 0 18px 10px;
  padding: 5px;
}

.asas .filt.active {
  color: #1c1c1c;
  font-weight: 600;
}

.asas .arrow {
  background: #f8f9fc;
  color: #d0d4dc;
  border: 2px solid #e6e9ef;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 15px;
}
/*  */

/* filter-detail-sec */
.filter-detail-sec-txt1{
  border-left: 1px solid #e6e9ef;
    padding-left: 24px;
}
.filter-detail-sec-txt h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom:5px;
  color: #000;
}
.filter-detail-sec-txt p{
  font-size: 14px;
  font-weight: 400;
  margin: 14px 0;
  color: #596378;
}
.filter-detail-sec-txt ul{
  list-style: decimal;
  padding-left: 18px;
}
.filter-detail-sec-txt ul li{
  margin-bottom: 15px;
}
.filter-detail-sec-txt ul li a{
  color: #596378;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.filter-detail-sec .row-bg{
  padding: 24px;
  margin-top:30px;
}
/* end filter-detail-sec */

/* category-pg-tab */
.category-pg-tab{
  padding-bottom: 20px;
}
.category-pg-tab .row{
  padding: 24px;
  background-color: #fff;
  border-radius: 24px;
}
.category-pg-tab h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  /* padding: 40px 0; */
}
.category-pg-tab ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
  gap: 16px;
  display: flex;
}
.category-pg-tab ul.tabs li{
	background: none;
	display: inline-block;
	padding: 0 0px 10px 0;
	cursor: pointer;
  margin: 0;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #e6e9ef;
}
.category-pg-tab ul.tabs li.current{
  border-bottom: 2px solid #ff7e8b;
}
.category-pg-tab .tab-content{
	display: none;
	/* background: #ededed; */
	padding: 20px 0 0;
}
.category-pg-tab .tab-content.current{
	display: inherit;
}
.category-pg-tab .tab-content ul{
  grid-template-columns: auto auto auto auto auto;
    display: grid;
}
.category-pg-tab .tab-content ul li{
  margin-bottom: 30px;
}
.category-pg-tab .tab-content ul li a{
  font-size: 14px;
  color: #596378;
}
/* end category-pg-tab */

/* quantity-model */
.quantity-model h4{
  font-size: 24px;
    line-height: 2.8rem;
    font-weight: 700;
    color: rgb(28, 28, 28);
    margin-top: 0.5rem;
    margin-bottom: 0.83rem;
        display: flex;
    align-items: center;
    justify-content: space-between;
}
.quantity-model .btn-close{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 24px;
  height: 24px;
  font-size: 16px;
  padding: 0;
}
.quantity-model .modal-content{
  background-color: rgb(242, 244, 247);
  width: 34.4vw;
  margin: auto;
  min-height: 150px;
  min-width: 20rem;
  border-radius: 24px;
  transform: scale(1);
  box-shadow: rgba(28, 28, 28, 0.15) 0px 1.2rem 7rem;
  transition: transform 0.25s;
  height: max-content;
  overflow-y: scroll;
}
.quantity-model .modal-dialog{
  height: 100%;
  display: flex;
  margin-top: 0;
  margin-bottom: 0;
}
.modal-body-card{
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.modal-body-card1{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.modal-body-card1 h5{
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 8px;
}
.modal-body-card1 h6{
  font-size: 13px;
  font-weight: 500;
  color: #6c757d;
  border-right: 2px solid #d1d1d1;
  padding-right: 8px;
  margin-right: 8px;
}
.modal-body-card1 p{
  display: flex;
  gap: 4px;
}
.modal-body-card1 p span{
  font-weight: 600;
  color: #1c1c1c;
  font-size: 13px;
}
.modal-body-card1 p span:last-child{
  color: #6c757d;
  font-weight: 400;
  font-size: 13px;
}
.modal-body-card1 p span img{
  width: 14px;
  height: 14px;
  margin-top: 2px;
}
.modal-body-card1 img{
  flex-shrink: 0;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1.46px solid #e6e9ef;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body-card2{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-body-card2 h5{
  font-size: 24px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 4px;
}
.modal-body-card2 h5 del{
  font-size: 16px;
  color: #9e9e9e;
  text-decoration: line-through;
  font-weight: 500;
}
.modal-body-card2 p{
  font-size: 13px;
  color: #6c757d;
  font-weight: 400;
  margin-top: 2px;
}
.modal-body-card2 a{
  width: 88px;
  height: 35px;
  min-height: 33px;
  align-items: center;
  background: #fff5f6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255, 126, 139);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #ef4f5f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
}
.modal-body-card2 a span{
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-left: 2px;
  color: #ef4f5f;
  position: absolute;
  top: 0;
  right: 6px;
}
.modal-body-card3{
  background: #f7faff;
  border-radius: 18px;
  padding: 0;
  overflow-y: scroll;
  margin: 20px 0 0;
  max-height: 225px;
}
.modal-body-card3 .modal-body-card3-1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.modal-body-card3 .modal-body-card3-1 p{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
  white-space: pre-line;
  color: rgb(37, 111, 239);
}
.modal-body-card3 .modal-body-card3-1 a{
  font-size: 14px;
  font-weight: 800;
  color: #e23744;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.modal-body-card3 .modal-body-card3-1 a:hover{
  transform: scale(1.05);
}
.modal-body-card3 .modal-body-card3-1:not(:last-child){
  border-bottom: 1px solid #edf4ff;
}
/* end quantity-model */

/* breadcrumb-sec */
.breadcrumb-sec{
  padding: 5px 10px;
}
.breadcrumb-sec ul{
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 14px 0;
}
.breadcrumb-sec ul li{
  position: relative;
}
.breadcrumb-sec ul li:not(:last-child):before {
  content: "\f105";
  position: absolute;
  right: -20px;
  top: -1px;
  font-family: FontAwesome;
  font-size: 22px;
  color: #767c8f;
}
.breadcrumb-sec ul li a{
  color: #767c8f;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.breadcrumb-sec ul li:last-child a{
  color: #000;
}
/* end breadcrumb-sec */

/* product-detail */
.product-detail{
  padding: 0px 0 40px;
}
.product-detail .row{
  width: 100%;
  padding: 40px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #ebebeb;
  border-radius: 48px;
  background-color: #fff;
}
.product-detail .product-detail-txt h3{
  font-size: 30px;
  font-weight: 600;
  margin-bottom:2.5px;
  margin-top: 20px;
  color: #1c1c1c;
}

.product-detail .product-detail-txt h1{
  font-size: 30px;
  font-weight: 600;
  margin-bottom:2.5px;
  margin-top: 20px;
  color: #1c1c1c;
}

.product-detail .product-detail-txt h6{
  font-size: 18px;
  font-weight: 400;
  color: #828282;
}
.product-detail-txt1{
  position: relative;
  padding: 24px;
  background-color: #fff;
  z-index: 1;
  border: 2px solid #f4f6fb;
  border-radius: 32px;
  margin-top: 15px;
}
.product-detail-txt1 .detail-card{
  background: #f7faff;
  border-radius: 18px;
  padding: 0;
  margin-bottom: 22px;
}
.product-detail-txt1 .detail-card1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  gap: 16px;
}
.product-detail-txt1 .detail-card1:not(:last-child){
  border-bottom: 1px solid #edf4ff;
}
.product-detail-txt1 .detail-card1 p{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
  white-space: pre-line;
  color: rgb(37, 111, 239);
}
.product-detail-txt1 .detail-card1 a{
  font-size: 18px;
  font-weight: 600;
  color: #e23744;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.product-detail-txt1 .detail-price{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-txt1 .detail-price h4{
  font-size: 24px;
  font-weight: 700;
  color: #363636;
  margin-bottom: 4px;
  padding-left: 12px;
}
.product-detail-txt1 .detail-price p{
  font-size: 16px;
  color: #6c757d;
  font-weight: 600;
  margin-top: 2px;
  padding-left: 12px;
}
.product-detail-txt1 .detail-price a{
  width: 160px;
  height: 48px;
  min-height: 33px;
  align-items: center;
  background: #fff5f6;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255, 126, 139);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .3px;
  color: #ef4f5f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  padding: 5px 6px;
}
.product-detail-txt1 .detail-price a:hover{
  color: rgb(191, 41, 56);
  background: rgb(254 238 240);
  border-color: rgb(224, 53, 70);
}
.product-detail-txt1 .detail-price a span{
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-left: 2px;
  color: #ef4f5f;
  position: absolute;
  top: 1px;
  right: 8px;
}
.product-detail-txt1 .detail-price a:hover span{
  color: rgb(191, 41, 56);
}
.product-detail-txt .product-detail-txt2{
  margin-top: 35px;
}
.product-detail-txt .product-detail-txt2 h2{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1c1c1c;
}
/* end product-detail */

/* ====== */
/* .product-detail-img .product {
  display: flex;
  flex-direction: column;
} */
/* @media only screen and (min-width: 768px) {
  .product-detail-img .product {
    flex-direction: row;
  }
  .product-detail-img .product-images {
    width: 50%;
  }
  .product-detail-img .product-description {
    margin-left: 36px;
  }
} */

.product-detail-img{
  background: #f4f6fb;
    border-radius: 24px;
    margin-right: 40px;
    padding: 50px 15px;
    position: sticky;
    top: 100px;
}

/* Thumbnails Slider */
/* .product-detail-img .slider-thumbnails {
  margin-left: -15px;
  margin-right: -15px;
} */

.product-detail-img .slider-thumbnails .slick-slide {
  padding: 8px;
  transition: transform 0.3s ease-out;
  width: 90px !important;
}
        
.product-detail-img .slider-thumbnails .slick-slide:focus img {
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.product-detail-img .slider-thumbnails .slick-slide img {
  max-width: 100%;
  /* border: solid 0px #fff; */
  box-sizing: border-box;
  /* box-shadow: 0 0 5px rgba(0,0,0,0.3); */
  border: 1px solid #d6d6d6;
  transition: box-shadow 0.3s ease-out;
  border-radius: 12px;
    width: 78px;
    height: 78px;
}

/* Main Slider */
.product-detail-img .slider {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border: solid 0px #fff;
  box-sizing: border-box;
  margin-bottom: 15px;
  border-radius: 24px;
}

.product-detail-img .slider .slick-slide {}

.product-detail-img .slider .slick-slide img {
  width: 100%;
  border-radius: 24px;
}

/* make button larger and change their positions */
/* .product-detail-img .slick-prev,
.product-detail-img .slick-next {
  width: 50px;
  height: 50px;
  z-index: 1;
} */

/* .product-detail-img .slick-prev {
  left: 5px;
}

.product-detail-img .slick-next {
  right: 5px;
} */

/* .product-detail-img .slick-prev:before,
.product-detail-img .slick-next:before {
  font-size: 40px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
} */

/* General slick slider styling */
.product-detail-img .slick-slide:focus,
.product-detail-img .slick-slide:focus {
  outline: none;
    /* remove default outline when on :focus */
}

/* hide dots and arrow buttons when slider is not hovered */
/* .product-detail-img .slick-slider:not(:hover) .slick-arrow,
.product-detail-img .slick-slider:not(:hover) .slick-dots {
  opacity: 0;
} */

/* transition effects for opacity */
/* .product-detail-img .slick-arrow {
  transition: opacity 0.5s ease-out;
} */
        
/* Loading effects for main slider */
.product-detail-img .slider {
  background: url(img/tail-spin.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* min-height: 100px; */
  width: 300px;
  height: 300px;
  margin: 0 auto 30px!important;
}
.product-detail-img .slider img.slick-loading {
  opacity: 0;
}
.product-detail-img .slider img {
  transition: opacity 0.3s ease 0s;
}
.product-detail-img .slider .slick-loading:after {
  content:'loading'
}
.product-detail-img .slick-prev,
.product-detail-img  .slick-next {
  background: #e23744;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.product-detail-img .slick-slider {
  margin-bottom: 0;
}
.product-detail-img .slick-prev { left: -40px; }
.product-detail-img .slick-next { right: -40px; }

.product-images {
  position: relative;
}
.product-detail-img .my-prev,
.product-detail-img .my-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  color: #ef4f5f;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  font-size: 28px;
  line-height: 30px;
}
.product-detail-img .my-prev { left: 10px; }
.product-detail-img .my-next { right: 10px; }

/* login-model */
.login-model{}
.login-model .modal-content{
  border-radius: 24px;
}
.login-model .modal-body{
  padding: 40px 24px;
  height: 525px;
}
.login-model .modal-body .btn-close{
  position: absolute;
    top: 24px;
    right: 24px;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}
.login-model .modal-body img{
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 16px;
}
.login-model .modal-body h3{
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  color: #1c1c1c;
  margin-bottom: 0px;
  padding: 0;
}
.login-model .modal-body p{
  color: #767c8f;
}
.login-model .input-group{
  height: 55px;
      margin-top: 35px;
}
.login-model .input-group img{
  height: 20px;
    width: 30px;
    margin: 0 10px 0 0;
}
.login-model .input-group-text{
  align-items: center;
  border-radius: 12px;
    background: transparent;
    border-right: 0;
}
.login-model .input-group .form-control{
  font-size: 18px;
  border-left: 0;
  border-radius: 12px;
}
.login-model .input-group .form-control:focus{
  border-color: #dee2e6;
  box-shadow:none;
}
.login-model .modal-footer{
  padding: 24px;
      flex-flow: nowrap;
}
.login-model .modal-footer .modal-btn{
  background: #ef4f5f;
  color: #fff;
  width: 100%;
  text-align: center;
  border-radius: 12px !important;
  font-size: 16px;
  padding: 10px;
}
.login-model .modal-footer .modal-btn1{
  border: 1px solid rgb(255, 126, 139);
  color: #ef4f5f;
  background: transparent;
}
.login-model .otp-input {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
  margin-top: 40px;
}
.login-model .otp-input input {
  width: 48px;
  height: 48px;
  margin: 0 14px 0 0;
  text-align: center;
  font-size: 1.5rem;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  transition: all 0.3s ease;
}
.login-model .otp-input input:focus {
  border-color: #d6d6d6;
  box-shadow: none;
  outline: none;
}
.login-model .otp-input input::-webkit-outer-spin-button,
.login-model .otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.login-model .otp-input input[type=number] {
  -moz-appearance: textfield;
}
.login-model button:disabled {
  background: #cccccc;
  border-color: #999999;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.login-model #timer {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-left: 0;
    display: block;
    line-height: 26px;
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
.login-model .expired {
  animation: pulse 2s infinite;
  color: #ff4444;
}
.login-model .resend-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #000;
}
.login-model .resend-link {
  color: #ef4f5f;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.login-model .resend-link:hover {
  color: #000;
  text-decoration: none;
}
/* end login-model */

/* cart-sec */
.cart-sec{
  padding: 40px 0;
}
.cart-left{
  padding: 0 0 40px;
}
.cart-left h3{
  box-shadow: 0 10px 70px #e4e9eb33;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0;
  padding: 20px 0px 20px 0;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-left h3 span{
  align-items: center;
  background: #fff;
  border: 1px solid #e6e9ef;
  border: 1px solid var(--coolgreycoolgrey-200, #e6e9ef);
  border-radius: 100px;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.cart-left h3 span i{
  font-size: 23px;
  color: #e23744;
}

.cart-left .accordion-item{
  box-shadow: rgba(228, 233, 235, 0.2) 0px 1rem 7rem;
  border: 1px solid rgb(244, 244, 244);
  border-radius: 20px!important;
}
.cart-left .accordion-header{
  color: #767c8f;
}
.cart-left .accordion-button {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #767c8f!important;
  background-color: #fff!important;
  
  border-radius: 20px 20px!important;
}
.cart-left .accordion-button.collapsed {
  font-weight: semibold;
  color: #555;
}
.cart-left .accordion-button:not(.collapsed){
  box-shadow:none;
}
.cart-left .accordion-body {
  background: #fff;
  border-radius: 0 0 20px 20px!important;
  border-top: 1px solid #e6e9ef !important;
  padding: 0 24px;
}
.cart-left1{
  display: flex;
  align-items: center;
  padding: 24px 0;
}
.cart-left1:not(:last-child){
  border-bottom: 1px solid #ebebeb;
}
.cart-left1 .cart-left1-img {
  margin-right: 16px;
}
.cart-left1 .cart-left1-img img{
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 60px;
  max-width: 92px;
  min-height: 48px;
  min-width: 48px;
  width: 100%;
}
.cart-left1 .cart-left1-txt{
  display: flex;
    align-items: flex-start;
}
.cart-left1 .cart-left1-txt h5{
  color: #293142;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.cart-left1 .cart-left1-txt h6{
  color: rgb(89, 99, 120);
  font-weight: 400;
  font-size: 14px;
  margin: 4px 0 2px;
}
.cart-left1 .cart-left1-txt p{
  color: rgb(37, 111, 239);
  font-weight: 400;
  font-size: 14px;
}
.cart-left1 .cart-left1-txt p span{
  color: #828282;
  font-weight: 400;
  font-size: 12px;
}
/* .min-add-button {
  width: 300px;
  margin: 20px auto;
} */
.cart-left1-txt .min-add-button{
  width: 98px;
  border-radius: 8px;
  border: 1px solid #e03546;
  margin-left: 20px;
}
.cart-left1-txt .min-add-button a {
  background: #fff5f6;
  color: #e03546;
  border: 0px;
  padding: 8px;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 35px;
  line-height: 15px;
  border-radius: 8px;
}
.cart-left1-txt .min-add-button input {
  text-align: center;
  font-weight: 500;
  color: #000;
  font-size: 14px;
  padding: 0 4px !important;
  width: 40px !important;
  border: 0;
  background: #fff5f6;
}
.cart-left1-txt .min-add-button a i{
  font-size: 13px;
  font-weight: 100!important;
}

.cart-right{
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
  margin-bottom: 24px;
}
.cart-right ul li{
  display: flex;
  justify-content: space-between;
  padding: 8px 0px;
}
.cart-right ul li img{
  fill: none;
  height: 14px;
  margin-left: 12px;
  position: relative;
  top: 1px;
  vertical-align: initial;
  width: 14px;
  cursor: pointer;
}
.cart-right ul li span p{
  color: #000;
}
/*  */

/* .help-tip{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	text-align: center;
	border: 2px solid #444;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 42px;
	cursor: default;
} */
/* .help-tip:before{
    content:'?';
    font-family: sans-serif;
    font-weight: normal;
    color:#444;
} */
.cart-right1 .help-tip{
  position: relative;
}
.cart-right1 .help-tip:hover .help-tip1{
  display:block;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease;
  animation: fadeIn 0.3s ease;
}
/* The tooltip */
.cart-right1 .help-tip .help-tip1 {    
	display: none;
	font-family: sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	/* text-align: center; */
	/* background-color: #FFFFFF; */
	padding: 16px;
	width: 320px;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
/* 	border: 1px solid #E0E0E0; */
	/* box-shadow: 0 0px 20px 0 rgba(0,0,0,0.1); */
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	z-index: 99;

  background: #0a0a0a;
  border-radius: 24px;
  box-shadow: 0 4px 16px #0000003d;
  min-width: 200px;
  top: 35px;
  transition: opacity .3s ease, visibility .3s ease;
}
/* .help-tip p a {
	color: #067df7;
	text-decoration: none;
}
.help-tip p a:hover {
	text-decoration: underline;
} */
/* The pointer of the tooltip */
.cart-right1 .help-tip .help-tip1:before { 
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-bottom-color:#0a0a0a;
	top: -11px;
	left: 50%;
	transform: translate(-50%, -50%);
}
 /* Prevents the tooltip from being hidden */
.cart-right1 .help-tip .help-tip1:after {
	width: 10px;
	height: 40px;
	content:'';
	position: absolute;
	top: -40px;
	left: 0;
}
/* CSS animation */
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:100%; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:100%; }
}
.cart-right1 .help-tip1 ul{
  gap: 8px;
  display: grid;
}
.cart-right1 .help-tip1 ul li{
  word-wrap: break-word;
  color: #d0d4dc;
  display: flex;
  /* flex-direction: column; */
  font-size: 16px;
  font-weight: 400;
  justify-content: space-between;
  line-height: 22px;
  padding: 0;
}
.cart-right1 .help-tip1 ul li:nth-child(1){
  border-bottom: 1px dashed #fff;
  padding-bottom: 12px !important;
  margin-bottom: 4px;
}
.cart-right1 .help-tip1 ul li:not(:first-child){
  color: #fff;
  font-weight: 500;
}
.cart-right1 {
  padding: 24px;
}
.cart-right1 h6{
  position: relative;
  background: rgba(100, 132, 46, 0.12);
  border-radius: 12px;
  margin-bottom: 0px;
  display: inline-block;
  padding: 15px;
  color: rgb(54, 54, 54);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  margin-top: 4px;
  margin-bottom: 24px;
}
.cart-right1 h6::before{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #0a0a0a;
  top: 0px;
  right: 8px;
  transform: translate(-50%, -50%);
  background: inherit;
  clip-path: polygon(0px 10px, 9px 2px, 11px 2px, 20px 10px);
}
.cart-right1 h6 a{
  color: rgb(58, 183, 87);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-left: 0px;
}
.cart-right2{
  border-top: 2px solid #ebebeb;
  padding: 10px 24px 24px;
}
.cart-right2 ul li{
  color: #293142;
  font-weight: 700;
  font-size: 16px;
}
.cart-right2 a{
  background: #ef4f5f !important;
  border-radius: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  width: 100%;
  color: #fff;
  padding: 15px 20px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}
.cart-right2 a i{
  font-size: 23px;
}
.cart-right3 h3{
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  vertical-align: bottom;
  color: #000;
}
.cart-right3 h5{
  border-radius: 16px;
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
  margin-bottom: 24px;
  padding: 22px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  vertical-align: middle;
  color: #000;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.cart-right3 h5 img{
  width: 36px;
  margin-right: 6px;
}
.cart-right3 h5 i{
      color: #808597;
    font-size: 25px;
}
/* end cart-sec */

/* invoice-switch */
.invoice-switch .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.invoice-switch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.invoice-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  transition: 0.4s;
}
.invoice-switch .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
}
.invoice-switch input:checked + .slider {
  background-color: #ef4f5f;
}
.invoice-switch input:focus + .slider {
  outline: none;
}
.invoice-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.invoice-switch .slider.round {
  border-radius: 34px;
}
.invoice-switch .slider.round:before {
  border-radius: 50%;
}
/* end invoice-switch */

/* coupon-modal */
.coupon-modal .modal-content{
  border-radius: 24px;
}
.coupon-modal .modal-body{
  padding: 0;
  background: #f4f6fb;
  border-radius: 24px;
}
.coupon-modal .modal-body h4{
  font-size: 24px;
  line-height: 2.8rem;
  font-weight: 700;
  color: rgb(28, 28, 28);
  margin-top: 0.5rem;
  margin-bottom: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coupon-modal .modal-body .btn-close{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 24px;
  height: 24px;
  font-size: 16px;
  padding: 0;
}
.coupon-modal .modal-body .input-group{
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 16px !important;
    border-radius: 16px !important;
}
.coupon-modal .modal-body .input-group .form-control::placeholder{
  color: #b2b7c2;
}
.coupon-modal .modal-body .input-group .form-control{
  color: #000;
  border: 0;
  padding: 12px 0px 12px 16px;
    border-radius: 16px;
}
.coupon-modal .modal-body .input-group .btn{
  color: #ef4f5f;
  background: transparent;
  border: 0;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
}
.coupon-modal-body1{
  padding: 16px;
}
.coupon-modal-body2{
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}
.coupon-modal-body{
  padding: 16px;
    /* background: #f4f6fb; */
}
.coupon-modal-body h5{
  color: #1f2937;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
  padding: 0 4px;
}
.coupon-modal-body1{
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
  margin-bottom: 16px;
  padding: 16px;
}
.coupon-modal-body1 img{
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 51px;
}
.coupon-modal-body1 h6{
  background-color: #f8f9fc;
  border: 2px dashed #9ca3af;
  border-radius: 8px;
  color: #767c8f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  max-width: 250px;
  overflow-wrap: break-word;
  padding: 4px 6px;
  word-break: break-word;
}
.coupon-modal-body1 a{
  background: #f2f4f7;
  border: 1px solid #9197a6;
  border-radius: 8px;
  color: #9197a6;
  cursor: not-allowed;
  font-family: OurLexend-Medium, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
}
.coupon-modal-body1 p{
  color: rgb(232, 108, 55);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  margin: 12px 0 0 5px;
}
.Cart_dividerLine__TY0Ia {
  background: repeating-linear-gradient(90deg, #d1d5db 0, #d1d5db 8px, #0000 0, #0000 16px);
  height: 1px;
  margin: 20px -10px 10px;
  position: relative;
  width: calc(100% + 20px);
}
.Cart_dividerLine__TY0Ia:after, .Cart_dividerLine__TY0Ia:before {
  background: #f4f6fb;
  border-radius: 50%;
  content: "";
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.Cart_dividerLine__TY0Ia:before {
  left: -10px;
}
.Cart_dividerLine__TY0Ia:after {
  right: -10px;
}
.coupon-modal-body1 p span{
  color: rgb(156, 163, 175);
    font-weight: 600;
}
.coupon-modal-body1 ul{
  margin: 0;
  padding: 9px 16px 0;
  list-style: disc;
}
.coupon-modal-body1 ul li{
  color: #9ca3af;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  padding-left: 5px;
}
/* end coupon-modal */

/* delete-modal */
.delete-modal{}
.delete-modal .delete-modal-body img{
  margin-top: 20px;
  width: 400px;
}
.delete-modal .delete-modal-body h6{
  font-size: 18px;
  text-align: center;
}
.delete-modal .modal-body{
  padding: 20px;
}
.delete-modal .delete-modal-body1{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.delete-modal .delete-modal-body1 .btn{
    /* min-width: 15rem;
  min-height: 44px; */
  /* display: inline-flex; */
  -webkit-box-align: stretch;
  align-items: stretch;
  border-radius: 0.6rem;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  border: 1px solid rgb(255, 126, 139);
  color: #ef4f5f;
  width: 35%;
  padding: 9px;
}
.delete-modal .delete-modal-body1 a{
  background: rgb(239, 79, 95);
  color: #fff;
  width: 35%;
  padding: 9px;
  border-radius: 0.6rem;
}
.delete-modal .modal-content{
  border-radius: 24px;
}
/* end delete-modal */

/* breadcrumb-header */
.breadcrumb-header{
  padding-top: 20px;
}
.breadcrumb-header h3{
  font-size: 36px;
  padding-bottom:15px;
  margin-right: 20px;
  color: #000;
  border-bottom: 1px solid #e8e8e8;
  display: inline-block;
}
/* end breadcrumb-header */

/* type-modal */
.type-modal .modal-dialog{
  padding: 10px;
  max-width: 540px;
  height: 100%;
  align-items: center;
  display: flex;
  margin: 0 auto;
}
.type-modal .modal-content{
  border-radius: 24px;
}
.type-modal .modal-body{
  padding: 24px;
}
.type-modal .modal-body h4{
  font-size: 30px;
  /* line-height: 2.8rem; */
  font-weight: 700;
  color: rgb(28, 28, 28);
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.type-modal .modal-body h4 .btn-close{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 24px;
  height: 24px;
  font-size: 16px;
  padding: 0;
  opacity: var(--bs-btn-close-hover-opacity);
}
.type-modal-body{
  padding: 0 24px 0px;
      max-height: 300px;
    overflow-y: scroll;
}
.type-modal-body .form-group h5{
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.type-modal-body .form-group {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 15px; */
  padding: 18px 0;
}
.type-modal-body .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.type-modal-body .form-group label {
  position: relative;
  cursor: pointer;
}
.type-modal-body .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #ef4f5f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 0px;
  border-radius: 4px;
}
.type-modal-body .form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.type-modal-body .form-group input:checked + label::before{
  background-color: #ef4f5f;
}
.type-modal .modal-footer{
  padding: 20px;
  justify-content: center;
}
.type-modal .modal-footer a{
  min-width: 13rem;
  min-height: 48px;
  display: inline-flex;
  border-radius: 0.6rem;
  padding: 0px;
  border: none;
  cursor: pointer;
  background: border-box rgb(239, 79, 95);
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.type-modal .modal-footer a:nth-child(1){
  color: rgb(239, 79, 95);
  background: transparent;
}
/* end type-modal */

/* invoice-modal */
.invoice-modal .modal-dialog{
  margin-top: 10px;
  margin-bottom: 10px;
}
.invoice-modal .modal-content{
  border-radius: 24px;
}
.invoice-modal .modal-body{
  padding: 0;
}
.invoice-modal-body img{
  border-radius: 24px;
}
/* end invoice-modal */

/* seller-customer-sec */
.seller-customer-sec{ padding: 40px 0;}
.seller-customer-card{
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0px 7px 34px 0px #00000026;
  border: 2px solid #d9d9d9;
  padding: 30px 20px 36px 36px;
  border-radius: 30px;
  position: relative;
  width: 430px;
  margin-left: 70px;
  transition-duration: .3s;
}
.seller-customer-card:hover{
  transform: scale(1.05);
  transition-duration: .3s;
}
.seller-customer-card svg{
  position: absolute;
  top: 0px;
  display: block;
  vertical-align: middle;
}
.seller-customer-card p{
  position: absolute;
  top: 4px;
  left: 47px;
  color: #ffffff;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.seller-customer-card h3{
  font-weight: 700;
  font-size: 28px;
  padding-right: 100px;
  overflow-wrap: break-word;
  margin-top: 14px;
  margin-bottom: 16px;
  color: #000;
}
.seller-customer-card h6{
  color: #000000b2;
  font-size: 20px;
  margin-bottom: 2rem;
}
.seller-customer-card a{
  font-weight: 700;
  font-size: 16px;
  padding-top: .75rem;
  padding-bottom: .75rem;
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
}
.seller-customer-card a i{
  font-size: 26px;
  margin-left: 10px;
}

.seller-customer-card1{
  background: linear-gradient(rgb(195, 98, 95) 0%, rgb(173, 74, 69) 100%);
  position: relative;
  left: -90px;
  margin-left: unset;
}
.seller-customer-card1 h3{
  color: #fff;
  padding-right: 0;
}
.seller-customer-card1 h6{
  color: #fff;
}
/* end seller-customer-sec */

/* free-delivery */
.free-delivery{
  padding: 40px 0;
}
.free-delivery1{
  position: relative;
}
.free-delivery .free-delivery-img{
  position: relative;
}
.free-delivery .free-delivery-txt{
  position: absolute;
  top: 35%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0px 80px;
}
.free-delivery .free-delivery-txt h3{
  font-size: 18px;
  color: #CCCCCC;
  padding-left: 100px;
}
.free-delivery .free-delivery-txt h3 b{
  font-size: 20px;
  color: #FFFFFF;
}
.free-delivery .free-delivery-txt h5{
  background: linear-gradient(to right, #EBFFEF, #9CC0FF, #DACBF2);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 20px;
  font-weight: 600;
}
.free-delivery .free-delivery-txt h5 i{
  font-size: 26px;
  padding-left: 5px;
}
/* end free-delivery */

/* banner-slider1 */
.banner-slider1 .carousel-control-next, 
.banner-slider1 .carousel-control-prev {
  opacity: 1;
  transition: opacity .15s ease;
  background: #ffffff;
  height: 48px;
  width: 48px;
  border-radius: 50px;
  top: 42%;
  box-shadow: 0 9.6px 9.6px rgba(54, 54, 54, .08), 0 19.2px 19.2px rgba(54, 54, 54, .06);
}
.banner-slider1 .carousel-control-prev {
  left: -18px;
}
.banner-slider1 .carousel-control-next {
  right: -18px;
}
.banner-slider1 .carousel-control-next-icon, 
.banner-slider1 .carousel-control-prev-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  filter: invert(1);
}
/* end banner-slider1 */

/* explore-more */
.explore-more{
  padding: 40px 0;
}
/* .explore-more h3{
  font-size: 30px;
  font-weight: 600;
  color: #000;
} */
 .explore-more h3 {
    color: #1c1c1c;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: normal;
    border-left: 4px solid #ff3867;
    padding: 2px 0 2px 8px;
    font-weight: 700;
    font-size: 22px;
    -webkit-background-clip: text;
}
.explore-more-slider{
  position: relative;
}
.explore-more .wrapper{
  padding: 24px 0;
  overflow-x: hidden;
}
.explore-more .slick-initialized .slick-slide{
  margin: 0 10px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explore-more .slick-next, 
.explore-more .slick-prev{
  z-index: 5;
}
/* .explore-more .slick-next{
  right: 15px;
}
.explore-more .slick-prev{
  left: 15px;
} */
.explore-more .slick-next:before, 
.explore-more .slick-prev:before{
  color: #000;
  font-size: 26px;
}
.explore-more .prev-btn, 
.explore-more .next-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  box-shadow: 0 9.6px 9.6px rgba(54, 54, 54, .08), 0 19.2px 19.2px rgba(54, 54, 54, .06);
}
.explore-more .prev-btn {
  left: -10px;
}
.explore-more .next-btn {
  right: -10px;
}
.explore-more .prev-btn::before, 
.explore-more .next-btn::before {
  font-size: 46px;
  font-weight: 200;
  line-height: 36px;
  color: #ef4f5f;
}
.explore-more .prev-btn::before {
  content: "‹";
}
.explore-more .next-btn::before {
  content: "›";
}
.explore-more .slick-slider{
  margin-bottom:0px;
}
/* end explore-more */

/* trusted-brands */
.trusted-brands .wrapper{
  /* padding: 40px 0; */
  overflow-x: hidden;
  padding-bottom: 45px;
}
.trusted-brands h3 {

    color: #1c1c1c;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: normal;
    border-left: 4px solid #ff3867;
    padding: 2px 0 2px 8px;
    font-weight: 700;
    font-size: 22px;
    -webkit-background-clip: text;
}

.trusted-slider{
  padding: 0 0px;
}
.trusted-brands .slick-track{
  margin: 0;
}
.trusted-brands .slick-slider {
  margin-bottom: 0px;
}
.trusted-brands .slick-initialized .slick-slide{
  /* background-color: #b32532;
  color: #FFF;
  height: 200px; */
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trusted-brands .slick-next, 
.trusted-brands .slick-prev{
  z-index: 5;
}
.trusted-brands .slick-next{
  right: 15px;
}
.trusted-brands .slick-prev{
  left: 15px;
}
.trusted-brands .slick-next:before, 
.trusted-brands .slick-prev:before{
  color: #000;
  font-size: 26px;
}
/* end trusted-brands */

/* second-navbar */
.second-navbar{
  box-shadow: unset;
  background: transparent;
}
.second-navbar .wrapper{
  padding: 0px 10px 0 20px;
  height: 80px;
  border-bottom: .5px solid #e8e8e8;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
  border-radius: 0 0 40px 40px;
  background: #fff;
}
/*.second-navbar .wrapper .logo {*/
/*  width: 150px;*/
/*  border: 0;*/
/*  padding-right: 0;*/
/*}*/

.second-navbar .wrapper .logo {
    /*width: 156px;*/
    margin-right: 15px !important;
    padding-right: 12px important;
    border-right: 1px solid #eaeaeb;
}
    
.second-navbar .wrapper .form-label {
    text-wrap:nowrap;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  /*margin-bottom: 5px;*/
}
.second-navbar .wrapper .select-form{
  color: #828282;
  font-size: 13px;
  line-height: 10px;
  margin-right: 0;
  font-weight: 400;
}
.second-navbar .wrapper .select-form span{
  color: #363636;
  font-weight: 400;
}
.second-navbar .wrapper .form-label img{
  width: 23px;
}
.second-navbar .wrapper .input-group {
  width: 440px;
  height: 50px;
  margin-left: 5px;
}
.second-navbar .wrapper .select-form i{
  font-size: 18px;
}
.second-navbar .right-side{
  display: flex;
  align-items: center;
}
.second-navbar .right-side .right-side-cart{
  position: relative;
}
.second-navbar .right-side .right-side-cart span{
  background-color: #000;
  color: #fff;
  padding: 1px 6px;
  border-radius: 100px;
  position: absolute;
  top: -1px;
  right: -5px;
  border: 2px solid #fff;
  font-size: 12px;
  width: 29.82px;
  height: 20.08px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.second-navbar .right-side li a{
  margin-left: 20px;
  border: 1px solid #e6e9ef;
  border-radius: 100px;
  padding: 9px;
  display: flex;
  align-items: center;
  height: 45px;
  width:45px;
}
.second-navbar .right-side li img{
  width: 24px;
  height: 24px;
}
.second-navbar .active-cart{
  background-color: #ef4f5f;
}
/* end second-navbar */

/*  */
#activator {
  z-index: 100;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#activate-menu {
  z-index: 100;
  padding: 0px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -40%;
  width: 500px;
  list-style-type: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #f2f4f7;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#activate-menu.visible {
  right: 0;
}
#fade-bg {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99;
  backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, .5);
}
.sidebar-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 25px 46px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 1px 4px 0 rgba(28, 28, 28, .06);
}
.sidebar-header .sidebar-header-img{
  width: 56px;
  height: 56px;
  margin-right: 10px;
}
.sidebar-header .sidebar-header-txt h3{
  font-size: 24px;
  font-weight: 500;
  margin-bottom:2.5px;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-header .sidebar-header-txt p{
  color: rgb(118, 124, 143);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}
.sidebar-header .sidebar-header-btn a{
  color: rgb(226, 55, 68);
  font-size: 18px;
  font-weight: 500;
}
.sidebar-header .sidebar-header-btn a img{
  width: 14px;
  height: 14px;
  margin-right: 0px;
}
.delivery-fee{
  display: flex;
  padding: 15px 20px;
  border-radius: 100px;
  justify-content: space-between;
  z-index: 12;
  position: relative;
  margin-top: -25px;
  background: linear-gradient(rgb(15, 22, 35), rgb(43, 33, 64));
  margin-left: 25px;
  margin-right: 25px;
}
.delivery-fee h4{
  background: linear-gradient(to right, #FFFFFF, #DACBF9);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 16px;
}
.delivery-fee p{
  background: linear-gradient(to right, #EBFFEF, #9CC0FF, #DACBF2);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 14px;
}
.delivery-fee p img{
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.orders-statements{
  border-radius: 20px;
  border: 1px solid #ebebeb;
  padding: 16px 12px;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(28, 28, 28, .06);
  margin: 20px 26px 0;
  position: relative;
}
.orders-statements h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.orders-statements h5::before{
  content: '';
  border-left: 4px solid red;
  height: 24px;
  padding: 0px;
  margin-right: 5px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  position: absolute;
  left: 0;
}
.orders-statements ul li:not(:last-child){
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.orders-statements ul a{
  color: #363636;
  font-size: 14px;
  word-break: break-all;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.orders-statements ul a span{
  background: #12a2ab;
  color: #fff;
  padding: 1px 5px;
  border-radius: 100px;
  font-size: 11px;
  font-family: OurLexend-Medium;
  white-space: nowrap;
  /* display: inline-block; */
  margin-right: 6px;
  font-weight: 600;
}
/*.orders-statements ul img{*/
/*  width: 14px;*/
/*  height: fit-content;*/
/*  position: relative;*/
/*  top: 0px;*/
/*  margin-right: 7px;*/
/*}*/

.orders-statements ul img{
  width: 14px;
  height: auto;
  max-width: 100%;
  position: relative;
  top: 0;
  /*margin-right: 7px;*/
  vertical-align: middle;
}

.orders-statements .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
}
.orders-statements .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.orders-statements .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  transition: 0.4s;
}
.orders-statements .slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 2px;
  bottom: 1px;
  background-color: white;
  transition: 0.4s;
}
.orders-statements input:checked + .slider {
  background-color: #12a2ab;
}
.orders-statements input:focus + .slider {
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7);
  outline: none;
}
.orders-statements input:checked + .slider:before {
  transform: translateX(15px);
}
.orders-statements .slider.round {
  border-radius: 34px;
  margin-right: 0;
}
.orders-statements .slider.round:before {
  border-radius: 50%;
}
/*  */

/* order-sec */
.order-sec{
  padding: 25px 0;
}
.order-card{
  border: 1px solid #ebebeb;
  border-radius: 8px;
  margin-bottom: 25px;
}
.order-card .order-card-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 7px 7px 0 0;
}
.order-card .order-card-header h6 img{
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.order-card .order-card-header h6{
  font-size: 14px;
  color: rgb(54, 54, 54);
}
.order-card .order-card-header span{
  background-color: rgb(255, 241, 230);
  color: rgb(232, 108, 55);
  border: 1px solid rgb(249, 208, 169);
  font-size: 12px;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 500;
}
.order-card-body{
  padding: 15px;
}
.order-card-body p{
  color: #363636;
  font-size: 14px;
}
.order-card-body p img{
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.order-card-body p span{
  font-size: 14px;
  color: #828282;
}
.order-card-body h5{
  font-size: 16px;
  color: #363636;
  font-weight: 500;
}
.order-card-body h6{
  color: #828282;
  font-size: 12px;
  margin-top:5px;
}
.order-card-footer{
  border-radius: 0 0 7px 7px;
  border-top: 1px solid #ebebeb;
  padding: 10px 15px;

}
.order-card-footer p{
  color: #e03546;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-left: 25px;
}
.order-card-footer p svg{
  margin-right: 10px;
}
.order-sec-sort .dropdown {
  min-width: 15em;
  position: relative;
  top: 0;
  margin: 0 0 30px;
  width: 168px;
}
.order-sec-sort .select {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #2a2f3b solid;
  border-radius: 0.5em;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  border: 1px solid rgb(207, 207, 207);
}
.order-sec-sort .select-clicked {
  border: 2px #b5b5b5 solid;
    /* box-shadow: 0 0 0.8em #b5b5b5; */
}
/* .select:hover {
    background: #323741;
} */
.order-sec-sort .caret {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #b5b5b5;
  transition: 0.3s;
}
.order-sec-sort .caret-rotate {
  transform: rotate(180deg);
}
.order-sec-sort .menu {
  list-style: none;
  padding: 10px 0;
  background: #fff;
  /* border: 1px #363a43 solid; */
  /* box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2); */
  box-shadow: rgba(28, 28, 28, 0.15) 0px 1px 8px;
  border-radius: 0.5em;
  color: #9fa5b5;
  position: absolute;
  top: 3.5em;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
}
.order-sec-sort .menu li {
  padding: 11px 12px;
  /* margin: 0.3em 0; */
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 15px;
  color: rgb(79, 79, 79);
}
.order-sec-sort .menu li:hover {
  background-color: rgb(248, 248, 248);
}
/* .active {
    background: #23242a;
} */
.order-sec-sort .menu-open {
  display: block;
  opacity: 1;
}
/* end order-sec */

/*  */
.account-statement-model{}
.account-statement-model .modal-content{
  /*width: 580px;*/
  border-radius: 24px;
}
.account-statement-model .modal-header{
  padding: 20px 24px 5px;
}
.account-statement-model .modal-header h4{
      font-size: 26px;
    font-weight: 600;
}

.account-statement-model .modal-body{
  padding: 0 20px;
}
.account-statement-model .modal-body1{
  padding-top: 16px;
    padding-bottom: 16px;
}
.account-statement-model .InputGroup {
 display: flex;
 flex-wrap: wrap;
}
.account-statement-model input[type="radio"] {
  visibility: hidden; /* 1 */
  height: 0; /* 2 */
  width: 0; /* 2 */
}
.account-statement-model label {
  display: flex;
  /* flex: auto; */
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  /* background-color:#525252; */
  color: #000;
  /* padding: 5px 10px; */
  /* border-radius: 6px; */
  transition: color --transition-fast ease-out, 
              background-color --transition-fast ease-in;
  user-select: none;
  margin-right: 10px;
  margin-top: 16px;

  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: 0 1px 4px rgba(28, 28, 28, .06);
  border-radius: 40px;
  padding: 8px 16px 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.account-statement-model label:last-of-type {
 margin-right: 0;
}
.account-statement-model input[type="radio"]:checked + label {
  background: #ffedef;
    border: 1px solid #ef4f5f;
    box-shadow: 0 1px 4px rgba(28, 28, 28, .06);
}
.account-statement-model .modal-body2{
  margin-top: 25px;
  padding-bottom: 25px;
}
.account-statement-model .modal-body2 p{
  margin-top: 15px;
  color: #afb4c0;
  text-transform: uppercase;
  font-size: 14px;
}
.account-statement-model .modal-body2 ul{
  list-style: auto;
  padding: 0 15px;
}
.account-statement-model .modal-body2 ul li{
  font-size: 14px;
  color: #afb4c0;
  padding: 10px 0;
}
.account-statement-model .modal-body3{
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 30px;
  padding-top: 10px;
}
.account-statement-model .modal-body3 h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.account-statement-model .modal-body3 .form-control{
  border-radius: 8px!important;
}
.account-statement-model .modal-body3 .input-group-addon{
  position: absolute;
  right: 10px;
  top: 6px;
  z-index: 0;
}
.account-statement-model .modal-footer{
  padding: 22px 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.account-statement-model .modal-footer a{
  background: border-box rgb(239, 79, 95);
  border: 1px solid rgb(239, 79, 95);
  color: #fff;
  width: fit-content;
  padding: 10px 85px;
  margin: 0;
  border-radius: 12px;
}
.account-statement-model .modal-footer a:last-child{
  background: #fff;
  color: rgb(239, 79, 95);
}
/* end account-statement-model */

/*  */
.wallet-sec{}
.wallet-sec .row{
  margin: 0 110px;
}
.wallet-sec h3{
  font-weight: 300;
  font-size: 28px;
  margin: 18px 100px;
  color: #000;
}
.wallet-sec .creadit-balance{
  align-items: center;
  background-color: #2781e712;
  border-radius: 6px;
  display: flex;
  padding: 10px 10px 0;
  width: 100%;
  word-break: break-word;
}
.wallet-sec .creadit-balance img{
  margin-bottom: -5px;
  width: 110px;
}
.wallet-sec .creadit-balance1{
  padding-left: 25px;
}
.wallet-sec .creadit-balance h3{
  font-size: 40px;
  color: #1148a6;
  font-weight: 600;
  margin: 0;
}
.wallet-sec .creadit-balance h5{
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 0px;
  color: #1148a6;
  font-weight: 600;
}
.creadit-balance-img{
  margin-top: 15px;
}

.creadit-balance2{
  padding-top: 50px;
}
.creadit-balance2 h5{
  font-size: 18px;
  margin-bottom: 20px;
}
.creadit-balance2 .InputGroup {
 display: flex;
 flex-wrap: wrap;
 margin-bottom: 30px;
}
.creadit-balance2 input[type="radio"] {
  visibility: hidden; /* 1 */
  height: 0; /* 2 */
  width: 0; /* 2 */
}
.creadit-balance2 label {
  display: flex;
  /* flex: auto; */
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* cursor: pointer; */
  /* background-color: #525252; */
  /* color: white; */
  /* padding: 5px 10px; */
  /* border-radius: 6px; */
  transition: color --transition-fast ease-out, 
              background-color --transition-fast ease-in;
  user-select: none;
 /* margin-right: 8px; */

  font-size: 14px;
  border: .5px solid #d6d6d6;
  border-radius: 4px;
  color: dimgray;
  cursor: pointer;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 7px 12px;
}
.creadit-balance2 label:last-of-type {
 margin-right: 0;
}
.creadit-balance2 input[type="radio"]:checked + label {
  /* background-color: #df4775; */
  /* color: var(--color-black); */

  background: #e5f3f3;
    border: .5px solid #e5f3f3;
    color: #12a2ab;
}

.creadit-balance2-2{
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.creadit-balance2-2 h5{
  font-size: 18px;
  color: #000;
  margin: 0;
}
.creadit-balance2-2 h6{
  font-size: 14px;
  color: #000;
  margin: 0;
  line-height: 24px;
}
.creadit-balance2-2 p{
  margin-top: 15px;
  font-size: 14px;
  color: #828282;
  line-height: 18px;
}
.creadit-balance2-2 a{
  color: #e03546;
  font-size: 16px;
  display: flex;
  justify-content: end;
  align-items: center;
}
.creadit-balance-footer p{
  text-align: center;
  color: #9d9d9d;
  font-size: 12px;
}

.creadit-balance-r{
    border: 1px solid #f4f4f4;
    border-radius: 6px;
    box-shadow: 0 10px 70px #e4e9eb33;
    margin-bottom: 10px;
    padding: 20px 12px;
}
.creadit-balance-r h4{
  font-size: 20px;
  color: #000;
}
.creadit-balance-r .form-group{
  margin-top: 30px;
}
.creadit-balance-r .form-control{
  border: .5px solid #b5b5b5;
  font-size: 21px !important;
  padding: 10px 16px;
  border-radius: 6px;
  height: 49px;
}
.creadit-balance-r .form-control::placeholder{
  color: #b8b8b8;
}
.creadit-balance-r .btn{
  background: #e03546;
  color: #fff;
  width: 100%;
  padding: 10px 20px;
  margin-top: 10px;
}
.creadit-balance-r .form-group1{
  margin-top: 30px;
  display: flex;
    gap: 10px;
}
.creadit-balance-r .form-group1 a{
  margin-bottom: 0;
  margin-right: 0;
  padding: 8px 4px;
  text-align: center;
  width: 100%;
  border: .5px solid #d6d6d6;
  border-radius: 4px;
  color: dimgray;
  cursor: pointer;
}
.creadit-balance-r p{
  font-size: 10px;
  color: #b8b8b8;
  text-align: center;
}
.creadit-balance-r h3{
  font-size: 20px;
  margin: unset;
}
.creadit-balance-r h6{
  font-size: 16px;
}
/*  */

/* request-product */
.request-product-txt h3{
  margin-top: 20px;
  color: #4f4f4f;
  font-size: 30px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 400;
}
.request-product-txt .form-group label{
  color: #363636;
  font-size: 18px;
  margin: 12px 0 10px;
}
.request-product-txt .form-group label span{
  color: #828282;
}
.request-product-txt .form-group .form-control{
  padding: 10px 16px;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 18px;
  height: 48px;
  margin-bottom: 10px;
  width: 513px;
}
.request-product-txt .form-group .form-control::placeholder{
  color: #b5b5c6;
}
.request-product-txt .request-product-btn{
  margin-top: 45px;
}
.request-product-txt .btn{
  background: #e03546;
  color:#fff;
  padding: 9px 46px;
  border: 1px solid #e03546;
  margin-right: 15px;
}
.request-product-txt .btn:last-child{
  background: #fff;
  color: #e03546;
}
/* end request-product */

/* try-plus */
.try-plus{
  padding: 40px 0;
  background-color: #f4f6fb;
}
.try-plus .try-plus-lt{
  display: flex;
  align-items: center;
  height: 100%;
}
.try-plus .try-plus-lt h4{
  color: rgb(54, 54, 54);
  font-weight: 400;
  font-size: 26px;
  margin-top: 44px;
  margin-bottom: 6px;
  text-align: center;
}
.try-plus .try-plus-lt h3{
  color: rgb(54, 28, 111);
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 44px;
  text-align: center;
}
.try-plus .try-plus-lt .btn{
  background-image: linear-gradient(to right, rgb(37, 111, 239), rgb(54, 28, 103));
  width: 321px;
  border-radius: 100px;
  height: 56px;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
}
.try-plus .try-plus-lt .btn del{
  color: rgb(214, 214, 214);
  text-decoration: line-through;
  opacity: 0.5;
}
.try-plus .try-plus-rt1{
  display: flex;
  align-items: center;
  gap: 24px;
}
.try-plus .try-plus-rt{
  padding: 40px;
  box-shadow: 0px 8px 12px 0px rgba(28, 28, 28, .08);
  background: #fff;
  border-radius: 20px;
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.try-plus .try-plus-rt img{
  width: 84px;
  height: 84px;
}
.try-plus .try-plus-rt h4{
  color: rgb(28, 28, 28);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.try-plus .try-plus-rt h5{
  color: rgb(105, 105, 105);
  font-size: 18px;
  font-weight: 400;
}
/* end try-plus */

/* try-plus-model */
.try-plus-model{}
.try-plus-model .modal-dialog{
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0 auto;
}
.try-plus-model .modal-content{
  border-radius: 20px;
}
.try-plus-model .modal-body{
  text-align: center;
  display: flex;
  padding: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(undefined);
  background-size: cover;
  background-position: center center;
}
.try-plus-model .modal-body h5{
  color: rgb(79, 79, 79);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}
.try-plus-model .modal-body h3{
  color: rgb(54, 28, 111);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}
.try-plus-model .modal-body h4{
  color: rgb(54, 54, 54);
  font-size: 20px;
  font-weight: 500;
}
.try-plus-model .modal-body img{
  height: 90px;
  width: 400px;
  margin-top: 48px;
}
.try-plus-model .modal-body p{
  color: rgb(54, 54, 54);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 48px;
}
.try-plus-model .modal-body p img{
  height: 24px;
  width: 24px;
  margin: auto;
}
.try-plus-model .modal-body a{
  background-image: linear-gradient(to right, rgb(37, 111, 239), rgb(54, 28, 103));
  width: 321px;
  border-radius: 100px;
  height: 56px;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
}
.try-plus-model .modal-body a del{
  color: rgb(214, 214, 214);
  text-decoration: line-through;
  opacity: 0.5;
}
.try-plus-model .modal-body span{
  margin-top: 50px;
  color: rgb(79, 79, 79);
  font-size: 14px;
}
/* end try-plus-model */

/* checkout-sec */
.checkout-sec{
  background-color: #f4f6fb;
}
.checkout-sec .checkout-sec-lt{
  background-color: rgb(255, 255, 255);
  border-radius: 0px 0px 24px 24px;
  padding: 44px 24px 40px;
}
.checkout-sec .checkout-sec-lt .checkout-card h3{
  color: #000;
  text-align: center;
  font-size: 24px;
}
.checkout-sec .checkout-sec-lt .checkout-card p{
  color: rgb(130, 130, 130);
  font-size: 14px;
  text-align: center;
}
.checkout-sec .checkout-sec-lt .checkout-card h6{
  background: rgb(229, 243, 243);
  border: 1.5px solid rgb(255, 255, 255);
  border-radius: 100px;
  color: rgb(17, 145, 153);
  padding: 10px 20px;
  width: fit-content;
  font-weight: 600;
  font-size: 14px;
  margin: 15px auto 0;
}
.checkout-sec .checkout-sec-lt .checkout-card1{
  border-top: 1px dashed #e6e9ef;
  padding-top: 15px;
  margin-top: 15px;
}
.checkout-sec .checkout-sec-lt .checkout-card1 img{
  height: 44px;
  width: 44px;
  margin-right: 16px;
}
.checkout-sec .checkout-sec-lt .checkout-card1 h5{
  color: rgb(130, 130, 130);
  font-size: 14px;
  font-weight: 400;
}
.checkout-sec .checkout-sec-lt .checkout-card1 h4{
  color: rgb(41, 49, 66);
  font-size: 16px;
  margin-top: 3px;
}
.checkout-sec .checkout-sec-lt .checkout-card1 a{
  color: rgb(239, 79, 95);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.checkout-sec .checkout-sec-lt .checkout-card1 a img{
  height: 24px;
  width: 24px;
  margin: unset;
}
.checkout-sec .checkout-sec-lt .checkout-card2{
  background-color: rgb(255, 241, 230);
  border-radius: 12px;
  position: relative;
  gap: 16px;
    display: flex;
    padding: 16px 0px;
    margin-top: 15px;
}
.checkout-sec .checkout-sec-lt .checkout-card2::after{
  background: inherit;
  -webkit-clip-path: polygon(0 10px, 9px 2px, 11px 2px, 20px 10px);
  clip-path: polygon(0 10px, 9px 2px, 11px 2px, 20px 10px);
  content: "";
  height: 10px;
  left: 16px;
  position: absolute;
  top: -1px;
  transform: translateY(-100%);
  width: 20px;
}
.checkout-sec .checkout-sec-lt .checkout-card2 img{
  height: 24px;
  width: 24px;
  margin-left: 15px;
}
.checkout-sec .checkout-sec-lt .checkout-card2 p{
  color: rgb(79, 79, 79);
  font-size: 14px;
}
.checkout-sec .checkout-card3{
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e6e9ef;
  box-shadow: 0 1px 4px 0 rgba(28, 28, 28, .059);
  padding: 24px;
  background-color: #fff;
  border-radius: 24px;
  margin-top: 25px;
}
.checkout-sec .checkout-card3 img{
  height: 64px;
  width: 64px;
}
.checkout-sec .checkout-card3 h4{
  color: rgb(54, 54, 54);
  font-weight: 600;
  font-size: 16px;
}
.checkout-sec .checkout-card3 h4 span{
  color: rgb(3, 79, 80);
  background-color: rgb(207, 255, 219);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  text-transform: uppercase;
}
.checkout-sec .checkout-card3 h5{
  color: rgb(130, 130, 130);
  font-weight: 400;
  font-size: 14px;
}
.checkout-sec .checkout-card3 a{
  color: rgb(239, 79, 95);
  font-weight: 600;
  font-size: 14px;
}
.checkout-card-txt{
  color: #2c3875;
  opacity: .4;
  margin-bottom: 16px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.checkout-card-txt:after {
  display: inline-block;
  margin: 0 0 4px 6px;
  content: " ";
  text-shadow: none;
  background-color: #2c3875;
  border-width: 0;
  color: #2c3875;
  height: 1px;
  opacity: .4;
  width: 16px;
}
.checkout-card-txt:before {
  display: inline-block;
  margin: 0 6px 4px 0;
  content: " ";
  text-shadow: none;
  background-color: #2c3875;
  border-width: 0;
  color: #2c3875;
  height: 1px;
  opacity: .4;
  width: 16px;
}
.checkout-card4{
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
  position: relative;
  z-index: 2;
}
.checkout-card4 h4{
  font-size: 16px;
  background: #fff;
  border-bottom: 1px solid #f2f4f7;
  border-radius: 24px 24px 0 0;
  padding: 16px 24px;
  text-align: center;
}
.checkout-card4 .checkout-card4-1{
  margin-left: 24px;
  margin-right: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-card4 .checkout-card4-1 h5{
  font-size: 18px;
  cursor: pointer;
}
.checkout-card4 .checkout-card4-1 h5 img{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}
.checkout-card4 .checkout-card4-1 .img{
  background: #fff;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  height: 40px;
  margin-left: -20px;
  position: relative;
  width: 40px;
}
.checkout-card4 .checkout-card4-1 h6{
  color: #363636;
  font-size: 16px;
  margin-left: 15px;
}
.checkout-card4 .checkout-card4-1 h6 img{
  height: 20px;
  width: 20px;
}
.checkout-card5{
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
  margin-bottom: 24px;
  padding: 24px;
}
.checkout-card5 img{
  height: 24px;
  width: 24px;
  margin-right: 10px;
}
.checkout-card5 h5{
  font-size: 16px;
  margin-bottom: 5px;
}
.checkout-card5 h6{
  color: #9197A6;
  font-size: 14px;
}
.checkout-card5 h6 img{
  width: 16px;
  height: 16px;
  margin-left: 8px;
  cursor: pointer;
}
.checkout-card5 p{
  background: rgb(248, 249, 252);
  border-radius: 12px;
  padding: 15px;
  font-size: 14px;
  margin-top: 20px;
}
.checkout-card5 .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 26px;
}
.checkout-card5 .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkout-card5 .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8f8485;
  transition: .4s;
}
.checkout-card5 .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 1px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
}
.checkout-card5 input:checked + .slider {
  background-color: #ef4f5f;
}
.checkout-card5 input:focus + .slider {
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7);
  outline: none;
}
.checkout-card5 input:checked + .slider:before {
  transform: translateX(15px);
}
.checkout-card5 .slider.round {
  border-radius: 34px;
}
.checkout-card5 .slider.round:before {
  border-radius: 50%;
}
/* checkout-sec */

/* checkout-sec-rt */
.checkout-sec-rt{
  border-radius: 24px;
  box-shadow: 0 1px 4px 0 #1c1c1c0f;
  margin-bottom: 30px;
  margin-top: 65px;
  background: #fff;
}
.checkout-sec-rt1{
  padding: 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #ebebeb;
}
.checkout-sec-rt1 h4{
  font-size: 18px;
}
.checkout-sec-rt1 h5{
  font-size: 18px;
  text-align: right;
}
.checkout-sec-rt1 h6{
  color: #9d9d9d;
  font-size: 12px;
  text-align: right;
  margin-top: 3px;
  font-weight: 600;
}
.checkout-sec-rt3{
  padding: 24px;
  border-top: 2px solid #ebebeb;
}
.checkout-sec-rt3 h3{
  font-size: 18px;
  color: #000;
}
.checkout-sec-rt3 p{
  color: #24963f;
  font-size: 14px;
  margin-top: 3px;
}
.checkout-sec-rt3 a{
  background: #e03546;
  font-size: 18px;
  display: block;
  padding: 16px;
  color: #fff;
  border-radius: 12px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-sec-rt4{
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  padding: 10px;
}
.checkout-sec-rt4 img{
  width: 68px;
  height: 68px;
  margin-right: 10px;
}
.checkout-sec-rt4 h6{
  font-size: 14px;
}
.checkout-sec-rt4 p{
  font-size: 12px;
}
.checkout-sec-rt4 .arrow{
  width: 9px;
  height: fit-content;
}

.checkout-sec-rt5{
  padding: 24px 24px 5px;
}
.checkout-sec-rt5 .form-group {
  display: block;
  margin-bottom: 15px;
}
.checkout-sec-rt5 .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkout-sec-rt5 .form-group label {
  position: relative;
  cursor: pointer;
  display: flex;
}
.checkout-sec-rt5 .form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #9c9c9c;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  height: fit-content;
  border-radius: 4px;
}
.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #e03546;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-sec-rt5 .form-group h5{
  color: #1c1c1c;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
.checkout-sec-rt5 .form-group h6{
  color: #828282;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
}
.checkout-sec-rt5 .form-group p{
  color: #CE501A;
  font-size: 14px;
}
/* end checkout-sec-rt */

/* delivery-slot-modal */
.delivery-slot-modal .modal-dialog{
  max-width: 540px;
  display: flex;
  height: 100%;
  align-items: center;
  margin: 0 auto;
}
.delivery-slot-modal .modal-content{
  background: #f4f6fb;
  border-radius: 24px;
}
.delivery-slot-modal .modal-body {
  padding: 24px 24px 0;
}
.delivery-slot-modal .modal-body h4{
  color: #000;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.delivery-slot-modal .modal-body h4 .btn-close{
  font-size: 20px;
}
.delivery-slot-modal .modal-body form{
  background: #fff;
  border-radius: 24px 24px 0 0;
  height: 360px;
  overflow: auto;
}
.delivery-slot-modal .modal-body form p{
  padding: 24px;
  border-bottom: 1px dashed #f5f5f5;
}
.delivery-slot-modal .modal-body [type="radio"]:checked,
.delivery-slot-modal .modal-body [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.delivery-slot-modal .modal-body [type="radio"]:checked + label,
.delivery-slot-modal .modal-body [type="radio"]:not(:checked) + label
{
  position: relative;
  padding-left: 0px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
  width: 100%;
  font-size: 18px;
}
.delivery-slot-modal .modal-body [type="radio"]:checked + label{
  font-weight: 600;
}
.delivery-slot-modal .modal-body [type="radio"]:checked + label:before,
.delivery-slot-modal .modal-body [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border: 2px solid #ff0000;
  border-radius: 100%;
  background: #fff;
}
.delivery-slot-modal .modal-body [type="radio"]:checked + label:after,
.delivery-slot-modal .modal-body [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 10.5px;
  height: 10.5px;
  background: #ff0000;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.delivery-slot-modal .modal-body [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.delivery-slot-modal .modal-body [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.delivery-slot-modal .modal-footer{
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 24px;
}
.delivery-slot-modal .modal-footer a{
  background: #ed5a6b;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
}
/* end delivery-slot-modal */

/* delivery-item-modal */
.delivery-item-modal .modal-dialog{
  max-width: 580px;
  display: flex;
  height: 100%;
  align-items: center;
  margin: 0 auto;
}
.delivery-item-modal .modal-body{
  padding: 20px;
  max-height: 650px;
  overflow: auto;
}
.delivery-item-modal .modal-body1{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.delivery-item-modal .modal-body .modal-title{
  color: #000;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ebebeb;
  margin-bottom: 10px;
}
.delivery-item-modal .modal-body .modal-title .btn-close{
  font-size: 16px;
}
.delivery-item-modal .modal-body1:not(:last-child){
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.delivery-item-modal .modal-body1 img{
  height: 50px;
  width: 50px;
  margin-right: 20px;
}
.delivery-item-modal .modal-body1 h6{
  font-size: 16px;
  color: #000;
}
.delivery-item-modal .modal-body1 p{
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
/* end delivery-item-modal */

/* update-receiver-modal */
.update-receiver-modal .modal-dialog{
  max-width: 540px;
}
.update-receiver-modal .modal-content{
  background: #f4f6fb;
  border-radius: 24px;
}
.update-receiver-modal h4{
  font: 600 26px "Lexend", sans-serif;
  color: #000;
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.update-receiver-modal h4 .btn-close{
  font-size: 20px;
}
.update-receiver-modal .modal-body1,
.update-receiver-modal .modal-body2{
  margin-top: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
}
.update-receiver-modal .modal-body1 h5{
  font-weight: 700;
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.update-receiver-modal .modal-body1 h5 svg{
  height: 24px;
  width: 24px;
  color: #9197a6;
}
.update-receiver-modal .modal-body2 h5{
  font-weight: 700;
  font-size: 22px;
}
.update-receiver-modal .plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.update-receiver-modal .plans .plan {
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
}
.update-receiver-modal .plans .plan .plan-content {
  display: flex;
  padding: 15px;
  border: 1px solid #e1e2e7;
  border-radius: 20px;
  transition: box-shadow 0.4s;
  position: relative;
}
.update-receiver-modal .plans .plan .plan-content img {
  margin-right: 16px;
  height: 44px;
  width: 44px;
}
.update-receiver-modal .plans .plan .plan-details span {
  font: 400 14px "Lexend", sans-serif;
  color: rgb(130, 130, 130);
}
.update-receiver-modal .title {
  font: 500 20px "Lexend", sans-serif;
  flex-basis: 100%;
  color: #252f42;
  margin-bottom: 20px;
}
.update-receiver-modal .plans .plan .plan-details p {
  font: 600 18px "Lexend", sans-serif;
  color: rgb(79, 79, 79);
}
.update-receiver-modal .plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #ff0000;
  right: 20px;
  top: 30px;
  border-radius: 100%;
  border: 4px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #ff0000;
  box-shadow: 0px 0px 0px 2px #ff0000;
}
.update-receiver-modal .plans .plan input[type="radio"]:checked + .plan-content {
  border: 1px solid #ff0000;
  background: #fff;
  transition: ease-in 0.3s;
}
/* inspiration */
.update-receiver-modal .inspiration {
  font-size: 12px;
  margin-top: 50px;
  position: absolute;
  bottom: 10px;
  font-weight: 300;
}
.update-receiver-modal .inspiration a {
  color: #666;
}
.update-receiver-modal .modal-body {
  padding: 24px;
}
.update-receiver-modal .modal-footer{
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 24px;
}
.update-receiver-modal .modal-footer a{
  background: #ed5a6b;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
}
/* end update-receiver-modal */

/* add-new-phone-modal */
.add-new-phone-modal .modal-content{
  border-radius: 24px;
}
.add-new-phone-modal .modal-body{
  padding: 0;
}
.add-new-phone-modal .modal-body1{
  padding: 24px 24px 45px;
  background-color: #f4f6fb;
  border-radius: 24px 24px 0 0;
}
.add-new-phone-modal .modal-body1 h4{
  font: 600 26px "Be Vietnam Pro", sans-serif;
  color: #000;
  padding-bottom: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.add-new-phone-modal .modal-body1 h4 .btn-close{
  font-size: 16px;
}
.add-new-phone-modal .modal-body1 h6{
  font: 400 18px/28px "Be Vietnam Pro", sans-serif;
  color: #767c8f;
}
.add-new-phone-modal .modal-body2{
  padding: 70px 24px;
}
.add-new-phone-modal .modal-body2 .input-group{
  margin-bottom: 40px;
}
.add-new-phone-modal .modal-body2 .input-group-text{
  color: #000;
  background: #fff;
  padding-right: 0;
  border-right: 0;
  border-radius: 12px;
}
.add-new-phone-modal .modal-body2 .input-group-text img{
  height: 20px;
  width: 30px;
  margin-right: 8px;
}
.add-new-phone-modal .modal-body2 .input-group .form-control{
  height: 55px;
  padding-left: 5px;
  border-left: 0;
  border-radius: 12px;
}
.add-new-phone-modal .modal-body2 .input-group .form-control:focus{
  box-shadow:none;
  border-color: #dee2e6;
}
.add-new-phone-modal .modal-body2 .form-control{
  height: 55px;
  border-radius: 12px;
}
.add-new-phone-modal .modal-footer{
  padding: 16px 24px;
  background-color: #f4f6fb;
  border-radius: 0 0 24px 24px;
}
.add-new-phone-modal .modal-footer a{
  background: #ed5a6b;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
}
/* end add-new-phone-modal */

/* digital-challan-modal */
.digital-challan-modal .modal-content{
  background: #f4f6fb;
  border-radius: 24px;
}
.digital-challan-modal .modal-body{
  padding: 24px;
}
.digital-challan-modal .modal-body h3{
  font: 700 26px "Be Vietnam Pro", sans-serif;
  color: #1c1c1c;
  text-align: center;
  margin-bottom: 30px;
}
.digital-challan-modal .modal-body1{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.digital-challan-modal .modal-body1 img{
  height: 100px;
  width: 100px;
}
.digital-challan-modal .modal-body1 h4{
  font: 700 18px "Be Vietnam Pro", sans-serif;
  color: rgb(41, 49, 66);
  margin-bottom: 5px;
}
.digital-challan-modal .modal-body1 p{
  font: 400 16px/20px "Be Vietnam Pro", sans-serif;
  color: rgb(130, 130, 130);
}
.digital-challan-modal .modal-body2{
  border: 1px solid #e6e9ef;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.digital-challan-modal .modal-body2 img{
  height: 44px;
  width: 44px;
}
.digital-challan-modal .modal-body2 h5{
  font: 700 14px "Be Vietnam Pro", sans-serif;
  color: #000;
  margin-bottom: 4px;
}
.digital-challan-modal .modal-body2 h4{
  font: 400 12px "Be Vietnam Pro", sans-serif;
  color: rgb(130, 130, 130);
}
.digital-challan-modal .modal-body2  .imgs{
  height: 24px;
  width: 24px;
}
.digital-challan-modal .modal-footer{
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 24px;
}
.digital-challan-modal .modal-footer a{
  background: #ed5a6b;
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #fff;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
}
/* end digital-challan-modal */

/* blog-sec */
.blog-sec{
  padding: 40px 0;
}
.blog-sec h1{
  font: 400 40px "Be Vietnam Pro", sans-serif;
  color: #000;
  margin-bottom: 40px;
  position: relative;
}
.blog-sec h1::after{
  content: '';
  width: 64px;
  height: 2.7px;
  background: #e23744;
  display: block;
  margin-top: 10px;
}
.blog-sec .blog-sec-card-img img{
  object-fit: cover;
  aspect-ratio: 404 / 235;
}
.blog-sec .blog-sec-card-txt{
  padding: 24px 0;
}
.blog-sec .blog-sec-card-txt h5{
  font: 300 20px/28px "Be Vietnam Pro", sans-serif;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.blog-sec .blog-sec-card-txt h3{
  font: 400 24px/34px "Be Vietnam Pro", sans-serif;
  color: #111827;
  margin-bottom: 15px;
}
.blog-sec .blog-sec-card-txt h4{
  font: 300 20px/32px "Be Vietnam Pro", sans-serif;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
}
.blog-sec .blog-sec-card-txt h4 span{
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.blog-sec .blog-sec-card-txt h4 span:not(:last-child)::after{
  content: '';
  background: #9ca3af;
  width: 1.6px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 8px;
}
/* end blog-sec */

/* blog-details */
.blog-details{
  padding: 60px 0;
}
.blog-details .blog-details-txt h5{
  font: 300 20px/28px "Be Vietnam Pro", sans-serif;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.blog-details .blog-details-txt h3{
  font: 400 60px/70px "Be Vietnam Pro", sans-serif;
  color: #000;
  margin-bottom: 15px;
}
.blog-details .blog-details-txt h4{
  font: 300 20px/32px "Be Vietnam Pro", sans-serif;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
}
.blog-details .blog-details-txt h4 span{
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.blog-details .blog-details-txt h4 span:not(:last-child)::after{
  content: '';
  background: #9ca3af;
  width: 1.6px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 8px;
}
.blog-details .blog-details-img{
  margin: 40px 0 48px;
}
.blog-details .blog-details-img img{
  object-fit: cover;
}
.blog-details .blog-details-txt h6{
  font: 500 30px "Be Vietnam Pro", sans-serif;
  color: #000;
  margin-bottom: 16px;
}
.blog-details .blog-details-txt p{
  font: 300 20px/32px "Be Vietnam Pro", sans-serif;
  margin-bottom: 32px;
}
.blog-details .blog-details-txt ul{
  list-style: disc;
  padding-left: 40px;
}
.blog-details .blog-details-txt ul li{
  font: 300 20px/32px "Be Vietnam Pro", sans-serif;
  margin-bottom: 32px;
}
/* end blog-details */

/* seller-customers */
.seller-customers{
  background: #fef5f5;
  padding: 60px 0;
  margin-bottom: 40px;
}
.seller-customers h3{
  color: #cf4a57;
  text-align: center;
  margin-bottom: 10px;
  font: 700 40px/50px "Lexend", sans-serif;
}
.seller-customers h4{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 0px;
}
.seller-customers h4::before{
  display: inline-block;
  margin: 0 10px 8px 0;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
.seller-customers h4::after{
  display: inline-block;
  margin: 0 0 8px 10px;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
.seller-customers .swiper {
	width: 100%;
}
.seller-customers .swiper-wrapper {
	transition-timing-function: linear !important;
}
.seller-customers .swiper-slide {
	height: auto !important;
}
.seller-customers .horizontal-ticker {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}
@media screen and (max-width: 767.9px) {
	.seller-customers .horizontal-ticker {
		row-gap: 15px;
	}
}
.seller-customers .horizontal-ticker__slide {
	position: relative;
	width: 7vw;
	aspect-ratio: 300 / 205;
	border-radius: 10px;
	overflow: hidden;
	backdrop-filter: blur(50px);
}
@media screen and (max-width: 767.9px) {
	.seller-customers .horizontal-ticker__slide {
		width: 150px;
	}
}
.seller-customers .horizontal-ticker__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.6s ease-out;
  
}
.seller-customers .swiper-slide1 img{
  filter: grayscale(100%);
}
.seller-customers .horizontal-ticker__slide img:last-child {
	position: absolute;
	inset: 0;
	opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
	.seller-customers .horizontal-ticker__slide:hover img:last-child {
		opacity: 1;
	}
}
.seller-customers .seller-customers-sec{
  display: grid;
  grid-template-columns: 550px 350px 550px;
  gap: 0px;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 0;
}
.seller-customers .seller-customers-sec1{
  padding-top: 35px;
}
.seller-customers .seller-customers-sec2{
  padding: 60px 30px 40px;
  border-radius: 6px;
  box-shadow: rgba(50, 50, 93, 0) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  background: #fff;
}
.seller-customers-img .imgs{
  width: 185px;
  margin: 0 auto 25px;
  display: block;
}
/* end seller-customers */

/* corporate-announcements */
.corporate-announcements h2{
  font: 700 36px/40px "Lexend", sans-serif;
  color: #1c1c1c;
  margin: 40px 0 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #ebebeb;
  text-transform: capitalize;
  word-wrap: break-word;
}
.corporate-announcements-txt {
  padding: 35px 0;
  border-bottom: 1px solid #ebebeb;
}
.corporate-announcements-txt p{
  color: #767c8f;
  word-wrap: break-word;
  font: 400 16px/24px "Lexend", sans-serif;
}
.corporate-announcements-txt h3{
  color: #293142;
  word-wrap: break-word;
  margin-top: 8px;
  margin-bottom: 8px;
  font: 400 30px/34px "Lexend", sans-serif;
}
.corporate-announcements-txt a{
  color: #ef4f5f;
  word-wrap: break-word;
  font: 500 18px/26px "Lexend", sans-serif;
}
.corporate-announcements-txt a svg{
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 20px;
  height: 20px;
}
/* end corporate-announcements */

/* register-sec */
.register-sec{
  overflow-x: hidden;
  height: 100%;
  padding: 80px 0;
  /* background: url(https://janseva.co/public/assets/img/login-bg.png) no-repeat center center / cover; */
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url('https://janseva.co/public/assets/img/login-bg.png') no-repeat center center / cover;
}
.register-sec .register-sec-form{
  padding: 35px;
  border-radius: 15px;
  /* background: #fff; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 8px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(10px);
}
.register-sec .register-sec-form h3{
  color: #272727;
  letter-spacing: 2px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.register-sec .register-sec-form h3::before{
  display: inline-block;
  margin: 0 10px 0px 0;
  height: 1.5px;
  content: " ";
  text-shadow: none;
  background: linear-gradient(270deg, #ff0000 0%, rgba(255, 194, 171, 0.00) 100%);
  flex: 1 1 0%;
}
.register-sec .register-sec-form h3::after{
  display: inline-block;
  margin: 0 0 0px 10px;
  height: 1.5px;
  content: " ";
  text-shadow: none;
  background: linear-gradient(270deg, rgba(255, 194, 171, 0.00) 0%, #ff0000 100%);
  flex: 1 1 0%;
}
.register-sec .register-sec-form .row{
  margin-bottom: 15px;
}
.register-sec .register-sec-form .form-control{
  background-color: #ffffffcf;
}
.register-sec .register-sec-form .btn{
  background: #ef4f5f;
  border-radius: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  padding: 10px 40px;
  margin: 40px auto 0;
  display: block;
}
/* end register-sec */

/* shopby-categories */
.shopby-categories .container-fluid{
  background: transparent;
}
/* .shopby-categories h3{
  color: #1c1c1c;
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: normal;
} */
 .shopby-categories h3 {
    color: #1c1c1c;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: normal;
    border-left: 4px solid #ff3867;
    padding: 2px 0 2px 8px;
    font-weight: 700;
    font-size: 22px;
    -webkit-background-clip: text;
}

.shopby-categories h3::before,
.shopby-categories h3::after{
  content: unset;
}
.shopby-categories .our-categories-card{
  background-color: #f4f6fb;
}
/* end shopby-categories */

/*  */
.seller-customers {
  background: linear-gradient(135deg, #fff, #ffeaea);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.seller-customers h3 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #cf4a57;
}

.seller-customers h4 {
  text-align: center;
  font-size: 26px;
  color: #222;
  margin-bottom: 50px;
}

/* GRID LAYOUT */
.seller-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  gap: 40px;
}

/* CENTER CARD */
.center-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.center-card img {
  width: 160px;
  margin-bottom: 15px;
}

/* FLOATING LOGOS */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.logo-box {
  width: 90px;
  height: 70px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  filter: grayscale(100%);
}

/* HOVER EFFECT */
.logo-box:hover {
  transform: translateY(-8px) scale(1.05);
  filter: grayscale(0%);
}

/* FLOAT ANIMATION */
.logo-box {
  animation: float 4s ease-in-out infinite;
}

.logo-box:nth-child(2) { animation-delay: 1s; }
.logo-box:nth-child(3) { animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
/*  */

/*  */
.network-section h2{
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #cf4a57;
  margin-bottom: 10px;
}
.network-section h3{
  text-align: center;
  font-size: 26px;
  color: #222;
  margin-bottom: 0px;
}
.network-section h3::before{
  display: inline-block;
  margin: 0 10px 8px 0;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
.network-section h3::after{
  display: inline-block;
  margin: 0 0 8px 10px;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #1c1c1c;
  width: 31px;
}
.network-section {
  background: #fef5f5;
  padding: 100px 0;
  text-align: center;
}
.network-section .network-wrapper {
  position: relative;
  /* width: 1200px; */
  margin: auto;
}

/* CENTER */
.network-section .center-box {
  position: absolute;
  left: 50%;
  top: 300px;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px 30px;
  border-radius: 15px;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.network-section .center-box img{
  width: 200px;
} 
/* PATH */
.network-section .network-svg path {
  fill: none;
  stroke: #e6b3b3;
  stroke-width: 3;
  stroke-dasharray: 6;
}

/* LOGO */
.network-section .logo {
  position: absolute;
  width: 60px;
  height:60;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.network-section .logo img{
  width: 60px;
  height:60;
  border-radius: 50%;
}

/* LABEL */
.network-section .label {
  position: absolute;
  background: #f3b3b3;
  padding: 3px 12px 2px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

/* LEFT LABELS */
.network-section .farm1.label { top: 70px; left: 390px; }
.network-section .national1.label { top: 240px; left: 370px;}
.network-section .imported1.label { top: 410px; left: 370px; }

/* RIGHT LABELS */
.network-section .dining1.label { top: 70px; right: 390px; }
.network-section .qsr1.label { top: 240px; right: 390px; }
.network-section .cloud1.label { top: 400px; right: 340px; }
/*  */

/* notification-sidebar */
#activators .menu-icons,
#activators .menu-icons::before,
#activators .menu-icons::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  border-radius: 1px;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#activators .menu-icons {
  top: 8px;
}
#activators .menu-icons::before {
  top: -8px;
}
#activators .menu-icons::after {
  bottom: -8px;
}
#activators.actives .menu-icons {
  background: none;
}
#activators.actives .menu-icons::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#activators.actives .menu-icons::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#activate-menus {
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -40%;
  width: 500px;
  list-style-type: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#activate-menus.visibles {
  right: 0;
}
#fade-bgs {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.2);
}
.notification-sidebar-header{
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
}
.notification-sidebar-header h3{
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
.notification-sidebar{
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  display: flex;
}
.notification-sidebar:hover{
  background-color: #e1ebf8;
}
.notification-sidebar .notification-sidebar-img {
  margin-right:30px;
}
.notification-sidebar .notification-sidebar-img img{
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.notification-sidebar .notification-sidebar-txt h5{
  font-size: 16px;
  font-weight: 500;
  margin-bottom:5px;
  color: #000;
}
.notification-sidebar .notification-sidebar-txt h6{
  font-size: 14px;
  margin-bottom:5px;
  color: #000;
}
.notification-sidebar .notification-sidebar-txt p{
  font-size: 14px;
  color: #9d9d9d;
}
.notification-sidebar-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notification-sidebar-header #close-btn{
  border:none;
  font-size:30px;
  cursor:pointer;
  line-height: 25px;
  color: rgb(119, 119, 119);
}
/* end notification-sidebar */


/* coupon-sec */
.coupon-sec{
  background: linear-gradient(180deg, #f4f8ff 50%, #eef3fa), #fff;
  padding: 60px 0 70px;
}
.coupon-sec .coupon-sec-txt h3{
  color: #0e3272;
  font-weight: 600;
  text-align: left;
  font-size: 54px;
}
.coupon-sec .coupon-sec-txt p{
  margin-top: 12px;
  margin-bottom: 40px;
  color: #0e3272;
  text-align: inherit;
  opacity: .8;
  font-size: 20px;
}
.coupon-sec .coupon-sec-txt .input-group{
  width: 500px;
  margin-right: auto;
  padding-bottom: 12px;
  margin-bottom: 200px;
  background: #fff;
  padding: 3px 10px;
  font-size: 1.1em;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, .19);
  border-radius: 25px;
}
.coupon-sec .coupon-sec-txt .form-control{
  text-transform: uppercase;
  border: 0;
}
.coupon-sec .coupon-sec-txt .form-control::placeholder{
  color: #b5b5b5;
}
.coupon-sec .coupon-sec-txt .form-control:focus{
  box-shadow:unset
}
.coupon-sec .coupon-sec-txt .btn{
  padding-right: 10px;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 22px 45px;
  font-size: 20px;
  color: #fff;
  background-color: #ef4f5f;
  border-radius: 20px!important;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, .19);
}
.coupon-sec .coupon-sec-img{
  margin: 0 42px;
}
/* end */

/*#chatWidget{*/
/*    width:350px;*/
/*    height:500px;*/
/*    position:fixed;*/
/*    top: 3%;*/
    
/*    right:20px;*/
/*    background:#fff;*/
/*    border-radius:15px;*/
/*    overflow:hidden;*/
/*    box-shadow:0 5px 20px rgba(0,0,0,0.2);*/
/*    z-index:99999;*/
/*    display:none;*/
/*    flex-direction:column;*/
/*    font-family:Arial,sans-serif;*/
/*}*/

#chatHeader{
    background:#004fff;
    color:#fff;
    padding:15px;
    font-size:16px;
    font-weight:bold;
}

#chatMessages{
    flex:1;
    overflow-y:auto;
    padding:10px;
    background:#f5f5f5;
}

#chatInputArea{
    display:flex;
    padding:10px;
    border-top:1px solid #ddd;
}

#chatInput{
    flex:1;
    border:1px solid #ddd;
    border-radius:8px;
    padding:10px;
}

#chatSendBtn{
    margin-left:5px;
    border:none;
    background:#004fff;
    color:#fff;
    border-radius:8px;
    padding:10px 15px;
    cursor:pointer;
}

.chat-bubble{
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
    max-width:85%;
}

.msg-left{
    background:#fff;
}

.msg-right{
    background:#004fff;
    color:#fff;
    margin-left:auto;
}
/* ───────────────── CHAT WIDGET ───────────────── */

/*#chatWidget {*/
/*    display: none;*/
/*    position: fixed;*/
/*    top: -8%;*/
    /*bottom: 90px;*/
/*    right: 25px;*/
/*    width: 355px;*/
/*    height: 560px;*/
/*    flex-direction: column;*/
/*    border-radius: 18px;*/
/*    overflow: hidden;*/
/*    font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;*/
/*    z-index: 999999;*/
/*    box-shadow: 0 20px 60px rgba(0, 0, 0, .22),*/
/*        0 4px 20px rgba(0, 0, 0, .1);*/
/*    border: 1px solid rgba(0, 0, 0, .08);*/
/*}*/

/*#chatWidget.cw-open {*/
/*    display: flex;*/
/*}*/



/* ── HEADER ─────────────────────────────────── */

#cw-head {
    background: #ff3269;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

#cw-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

#cw-ava {
    width: 40px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

#cw-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

#cw-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    margin-top: 2px;
}

#cw-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, .3);
}

#cw-head-actions {
    display: flex;
    gap: 5px;
}

.cw-hbtn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.cw-hbtn:hover {
    background: rgba(255, 255, 255, .28);
}

.cw-hbtn svg {
    display: block;
}

/* ── MESSAGES ───────────────────────────────── */

#cw-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff0f5;
}

#cw-msgs::-webkit-scrollbar {
    width: 3px;
}

#cw-msgs::-webkit-scrollbar-thumb {
    background: #ffc1d6;
    border-radius: 4px;
}

.cw-row {
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.cw-row-r {
    flex-direction: row-reverse;
}

.cw-av-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ff3269;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.cw-bbl {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.52;
    word-break: break-word;
}

.cw-bbl-bot {
    background: #fff;
    color: #1e293b;
    border-bottom-left-radius: 3px;
    border: 1px solid #ffd2df;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.cw-bbl-usr {
    background: #ff3269;
    color: #fff;
    border-bottom-right-radius: 3px;
}

/* ── TYPING DOTS ────────────────────────────── */

.cw-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 11px 14px;
}

.cw-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff7ea3;
    display: inline-block;
    animation: cwbounce .9s infinite ease-in-out;
}

.cw-typing span:nth-child(2) {
    animation-delay: .15s;
}

.cw-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes cwbounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* ── OPTION BUTTONS ─────────────────────────── */

.cw-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 0 2px 33px;
}

.cw-opt {
    padding: 6px 13px;
    border-radius: 20px;
    border: 1.5px solid #ff9cbc;
    background: #fff;
    color: #ff3269;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    line-height: 1.3;
}

.cw-opt:hover {
    background: #ff3269;
    color: #fff;
    border-color: #ff3269;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 50, 105, .22);
}

.cw-opt:active {
    transform: scale(.96);
}

/* ── PRODUCT CARDS ──────────────────────────── */

.cw-cards-wrap {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.cw-cards-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    max-width: 288px;
    scrollbar-width: thin;
}

.cw-cards-scroll::-webkit-scrollbar {
    height: 3px;
}

.cw-cards-scroll::-webkit-scrollbar-thumb {
    background: #ffc1d6;
    border-radius: 4px;
}

.cw-card {
    min-width: 136px;
    max-width: 136px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ffd2df;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
}

.cw-card img {
    width: 100%;
    height: 86px;
    object-fit: cover;
    display: block;
}

.cw-card-nophoto {
    width: 100%;
    height: 86px;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7ea3;
}

.cw-card-body {
    padding: 8px 9px 10px;
}

.cw-card-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 4px;
}

.cw-card-pr {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 7px;
}

.cw-price {
    font-size: 14px;
    font-weight: 700;
    color: #ff3269;
}

.cw-unit {
    font-size: 10.5px;
    color: #94a3b8;
}

.cw-add {
    width: 100%;
    padding: 5px 0;
    background: #ff3269;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background .15s, transform .1s;
}

.cw-add:hover:not(:disabled) {
    background: #e6295d;
}

.cw-add:active:not(:disabled) {
    transform: scale(.97);
}

.cw-add.cw-added {
    background: #16a34a;
}

.cw-add:disabled {
    opacity: .7;
    cursor: default;
}

/* ── INPUT BAR ──────────────────────────────── */

#cw-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px 13px;
    background: #fff;
    border-top: 1px solid #ffd2df;
    flex-shrink: 0;
}

#cw-inp {
    flex: 1;
    border: 1.5px solid #ffd2df;
    border-radius: 22px;
    padding: 9px 15px;
    font-size: 13px;
    outline: none;
    background: #fff5f8;
    color: #1e293b;
    transition: border-color .2s, box-shadow .2s;
}

#cw-inp:focus {
    border-color: #ff3269;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 50, 105, .1);
}

#cw-inp::placeholder {
    color: #94a3b8;
}

.cw-ibtn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
}

#cw-mic {
    background: #fff0f5;
    color: #ff3269;
}

#cw-mic:hover {
    background: #ffdbe7;
}

#cw-mic.mic-on {
    background: #fee2e2;
    color: #ef4444;
    animation: cwpulse 1s infinite;
}

@keyframes cwpulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, .3);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
    }
}

#cw-send {
    background: #ff3269;
    color: #fff;
}

#cw-send:hover {
    background: #e6295d;
    transform: scale(1.08);
}

#cw-send:active {
    transform: scale(.93);
}

.slider-thumbnails .slick-slide.active img {
    border: 1px solid #db0a0f80;
    border-radius:10px;
}