/* global color variables */
/* body style*/
body,
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Crimson Pro", serif;
  scroll-behavior: smooth;
  height: 100vh;
  background-color: #F8F6F4;
}

/*****Font family********/
.font-rufina {
  font-family: "Crimson Pro", serif;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.margin-1 {
  margin: 1px;
}

/********Header Footer fixed********/
.wrapper {
  display: flex;
  flex-flow: column;
  height: auto;
}
.wrapper .header-wrapper {
  flex: 0 1 auto;
  background-color: #F8F6F4;
}
@media (max-width: 575px) {
  .wrapper .header-wrapper img {
    width: 28px;
  }
  .wrapper .header-wrapper img.main-logo {
    width: 110px;
  }
}
.wrapper .header-wrapper .wishlist-wrapper, .wrapper .header-wrapper .shopping-wrapper {
  position: relative;
}
.wrapper .header-wrapper .wishlist-wrapper .alert-fill, .wrapper .header-wrapper .shopping-wrapper .alert-fill {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #E03737;
  border-radius: 50%;
  z-index: 1;
  left: auto;
  right: 0;
  top: 5px;
  border: 2px solid #ffffff;
}
@media (max-width: 450px) {
  .wrapper .header-wrapper .col-3 .imgs-login {
    gap: 16px !important;
  }
  .wrapper .header-wrapper .col-3 .product-mini-cart-img img {
    width: 100%;
  }
}
.wrapper .header-wrapper .top-notification {
  font-size: 14px;
}
@media (max-width: 991px) {
  .wrapper .header-wrapper .top-notification {
    font-size: 12px;
  }
}
.wrapper .main-wrapper {
  padding-top: 112px;
  flex: 1 1 auto;
}
@media (max-width: 991px) {
  .wrapper .main-wrapper {
    padding-top: 79px;
  }
}
.wrapper .footer-wrapper {
  flex: 0 1 40px;
}
.wrapper .footer-wrapper .contactus:hover span, .wrapper .footer-wrapper .contactus:hover img {
  opacity: 0.7;
}

/* global color classes */
.text-primary {
  color: #3A332B !important;
}

.text-secondary {
  color: #706860 !important;
}

.text-button {
  color: #EEE8E4;
}

.text-stroke {
  color: #CDCDCD;
}

.text-limegreen {
  color: #CECBA3;
}

.text-babypink {
  color: #EACAC2;
}

.text-ghost-white {
  color: #F8F6F4;
}

.text-danger {
  color: #E03737 !important;
}

/* global background classes */
.bg-primary {
  background-color: #3A332B !important;
}

.bg-secondary {
  background-color: #706860 !important;
}

.bg-button {
  background-color: #EEE8E4;
}

.bg-stroke {
  background-color: #CDCDCD;
}

.bg-limegreen {
  background-color: #CECBA3;
}

.bg-babypink {
  background-color: #EACAC2;
}

.bg-footer {
  background-color: #F8F6F4 !important;
}

.bg-danger {
  background-color: #E03737 !important;
}

/* global border classes */
.br-stroke {
  border-color: #CDCDCD;
}

/* global font size variables */
/* 12px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 24px */
/* 30px */
/* 36px */
/* 48px */
/* 60px */
/* 72px */
/* 96px */
/* 128px */
/* global line height variables */
/* 16px */
/* 20px */
/* 24px */
/* 28px */
/* 28px */
/* 32px */
/* 36px */
/* 40px */
/* global font weight variables */
/* font size classes */
.text-xs {
  font-size: 0.75rem; /* 12px */
}

.text-sm {
  font-size: 0.875rem; /* 14px */
}

.text-base {
  font-size: 1rem; /* 16px */
}

.text-lg {
  font-size: 1.125rem; /* 18px */
}

.text-xl {
  font-size: 1.25rem; /* 20px */
}

.text-2xl {
  font-size: 1.5rem; /* 24px */
}

.text-3xl {
  font-size: 1.875rem; /* 30px */
}

.text-4xl {
  font-size: 2.25rem; /* 36px */
}

.text-5xl {
  font-size: 3rem; /* 48px */
}

.text-6xl {
  font-size: 3.75rem; /* 60px */
}

.text-7xl {
  font-size: 4.5rem; /* 72px */
}

.text-8xl {
  font-size: 6rem; /* 96px */
}

.text-9xl {
  font-size: 8rem; /* 128px */
}

/* line height classes */
.lheight-xs {
  line-height: 1rem; /* 16px */
}

.lheight-sm {
  line-height: 1.25rem; /* 20px */
}

.lheight-base {
  line-height: 1.5rem; /* 24px */
}

.lheight-lg {
  line-height: 1.75rem; /* 28px */
}

.lheight-xl {
  line-height: 1.75rem; /* 28px */
}

.lheight-2xl {
  line-height: 2rem; /* 32px */
}

.lheight-3xl {
  line-height: 2.25rem; /* 36px */
}

.lheight-4xl {
  line-height: 2.5rem; /* 40px */
}

.lheight-auto {
  line-height: 1;
}

/* font weight classes */
.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

/* common scss */
/* gap classes */
.gap-12 {
  gap: 12px;
}

/* padding classes */
.pt-96 {
  padding-top: 96px;
}
@media (max-width: 991px) {
  .pt-96 {
    padding-top: 40px;
  }
}

.p-12 {
  padding: 12px;
}

.px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.py-96 {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 991px) {
  .py-96 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.pb-96 {
  padding-bottom: 96px;
}
@media (max-width: 991px) {
  .pb-96 {
    padding-bottom: 40px;
  }
}

.px-68 {
  padding-left: 68px;
  padding-right: 68px;
}
@media (max-width: 991px) {
  .px-68 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.px-36 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.pb-52 {
  padding-bottom: 52px;
}
@media (max-width: 991px) {
  .pb-52 {
    padding-bottom: 40px;
  }
}

.pt-40 {
  padding-top: 40px;
}

/* min width */
.w-lg-75 {
  width: 100%;
}
@media (min-width: 991px) {
  .w-lg-75 {
    width: 75%;
  }
}

.min-width-246 {
  min-width: 246px;
}
@media (max-width: 991px) {
  .min-width-246 {
    min-width: 190px;
  }
}

.min-width-190 {
  min-width: 190px;
}
@media (max-width: 991px) {
  .min-width-190 {
    min-width: 88px;
  }
}

.min-width-115 {
  min-width: 115px;
}

.min-width-100 {
  min-width: 100px;
}

/* line-clamp */
@media (min-width: 991px) {
  .line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* cursor css start */
.cursor-pointer {
  cursor: pointer;
}

/* cursor css end */
/* btn css */
.btn {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  font-family: inherit;
  border-radius: 0;
  padding: 12px;
  color: #3A332B;
  transition: all 1s;
  position: relative;
}
.btn:before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: rgba(58, 51, 43, 0.1);
  left: 0;
  top: 0;
  width: 0%;
  transition: all 0.5s;
}
.btn:hover {
  color: #3A332B;
}
.btn:hover::before {
  width: 100%;
}
@media (max-width: 991px) {
  .btn {
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 8px;
  }
}
.btn.btn-primary {
  background-color: #EEE8E4 !important;
  border: 0px solid #EEE8E4 !important;
}
.btn.btn-primary:active, .btn.btn-primary:focus {
  color: #3A332B;
}
.btn.btn-primary:active:focus, .btn.btn-primary:focus:focus {
  box-shadow: none;
}
.btn.btn-outline {
  border: 1px solid #CDCDCD !important;
}
.btn.btn-sm {
  padding: 7px;
  font-size: 0.875rem;
}
.btn.btn-insta .white {
  display: none;
}
.btn.btn-insta .dark {
  display: inline-block;
}
.btn.btn-insta:hover .dark {
  display: inline-block;
}
.btn.btn-insta:hover .white {
  display: none;
}

.btn-email {
  background: transparent;
  border: none !important;
  outline: none;
}

/* btn close icon */
.btn-close.custom-close {
  background-image: url(../images/icon/cross.png);
  border-radius: 50%;
  border: 1px solid #3A332B;
  width: 28px;
  height: 28px;
  padding: 0 !important;
  overflow: hidden;
  background-size: 11px;
}
.btn-close:focus {
  box-shadow: none;
}

/* main banner start */
.main-banner {
  background-color: #EEE8E4;
  padding: 60px 0;
  position: relative;
}
.main-banner::before {
  content: "";
  position: absolute;
  max-width: 500px;
  width: 100%;
  max-height: 170px;
  height: 100%;
  bottom: 0;
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(238, 232, 228, 0), #D8CEC1);
}
@media (max-width: 991px) {
  .main-banner {
    padding: 40px 0;
  }
  .main-banner p.text-xl {
    font-size: 0.875rem;
    padding-bottom: 12px !important;
  }
  .main-banner p.text-sm {
    font-size: 0.75rem;
  }
  .main-banner .col-md-4 {
    margin-top: 40px;
  }
}
.main-banner .image-wrapper {
  position: relative;
}
.main-banner .image-wrapper::before {
  content: "";
  background-image: url(../images/webp/square.webp);
  width: 70px;
  height: 70px;
  left: auto;
  right: 0px;
  top: 0px;
  position: absolute;
  z-index: 0;
}
.main-banner .image-wrapper img {
  position: relative;
}
.main-banner.collection-banner .image-wrapper {
  height: 400px;
  overflow: hidden;
}
.main-banner.collection-banner .image-wrapper img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-banner.collection-banner .image-wrapper::before {
  top: -20px;
}

/* main banner end */
.western-wear {
  background-color: #EEE8E4;
  padding: 60px 0;
  position: relative;
}
.western-wear .quick-links a:hover {
  opacity: 0.8;
}
.western-wear::before {
  content: "";
  position: absolute;
  max-width: 728px;
  width: 100%;
  max-height: 337px;
  height: 100%;
  bottom: 0;
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(238, 232, 228, 0), #D8CEC1);
}
@media (max-width: 991px) {
  .western-wear {
    padding: 40px 0;
  }
  .western-wear::before {
    max-height: 179px;
  }
  .western-wear .text-2xl {
    font-size: 0.875rem !important;
    line-height: 1.5rem !important;
  }
  .western-wear .text-lg {
    font-size: 0.75rem !important;
    line-height: 1.5rem !important;
  }
}
.western-wear .image-wrapper {
  position: relative;
}
.western-wear .image-wrapper::before {
  content: "";
  background-image: url(../images/webp/square.webp);
  width: 70px;
  height: 70px;
  left: auto;
  right: 0px;
  top: -20px;
  position: absolute;
  z-index: 0;
}
.western-wear .image-wrapper img {
  position: relative;
}

/*  main banner end */
/* about section start */
.about-section .secondary-logo {
  width: 104px;
}
@media (max-width: 1024px) {
  .about-section .secondary-logo {
    width: 80px;
  }
}
@media (max-width: 1024px) {
  .about-section .pt-96 {
    padding: 40px 30px 20px;
  }
}
@media (max-width: 991px) {
  .about-section .text-2xl {
    font-size: 0.875rem !important;
    line-height: 1.5rem !important;
  }
  .about-section .text-lg {
    font-size: 0.875rem !important;
    line-height: 1.5rem !important;
  }
  .about-section img {
    width: 63px;
  }
}

/* about section end */
/* section-heading */
section .sub-heading {
  font-size: 1.875rem;
  line-height: 38px;
  font-weight: 400;
  font-family: "Crimson Pro", serif;
  margin-bottom: 0;
  color: #3A332B;
}
@media (max-width: 991px) {
  section .sub-heading {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
section .main-heading {
  font-size: 3rem;
  line-height: 74px;
  font-weight: 300;
  padding-top: 96px;
  padding-bottom: 48px;
  font-family: "Crimson Pro", serif;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #3A332B;
}
@media (max-width: 991px) {
  section .main-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
    padding-top: 40px;
    padding-bottom: 24px;
  }
}

/* missionary-wrapper css start */
.missionary-wrapper .full-width-row {
  gap: 1px;
  margin-bottom: 1px;
}
.missionary-wrapper .full-width-row .col-img {
  overflow: hidden;
  transition: all 1s;
}
.missionary-wrapper .full-width-row .col-img img {
  transition: all 1s;
  aspect-ratio: 4/5;
}
.missionary-wrapper .full-width-row .col-img:hover img {
  transform: scale(1.1);
}
.missionary-wrapper .full-width-row .col-60 {
  width: calc(66.6666666667% - 2px);
}
@media (max-width: 991px) {
  .missionary-wrapper .full-width-row .col-60 {
    width: 100%;
  }
}
.missionary-wrapper .full-width-row .col-50 {
  width: 100%;
}
.missionary-wrapper .full-width-row .col-50 img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .missionary-wrapper .full-width-row .col-50 {
    width: 100%;
  }
  .missionary-wrapper .full-width-row .col-50 img {
    aspect-ratio: 3/4;
  }
}
.missionary-wrapper .full-width-row .col-40 {
  width: calc(33.3333333333% - 0px);
}
@media (max-width: 991px) {
  .missionary-wrapper .full-width-row .col-40 {
    width: 100%;
  }
}
.missionary-wrapper .full-width-row:last-child {
  margin-bottom: 0px !important;
}
.missionary-wrapper .figure {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.missionary-wrapper .figure .figure-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.missionary-wrapper .figure .figure-caption {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
}
@media (max-width: 991px) {
  .missionary-wrapper .figure .figure-caption {
    padding: 16px;
  }
}
.missionary-wrapper .figure .figure-caption a.banner-btn {
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .missionary-wrapper .figure .figure-caption a.banner-btn {
    font-size: 18px;
  }
}
.missionary-wrapper .figure:before {
  content: "";
  position: absolute;
  background: linear-gradient(179.84deg, rgba(58, 51, 43, 0) 55.86%, #3A332B 99.86%);
  width: 100%;
  height: 100%;
  transition: all 1s;
}

.shop-by-edit .missionary-wrapper .figure:before {
  display: none;
}
.shop-by-edit .missionary-wrapper .col-50 {
  width: calc(50% - 12px);
}
.shop-by-edit .missionary-wrapper .col-50 img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .shop-by-edit .missionary-wrapper .col-50 {
    width: 100%;
  }
}

.card {
  background-color: transparent !important;
}

/* missionary-wrapper css end */
/* owl carousel start */
.bestsellers .card-image {
  width: 100%;
}
.bestsellers .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3.5/4;
}
@media (max-width: 600px) {
  .bestsellers .card-image img {
    aspect-ratio: 1/1;
  }
}
.bestsellers .card-body {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.bestsellers .card-body .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel,
.collection {
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
.carousel .filter-section,
.collection .filter-section {
  font-size: 0.875rem;
}
.carousel .remove-product-wishlist,
.collection .remove-product-wishlist {
  border-radius: 50%;
  padding: 6px;
  left: auto;
  right: 24px;
  position: absolute;
  top: 24px;
  width: 32px;
  border-radius: 50%;
  color: #3A332B;
  font-weight: 500;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
}
.carousel .remove-product-wishlist:hover,
.collection .remove-product-wishlist:hover {
  opacity: 1;
}
.carousel .item,
.collection .item {
  position: relative;
}
.carousel .item .outofstockWrapper,
.collection .item .outofstockWrapper {
  display: none;
}
.carousel .item .outofstock .outofstockWrapper,
.collection .item .outofstock .outofstockWrapper {
  display: block;
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(205, 205, 205, 0.8);
}
.carousel .item .outofstock .outofstockWrapper button,
.collection .item .outofstock .outofstockWrapper button {
  position: absolute;
  top: 85%;
  left: calc(50% - 95px);
}
@media (max-width: 991px) {
  .carousel .item .outofstock .outofstockWrapper button,
  .collection .item .outofstock .outofstockWrapper button {
    left: calc(50% - 44px);
  }
}
@media (max-width: 575px) {
  .carousel .item .outofstock .outofstockWrapper button,
  .collection .item .outofstock .outofstockWrapper button {
    top: 80%;
  }
}
.carousel .item .outofstock .card .card-body .card-title, .carousel .item .outofstock .card .card-body .card-price,
.collection .item .outofstock .card .card-body .card-title,
.collection .item .outofstock .card .card-body .card-price {
  color: rgba(58, 51, 43, 0.4);
}
.carousel .item .card,
.collection .item .card {
  overflow: hidden;
  width: auto !important;
  border-radius: 0;
  border: none;
}
.carousel .item .card .card-image,
.collection .item .card .card-image {
  overflow: hidden;
}
.carousel .item .card .card-image .badge,
.collection .item .card .card-image .badge {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #3A332B;
  border-radius: 0;
  font-weight: 500;
  padding: 6px 12px;
  cursor: pointer;
}
.carousel .item .card .card-image img,
.collection .item .card .card-image img {
  transition: all 1s;
  width: 100%;
  aspect-ratio: 2/3;
}
.carousel .item .card .card-image img:hover,
.collection .item .card .card-image img:hover {
  transform: scale(1.1);
}
.carousel .item .card .card-body,
.collection .item .card .card-body {
  padding: 12px;
}
@media (max-width: 991px) {
  .carousel .item .card .card-body,
  .collection .item .card .card-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.carousel .item .card .card-body .card-title,
.collection .item .card .card-body .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  color: #3A332B;
}
@media (max-width: 991px) {
  .carousel .item .card .card-body .card-title,
  .collection .item .card .card-body .card-title {
    font-size: 0.875rem;
    text-align: center !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.carousel .item .card .card-body .card-price,
.collection .item .card .card-body .card-price {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  color: #3A332B;
}
@media (max-width: 991px) {
  .carousel .item .card .card-body .card-price,
  .collection .item .card .card-body .card-price {
    font-size: 0.875rem;
    text-align: center;
  }
}
.carousel .owl-nav,
.collection .owl-nav {
  opacity: 0;
}
@media (max-width: 1024px) {
  .carousel .owl-nav,
  .collection .owl-nav {
    opacity: 1;
  }
}
.carousel .owl-nav .owl-prev,
.collection .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: 40%;
}
.carousel .owl-nav .owl-prev span,
.collection .owl-nav .owl-prev span {
  display: none;
}
.carousel .owl-nav .owl-prev::before,
.collection .owl-nav .owl-prev::before {
  content: "";
  position: absolute;
  background-image: url("../images/svg/arrow-left.svg");
  width: 30px;
  height: 30px;
  left: 0;
}
@media (max-width: 450px) {
  .carousel .owl-nav .owl-prev,
  .collection .owl-nav .owl-prev {
    top: 30%;
  }
  .carousel .owl-nav .owl-prev::before,
  .collection .owl-nav .owl-prev::before {
    width: 34px;
    height: 34px;
    background-size: contain;
  }
}
.carousel .owl-nav .owl-next,
.collection .owl-nav .owl-next {
  position: absolute;
  left: auto;
  right: 0;
  top: 40%;
}
.carousel .owl-nav .owl-next span,
.collection .owl-nav .owl-next span {
  display: none;
}
.carousel .owl-nav .owl-next::before,
.collection .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  background-image: url("../images/svg/arrow-right.svg");
  width: 30px;
  height: 30px;
  left: auto;
  right: 0;
}
@media (max-width: 450px) {
  .carousel .owl-nav .owl-next,
  .collection .owl-nav .owl-next {
    top: 30%;
  }
  .carousel .owl-nav .owl-next::before,
  .collection .owl-nav .owl-next::before {
    width: 34px;
    height: 34px;
    background-size: contain;
  }
}
.carousel:hover .owl-nav,
.collection:hover .owl-nav {
  opacity: 1;
}

/*owl carousel end*/
/* insta carousel start*/
.strip-carousel {
  position: relative;
}
.strip-carousel .owl-nav {
  margin: 0;
}
.strip-carousel .owl-nav .owl-prev {
  left: 10px;
}
.strip-carousel .owl-nav .owl-next {
  left: auto;
  right: 10px;
}
.strip-carousel .owl-nav .owl-prev, .strip-carousel .owl-nav .owl-next {
  position: absolute;
  top: -16px;
}
@media (max-width: 991px) {
  .strip-carousel .owl-nav .owl-prev, .strip-carousel .owl-nav .owl-next {
    top: -18px;
  }
}
.strip-carousel .owl-nav .owl-prev span, .strip-carousel .owl-nav .owl-next span {
  font-size: 25px;
}
.strip-carousel .owl-nav .owl-prev:hover, .strip-carousel .owl-nav .owl-prev:active, .strip-carousel .owl-nav .owl-prev:focus, .strip-carousel .owl-nav .owl-prev:focus-visible, .strip-carousel .owl-nav .owl-next:hover, .strip-carousel .owl-nav .owl-next:active, .strip-carousel .owl-nav .owl-next:focus, .strip-carousel .owl-nav .owl-next:focus-visible {
  background-color: transparent;
}

.insta-carousel {
  max-width: 890px;
  margin: auto;
}
.insta-carousel .owl-item img {
  padding: 10% 0;
  width: 90% !important;
  margin-left: auto;
}
.insta-carousel .owl-item.center img {
  padding: 0px;
  width: 100% !important;
}
.insta-carousel .owl-item.center + .owl-item img {
  margin-left: 0;
}

/*insta carousel end*/
/* filter design start*/
.filters .count {
  position: relative;
  display: inline;
}
.filters .count .active {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #E03737;
  left: auto;
  right: -3px;
}

/* filter design end*/
/* product details start*/
.product-details .product-slider {
  gap: 12px;
  overflow-x: scroll;
  padding-right: 24px;
  width: 100%;
  height: 150px;
}
.product-details .product-slider::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.product-details .product-slider::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #EEE8E4;
}
.product-details .product-slider::-webkit-scrollbar-thumb {
  background-color: #706860;
}
@media (min-width: 992px) {
  .product-details .product-slider {
    width: 190px;
    /*height: 500px;*/
    height: 100%;
    max-height: 600px;
    overflow-x: auto;
    overflow-y: scroll;
  }
}
.product-details .product-slider img {
  width: 100%;
  display: block;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .product-details .product-slider img {
    width: auto;
  }
}
.product-details .product-slider img.active, .product-details .product-slider img:hover {
  opacity: 1;
  cursor: pointer;
}
.product-details .product-image {
  width: 100%;
  overflow: hidden;
  height: 600px;
}
@media (max-width: 991px) {
  .product-details .product-image {
    height: 400px;
  }
}
.product-details .product-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.product-details .product-description .product-color-variants .color-variants {
  width: 24px;
  height: 24px;
}
.product-details .product-description .product-color-variants .color-variants.active, .product-details .product-description .product-color-variants .color-variants:hover {
  border: 1px solid #706860;
  cursor: pointer;
}
.product-details .product-description .accordion-button {
  box-shadow: none !important;
  border: none !important;
}
.product-details .product-description .product-get-variants .get-variants {
  min-width: 30px;
  height: 30px;
  color: #706860;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
.product-details .product-description .product-get-variants .get-variants.active, .product-details .product-description .product-get-variants .get-variants:hover {
  background-color: #EEE8E4;
  color: #3A332B;
  cursor: pointer;
}
.product-details .product-description .quantity .quantity-wrapper {
  gap: 12px;
}
.product-details .product-description .quantity .quantity-wrapper input {
  min-width: 17px;
  max-width: 17px;
  font-size: 0.875rem;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  line-height: 1.25rem;
  background-color: #F8F6F4;
}
.product-details .product-description .quantity .quantity-wrapper input:hover, .product-details .product-description .quantity .quantity-wrapper input:active, .product-details .product-description .quantity .quantity-wrapper input:focus, .product-details .product-description .quantity .quantity-wrapper input:focus-visible {
  border: none;
  outline: none;
  box-shadow: none;
}
.product-details .product-description .quantity .quantity-wrapper input[type=number]::-webkit-inner-spin-button,
.product-details .product-description .quantity .quantity-wrapper input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-details .product-description .quantity .quantity-wrapper .count {
  border: 1px solid #CDCDCD;
  border-radius: 10px;
  padding: 8px 6px;
}
.product-details .product-description .quantity .quantity-wrapper .count .dec {
  height: 4px;
  display: grid;
  margin-bottom: 10px;
}
.product-details .product-description .quantity .quantity-wrapper .count .inc {
  height: 4px;
  display: grid;
}
.product-details .product-description .wishlist-btn {
  width: 34px;
  height: 34px;
  padding: 0;
}
@media (max-width: 991px) {
  .product-details .product-description .wishlist-btn {
    width: 30px;
    height: 30px;
  }
}
.product-details .product-description .wishlist-btn img {
  width: 24px;
}

/* product details end */
/* apply coupon */
.coupon-code .apply-coupon input {
  min-height: 48px;
}

/* page-accordion start */
.page-accordion .accordion-item {
  border: none;
  padding-top: 16px;
  background-color: transparent !important;
}
.page-accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border-bottom: 1px solid #CDCDCD;
  margin-bottom: 0 !important;
  padding: 16px 0;
}
.page-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none !important;
}
.page-accordion .accordion-item .accordion-header .accordion-button:after {
  background-image: url("../images/webp/minusCircle.webp");
}
.page-accordion .accordion-item .accordion-header .accordion-button.collapsed:after {
  background-image: url("../images/webp/plusCircle.webp");
}
.page-accordion .accordion-item .accordion-body {
  padding: 16px 0;
}
.page-accordion .accordion-item .accordion-body table td {
  padding: 10px !important;
  border: 1px solid #dee2e6;
}
.page-accordion .accordion-item .accordion-body table td p {
  margin: 0px;
}
.page-accordion .accordion-item:first-child {
  padding-top: 0;
}
.page-accordion .accordion-item:last-child .accordion-header .accordion-button {
  border: none;
}

/* page-accordion end */
.disabledField {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
}

.disableCountry {
  background-color: #e9ecef;
}

/* checkout page */
.checkout-section .checkout-form,
.account-details .checkout-form {
  display: flex;
  gap: 24px;
}
@media (max-width: 991px) {
  .checkout-section .checkout-form,
  .account-details .checkout-form {
    flex-wrap: wrap;
    gap: 0px;
  }
}
.checkout-section .checkout-form .form-field,
.account-details .checkout-form .form-field {
  width: 50%;
}
@media (max-width: 991px) {
  .checkout-section .checkout-form .form-field,
  .account-details .checkout-form .form-field {
    width: 100%;
  }
}
.checkout-section .checkout-form .form-field input.form-control.input-lg, .checkout-section .checkout-form .form-field select.form-control.input-lg,
.account-details .checkout-form .form-field input.form-control.input-lg,
.account-details .checkout-form .form-field select.form-control.input-lg {
  min-height: 48px !important;
}
.checkout-section .checkout-form .form-field input.form-control[type=number]::-webkit-inner-spin-button, .checkout-section .checkout-form .form-field input.form-control[type=number]::-webkit-outer-spin-button, .checkout-section .checkout-form .form-field select.form-control[type=number]::-webkit-inner-spin-button, .checkout-section .checkout-form .form-field select.form-control[type=number]::-webkit-outer-spin-button,
.account-details .checkout-form .form-field input.form-control[type=number]::-webkit-inner-spin-button,
.account-details .checkout-form .form-field input.form-control[type=number]::-webkit-outer-spin-button,
.account-details .checkout-form .form-field select.form-control[type=number]::-webkit-inner-spin-button,
.account-details .checkout-form .form-field select.form-control[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkout-section .checkout-form .form-field select.form-control.input-lg,
.account-details .checkout-form .form-field select.form-control.input-lg {
  background-image: url(../images/icon/select-dropdown.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  padding-right: 40px;
}
.checkout-section .your-order,
.account-details .your-order {
  padding-bottom: 31px;
}
@media (max-width: 991px) {
  .checkout-section .your-order,
  .account-details .your-order {
    padding-bottom: 0px;
  }
}
.checkout-section .checkout-page-details,
.account-details .checkout-page-details {
  border: 1px solid #CDCDCD;
  padding: 16px;
}
.checkout-section .checkout-page-details .product-mini-cart-wrapper .product-mini-cart-img,
.account-details .checkout-page-details .product-mini-cart-wrapper .product-mini-cart-img {
  min-width: 104;
  min-height: 139px;
  max-width: 104px;
  max-height: 139px;
}
.checkout-section .checkout-page-details .product-mini-cart-wrapper .product-mini-cart-img img,
.account-details .checkout-page-details .product-mini-cart-wrapper .product-mini-cart-img img {
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.checkout-section .checkout-page-details .checout-details,
.account-details .checkout-page-details .checout-details {
  border-top: 1px solid #CDCDCD;
}

.cart_products {
  max-height: 300px;
  overflow-y: scroll;
}
.cart_products::-webkit-scrollbar {
  width: 1px;
}

/* user profile page */
.profile-section {
  /* order page scss */
  /* billing page scss */
  /* download page scss */
  /* account page scss  */
  /* coupon page scss  */
}
.profile-section .profile {
  border-right: 1px solid #CDCDCD;
}
@media (max-width: 991px) {
  .profile-section .profile {
    border: 0;
  }
}
.profile-section .profile .profile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-section .profile .profile-menu li {
  padding-bottom: 24px;
}
.profile-section .profile .profile-menu li a {
  font-size: 1rem;
  font-weight: 500;
  color: #706860;
  text-decoration: none;
}
.profile-section .profile .profile-menu li.active a {
  color: #3A332B;
}
.profile-section .profile .profile-menu li:last-child {
  padding-bottom: 0;
}
.profile-section .profile-order {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .profile-section .profile-order {
    padding-left: 12px;
  }
}
.profile-section .profile-order .product-mini-cart-wrapper {
  padding-top: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #CDCDCD;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order {
  position: relative;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #706860;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span {
  text-align: center;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #706860;
  background-color: #ffffff;
  position: relative;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span.orderd-date:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: auto;
  right: -15px;
  border-radius: 50%;
  border: 4px solid #279C25;
  background: #ffffff;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span.delivered-date:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 2px;
  left: -15px;
  border-radius: 50%;
  border: 4px solid #CDCDCD;
  background: #ffffff;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking .process-desktop {
  border-bottom: 2px dashed #CDCDCD;
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  z-index: -2;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.recent-completed p {
  color: #3A332B;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed p {
  color: #3A332B;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop {
  border-bottom: 2px dashed #279C25;
  position: absolute;
  width: 0;
  bottom: 10px;
  left: 0;
  z-index: -1;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop.ordered {
  width: 25%;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop.processed {
  width: 50%;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop.prepared {
  width: 75%;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop.shiped {
  width: 100%;
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-desktop.delivered {
  width: 100%;
}
@media (min-width: 992px) {
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile {
    display: none;
  }
}
.profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .delivered-date:before {
  border: 4px solid #279C25;
}
@media (max-width: 991px) {
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking {
    padding-left: 30px;
    padding-bottom: 24px;
    position: relative;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking:last-child {
    padding-bottom: 0;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span {
    text-align: left;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span.orderd-date::before {
    left: -30px;
    top: -20px;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking span.delivered-date::before {
    left: -30px;
    top: 5px;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking .process-desktop {
    display: none;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking .process-mobile:before {
    position: absolute;
    content: "";
    left: 7px;
    top: 0;
    height: 100%;
    width: 0px;
    border-left: 2px dashed #a37f7f;
    z-index: -2;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.recent-completed .process-mobile:before {
    position: absolute;
    content: "";
    left: 7px;
    top: 0;
    height: 100%;
    width: 0px;
    border-left: 2px dashed #279C25;
    z-index: -1;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile:before {
    position: absolute;
    content: "";
    left: 7px;
    top: 0;
    height: 100%;
    width: 0px;
    border-left: 2px dashed #279C25;
    z-index: -1;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile.ordered {
    height: 25%;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile.processed {
    height: 50%;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile.prepared {
    height: 75%;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile.shiped {
    height: 100%;
  }
  .profile-section .profile-order .product-mini-cart-wrapper .track-order .order-tracking.completed .process-mobile.delivered {
    height: 100%;
  }
}
.profile-section .profile-order .product-mini-cart-wrapper:first-child {
  padding-top: 0px;
}
.profile-section .profile-order .product-mini-cart-wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.profile-section .billing-details {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .profile-section .billing-details {
    padding-left: 12px;
  }
}
.profile-section .billing-details .billing {
  border: 1px solid #CDCDCD;
  padding: 24px;
}
.profile-section .download-details {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .profile-section .download-details {
    padding-left: 12px;
  }
}
.profile-section .download-details .download-wrapper {
  border: 1px solid #CDCDCD;
  padding: 24px;
  width: calc(50% - 12px);
}
@media (max-width: 991px) {
  .profile-section .download-details .download-wrapper {
    width: 100%;
  }
}
.profile-section .download-details .download-wrapper .download-summary {
  border-top: 1px solid #CDCDCD;
}
.profile-section .account-details {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .profile-section .account-details {
    padding-left: 12px;
  }
}
.profile-section .coupon-details {
  padding-left: 80px;
}
@media (max-width: 991px) {
  .profile-section .coupon-details {
    padding-left: 12px;
  }
}
.profile-section .coupon-details .coupon-filter .nav-tabs {
  border: none;
}
.profile-section .coupon-details .coupon-filter .nav-tabs .nav-link {
  border: none;
}
.profile-section .coupon-details .coupon-filter .nav-tabs .nav-link:hover, .profile-section .coupon-details .coupon-filter .nav-tabs .nav-link.active {
  background-color: #3A332B !important;
  color: #CDCDCD !important;
}
.profile-section .coupon-details .coupon-filter-content .coupons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper {
  width: calc(50% - 12px);
}
@media (max-width: 991px) {
  .profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper {
    width: 100%;
  }
}
.profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper .coupon {
  border: 1px solid #CDCDCD;
}
.profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper .coupon .coupon-img {
  border-right: 1px dashed #CDCDCD;
  position: relative;
}
.profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper .coupon .coupon-img::before {
  content: "";
  position: absolute;
  background-image: url(../images/webp/scissor.webp);
  width: 12px;
  height: 14px;
  left: auto;
  right: -6px;
}
.profile-section .coupon-details .coupon-filter-content .coupons .coupon-wrapper .coupon .coupon-img img {
  width: 75px;
}

/********Header Css starts here*******/
/* custom drop down scss start */
@media (max-width: 991px) {
  .main-logo {
    width: 100px;
  }
}

.custom-dropdown .dropdown-toggle::after {
  content: unset;
}
.custom-dropdown .dropdown-menu {
  right: 0 !important;
  min-width: 330px;
  width: 330px;
}
.custom-dropdown .dropdown-menu:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 8px;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 0;
  border-top: 1px solid #CDCDCD;
  border-left: 1px solid #CDCDCD;
}
.custom-dropdown .dropdown-menu .dropdown-menu-inner a.dropdown-item {
  color: #3A332B;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1rem;
  padding-left: 24px;
  padding-right: 24px;
}
.custom-dropdown .dropdown-menu .dropdown-menu-inner a.dropdown-item:hover, .custom-dropdown .dropdown-menu .dropdown-menu-inner a.dropdown-item:focus, .custom-dropdown .dropdown-menu .dropdown-menu-inner a.dropdown-item:active, .custom-dropdown .dropdown-menu .dropdown-menu-inner a.dropdown-item.active {
  background-color: #EEE8E4;
}
.custom-dropdown.shopping-wrapper .shopping-wrapper-inner {
  padding: 30px 24px;
  min-width: 500px;
  width: 500px;
}
.custom-dropdown.shopping-wrapper .shopping-wrapper-inner .product-mini-cart-img img {
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .custom-dropdown.shopping-wrapper .shopping-wrapper-inner {
    padding: 16px 12px;
    min-width: 100%;
    width: 100%;
    transform: unset !important;
    left: 0 !important;
    top: 76px !important;
    right: auto !important;
    margin: auto !important;
    position: fixed !important;
  }
}
@media (max-width: 420px) {
  .custom-dropdown.shopping-wrapper .shopping-wrapper-inner {
    padding: 16px 12px;
    min-width: 320px;
    width: 100%;
    height: 100%;
  }
}

/* custom drop down scss end */
/* left navigation start  */
.offcanvas {
  background-color: #F8F6F4;
}

.navigation-left {
  background-repeat: no-repeat;
  background-size: 80%;
  padding: 65px 36px;
}
.navigation-left .offcanvas-body::-webkit-scrollbar {
  width: 0px;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item {
  font-size: 1rem;
  font-weight: 500;
  color: #3A332B;
  padding-bottom: 24px;
  text-transform: uppercase;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item:hover {
  color: rgba(58, 51, 43, 0.7);
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item.menu-item-has-children img {
  transform: rotate(180deg);
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item.menu-item-has-children.open img {
  transform: rotate(0deg);
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item .dropdown-item {
  color: #3A332B;
  font-weight: 500;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item .sub-menu {
  color: #706860;
  font-size: 0.875rem;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item .sub-menu li {
  padding-bottom: 0;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item .sub-menu li.menu-item a {
  margin-top: 12px;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #706860;
}
.navigation-left .offcanvas-body .left-menu .menu-data .menu-item .sub-menu li.menu-item a:hover {
  color: rgba(112, 104, 96, 0.7);
}
.navigation-left.login-right {
  padding: 36px;
  min-width: 470px;
}
@media (max-width: 575px) {
  .navigation-left.login-right {
    padding: 16px;
    min-width: 100%;
    width: 100%;
  }
}
.navigation-left.login-right.size-wrap {
  min-width: 535px;
}
@media (max-width: 575px) {
  .navigation-left.login-right.size-wrap {
    padding: 16px;
    min-width: 100%;
    width: 100%;
  }
}
.navigation-left.login-right.size-wrap .custom-dropdown-data {
  flex: 1 1 auto;
}
.navigation-left.login-right.size-wrap .custom-dropdown-data .nav-dropdown {
  border: 1px solid #CDCDCD;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 10px;
}
.navigation-left.login-right.size-wrap .custom-dropdown-data .nav-dropdown .dropdown {
  padding: 0;
  width: 180px;
}
@media (max-width: 991px) {
  .navigation-left.login-right.size-wrap .custom-dropdown-data .nav-dropdown .dropdown {
    width: 95% !important;
  }
}
.navigation-left.login-right.size-wrap .custom-dropdown-data .nav-dropdown .dropdown.front-nack {
  width: 95%;
}
.navigation-left.login-right.size-wrap .custom-dropdown-data .nav-dropdown .dropdown ul.dropdown-menu {
  width: 223px;
  padding: 0;
  margin-top: 40px !important;
  margin-left: -11px !important;
  transform: unset !important;
  cursor: pointer;
}
.navigation-left.login-right.size-wrap .front-nack-demo {
  background-color: #EEE8E4;
}
.navigation-left.login-right.filter .offcanvas-header {
  padding: 36px 36px 0 36px;
}
.navigation-left.login-right.filter .accordion {
  padding: 12px 36px;
}
.navigation-left.login-right.filter .btns {
  padding: 12px 36px;
  box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.1);
}

.sortby-dropdown ul.nav-dropdown li.dropdown a.nav-link.dropdown-toggle,
.custom-dropdown-data ul.nav-dropdown li.dropdown a.nav-link.dropdown-toggle {
  position: relative;
  padding: 0;
}
.sortby-dropdown ul.nav-dropdown li.dropdown a.nav-link.dropdown-toggle::after,
.custom-dropdown-data ul.nav-dropdown li.dropdown a.nav-link.dropdown-toggle::after {
  background-image: url(../images/icon/arrow-bottom.png) !important;
  border: 0;
  content: "";
  position: absolute;
  top: -2px;
  width: 20px;
  height: 20px;
  right: -21px;
}
.sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu {
  width: 244px;
  padding: 0;
  margin-top: 10px !important;
  margin-left: 20px !important;
}
.sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu li,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu li {
  padding: 12px;
  cursor: pointer;
}
.sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu li:hover, .sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu li:active, .sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu li:focus, .sortby-dropdown ul.nav-dropdown li.dropdown ul.dropdown-menu li.active,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu li:hover,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu li:active,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu li:focus,
.custom-dropdown-data ul.nav-dropdown li.dropdown ul.dropdown-menu li.active {
  background-color: #EEE8E4;
}

/* left navigation end*/
/* profile user wrapper */
.user-wrapper ul.dropdown-menu li a img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

/******product-mini-card*******/
.product-mini-cart-wrapper .product-mini-cart-img {
  min-width: 110px;
  min-height: 145px;
  max-width: 110px;
  max-height: 145px;
}
.product-mini-cart-wrapper .product-mini-cart-img .cart-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

/********Header Css ends here********/
.login-details .eye-visible,
.login-details .eye-visible1 {
  bottom: 12px;
  right: 10px;
}

.crtpass .eye-visible2,
.crtpass .eye-visible3,
.crtpass .eye-visible4,
.crtpass .eye-visible5 {
  position: absolute;
  bottom: 12px;
  right: 10px;
}

/*********Footer starts here********/
.footer-wrap .footer-top ul li {
  position: relative;
  padding: 0 8px;
}
.footer-wrap .footer-top ul li:after {
  position: absolute;
  content: "";
  background-color: #706860;
  width: 1px;
  height: 15px;
  top: 5px;
  right: -1px;
}
.footer-wrap .footer-top ul li:last-child:after {
  content: unset;
}
.footer-wrap .footer-top ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: #3A332B;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .footer-wrap .footer-top ul {
    margin-top: 10px !important;
  }
  .footer-wrap .footer-top ul li {
    display: inline-block;
    margin-bottom: 0px;
  }
  .footer-wrap .footer-top ul li a {
    margin-bottom: 0px;
  }
  .footer-wrap .footer-top ul .text-lg {
    font-size: 1rem;
  }
}
.footer-wrap .bg-footer {
  padding: 20px 40px;
}
@media (max-width: 991px) {
  .footer-wrap .bg-footer {
    padding: 0px 10px;
  }
  .footer-wrap .bg-footer .text-xl {
    font-size: 1.125rem;
  }
  .footer-wrap .bg-footer .text-lg {
    font-size: 1rem;
  }
  .footer-wrap .bg-footer .separator {
    display: none;
  }
  .footer-wrap .bg-footer .footer-data2 .img-fluid {
    width: 46px;
  }
}
@media (max-width: 991px) {
  .footer-wrap .bg-footer .footer-data1 .my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}
.footer-wrap .bg-footer .footer-data2.border-left-right {
  border-left: 1px solid #CDCDCD;
  border-right: 1px solid #CDCDCD;
}
@media (max-width: 991px) {
  .footer-wrap .bg-footer .footer-data2.border-left-right {
    border: 0;
    border-top: 1px solid #CDCDCD;
    padding-top: 16px;
  }
}
.footer-wrap .bg-footer .footer-data3 .email-input.w-255 {
  width: 255px;
  min-width: 255px;
}
.footer-wrap .bg-footer .footer-data3 .email-input input {
  padding-right: 40px;
  z-index: 1;
}
.footer-wrap .bg-footer .footer-data3 .email-input button {
  right: 10px;
  z-index: 9;
  width: 30px;
  height: 25px;
}
.footer-wrap .bg-footer .footer-data3 .email-input button:focus:not(:focus-visible), .footer-wrap .bg-footer .footer-data3 .email-input button:focus {
  border-color: transparent;
  z-index: 1;
}
@media (max-width: 1440px) {
  .footer-wrap .bg-footer .footer-data3 .mail-link {
    word-break: break-all;
  }
}
.footer-wrap .footer-top a,
.footer-wrap .footer-data2 a {
  position: relative;
}
.footer-wrap .footer-top a::after,
.footer-wrap .footer-data2 a::after {
  display: block;
  content: "";
  border-bottom: solid 1px #3A332B;
  transform: scaleX(0);
  transition: transform 500ms ease-in-out;
  transform-origin: 0% 50%;
}
.footer-wrap .footer-top a:hover:after,
.footer-wrap .footer-data2 a:hover:after {
  transform: scaleX(1);
}

.w-290 {
  width: 290px;
  min-width: 290px;
}
@media (max-width: 1200px) {
  .w-290 {
    width: 230px;
    min-width: 230px;
  }
}

.w-30 {
  width: 30px;
}

.w-20 {
  width: 20px;
}

:focus-visible {
  outline: unset;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.p-36 {
  padding: 36px !important;
}

.navigation-left .form-control {
  border-radius: 0;
  min-height: 48px !important;
}
.navigation-left select.form-control {
  background-image: url(../images/icon/select-dropdown.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  padding-right: 40px;
}
.navigation-left textarea.form-control {
  min-height: 200px !important;
}

.form-control:focus, .form-control:focus-visible, .btn:focus, .btn:focus-visible {
  border-color: #CDCDCD;
  outline: 0;
  box-shadow: none;
}

.form-check .form-check-input {
  color: #706860;
  border: 1px solid #706860;
}
.form-check .form-check-input:checked {
  background-image: url(../images/icon/checked.png) !important;
  background-size: 70% 60%;
  background-position: center;
  background-color: #ffffff;
  border: 1px solid #706860;
}
.form-check .form-check-input:active {
  filter: none;
}
.form-check .form-check-input:focus, .form-check .form-check-input:focus-visible, .form-check .form-check-input:focus-within {
  outline: none;
  box-shadow: none;
}

.bottom-0 {
  bottom: 0 !important;
}

/********Accordion starts here***********/
.accordion.accordion1 .accordion-item {
  background-color: transparent !important;
}
.accordion.accordion1 .accordion-item .accordion-button {
  background-color: transparent;
}
.accordion.accordion1 .accordion-item .accordion-button:focus {
  box-shadow: none !important;
}
.accordion.accordion1 .accordion-item .accordion-button:after {
  content: unset;
}
.accordion.accordion1 .accordion-item .accordion-button img.accordion-arrow {
  margin-top: -5px;
  transition: 0.3s all;
}
.accordion.accordion1 .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion.accordion1 .accordion-item .accordion-button:not(.collapsed) img.accordion-arrow {
  transform: rotate(180deg);
  margin-top: 0;
  transition: 0.3s all;
}

.user-wrapper .dropdown-menu-inner.dropdown-item:focus, .user-wrapper .dropdown-menu-inner.dropdown-item:hover, .user-wrapper .dropdown-menu-inner.dropdown-item:active {
  background-color: transparent;
  color: #3A332B;
}
.user-wrapper .dropdown-menu-inner .dropdown-item:focus, .user-wrapper .dropdown-menu-inner .dropdown-item:hover, .user-wrapper .dropdown-menu-inner .dropdown-item:active {
  background-color: #EEE8E4;
  color: #3A332B;
}

.checkout-section .btn:before {
  display: none;
}

.loader-wrapper {
  display: none;
}
.loader-wrapper.show {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.loader-wrapper.show .loader {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #EACAC2) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}

@keyframes l4 {
  to {
    transform: rotate(1turn);
  }
}
.extra-options span {
  margin-right: 4px;
  margin-left: 7px;
  border-left: 1px solid #CDCDCD;
}

.success-model {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.success-model .modal-content {
  padding: 60px;
}
@media (max-width: 767px) {
  .success-model .modal-content {
    padding: 20px;
  }
}

.error-section {
  padding: 70px 0;
}
.error-section .error-wrapper {
  max-width: 330px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.mini-cart-empty {
  padding: 20px;
  text-align: center;
}
.mini-cart-empty .error-wrapper img {
  width: 150px;
}

.add-to-cart-btn.out-of-stock {
  cursor: auto;
}

table th {
  color: #706860;
  font-weight: 500;
  border: 0px solid transparent !important;
  padding-left: 0 !important;
  padding-right: 40px !important;
}
table td {
  color: #3A332B;
  font-weight: 500;
  border: 0px solid transparent;
  text-wrap: nowrap;
  padding-left: 0 !important;
}
table td.badge p {
  border-radius: 30px;
  padding: 6px 8px !important;
  background-color: #EEE8E4;
  margin-bottom: 0px;
}

.login-details table td {
  border: 1px solid #3A332B;
  padding: 10px !important;
}

.search-wrapper .search-input {
  position: absolute;
  width: 250px;
  right: -3px;
  top: -1px;
  z-index: 1;
  padding-right: 50px;
  display: none;
}
.search-wrapper .search-input button {
  position: absolute;
  z-index: 9;
  border: none;
  background: none;
  right: -3px;
  top: 0px;
}
@media (max-width: 1199px) {
  .search-wrapper .search-input {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #F8F6F4;
    top: 112px;
    left: 0;
    padding: 0px 0px 15px 0;
  }
  .search-wrapper .search-input form {
    position: relative;
  }
  .search-wrapper .search-input form input {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0 !important;
    padding: 6px 50px 6px 12px;
  }
  .search-wrapper .search-input form button {
    top: 8px;
  }
}
@media (max-width: 991px) {
  .search-wrapper .search-input {
    top: 78px;
  }
}
@media (max-width: 575px) {
  .search-wrapper .search-input {
    top: 78px !important;
  }
  .search-wrapper .search-input button {
    top: 10px;
  }
}

.product-detail-banner .banner-slider .slider {
  width: 100%;
  float: left;
}
.product-detail-banner .banner-slider .slider.slider-for {
  max-width: 80%;
}
.product-detail-banner .banner-slider .slider.slider-for .slider-banner-image {
  height: calc(100vh - 115px);
}
.product-detail-banner .banner-slider .slider.slider-for .slider-banner-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-banner .banner-slider .slider.slider-for .slick-arrow {
  display: none !important;
}
.product-detail-banner .banner-slider .slider.slider-nav {
  max-width: 20%;
  overflow: hidden;
  padding: 35px 35px 30px 0;
  position: relative;
}
.product-detail-banner .banner-slider .slider.slider-nav .slick-slide.slick-current .thumbnail-image .thumbImg img, .product-detail-banner .banner-slider .slider.slider-nav .slick-slide:hover .thumbnail-image .thumbImg img {
  opacity: 1;
}
.product-detail-banner .banner-slider .slider.slider-nav .thumbnail-image .thumbImg {
  width: auto;
  max-width: 110px;
  height: 110px;
  margin: 0 auto;
}
.product-detail-banner .banner-slider .slider.slider-nav .thumbnail-image .thumbImg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .product-detail-banner .banner-slider .slider.slider-nav .thumbnail-image .thumbImg {
    height: auto;
    margin: 0;
    background-color: transparent;
  }
}
.product-detail-banner .banner-slider .slider.slider-nav .slick-arrow {
  background-image: url(../images/icon/arrow-bottom.png);
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  position: absolute;
  background-color: #EEE8E4;
  z-index: 99;
  width: calc(100% - 35px);
  height: 30px;
}
.product-detail-banner .banner-slider .slider.slider-nav .slick-arrow.slick-prev {
  transform: rotate(180deg);
  top: 0;
}
.product-detail-banner .banner-slider .slider.slider-nav .slick-arrow.slick-next {
  top: auto;
}
.product-detail-banner .banner-slider .slider.slider-nav .slick-arrow:hover {
  background-color: #D8CEC1;
}
@media (max-width: 991px) {
  .product-detail-banner .banner-slider {
    display: flex;
    flex-direction: column-reverse;
  }
  .product-detail-banner .banner-slider .slider.slider-for {
    max-width: 100% !important;
    float: none;
    padding-right: 0;
  }
  .product-detail-banner .banner-slider .slider.slider-for .slider-banner-image {
    height: 400px;
  }
  .product-detail-banner .banner-slider .slider.slider-nav {
    max-width: 100% !important;
    float: none;
    height: auto;
    padding: 0;
  }
  .product-detail-banner .banner-slider .slider.slider-nav.thumb-image {
    padding: 10px 30px 0;
  }
  .product-detail-banner .banner-slider .slider.slider-nav .slick-arrow {
    width: 30px;
    height: 90%;
    background-image: url(../images/webp/left-angle.webp);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  .product-detail-banner .banner-slider .slider.slider-nav .slick-arrow.slick-prev {
    left: 0;
    right: unset;
    top: 10px;
  }
  .product-detail-banner .banner-slider .slider.slider-nav .slick-arrow.slick-next {
    top: 9px;
    transform: rotate(0deg);
    left: unset;
    right: 0;
  }
}

.kapas-bg {
  background-repeat: no-repeat;
  background-size: cover;
}
.kapas-bg .image-wrapper {
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.kapas-bg .image-wrapper img {
  width: 85%;
  border-radius: 180px 180px 0 0;
}
.kapas-bg .kapas-main {
  max-width: 55%;
}
.kapas-bg .collection-title {
  margin-top: -25px;
}
.kapas-bg .collection-decs {
  width: 75%;
}
@media (max-width: 767px) {
  .kapas-bg {
    background-position: 50%;
  }
  .kapas-bg .kapas-main {
    overflow: hidden;
    max-width: 220px;
    width: 220px;
    text-align: center;
    margin: 0 auto;
  }
  .kapas-bg .kapas-main .collection-title {
    margin-top: -15px;
    text-align: left;
  }
  .kapas-bg .collection-decs {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .kapas-bg .explore {
    text-align: center;
  }
}

.select_proudct_image {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ffffff;
}

#sizeSection table tr:last-child td {
  border-bottom: 1px solid #dee2e6;
}

p {
  font-family: inherit;
}

@keyframes skeleton {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.skeleton {
  aspect-ratio: 2/3;
  background-color: #e0e0e0;
  background-image: linear-gradient(105deg, transparent 0%, transparent 40%, #f5f5f5 50%, transparent 60%, transparent 100%);
  background-size: 200% auto;
  background-repeat: no-repeat;
  animation: skeleton 0.3s ease-in-out infinite;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}/*# sourceMappingURL=style.css.map */