@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css");

@font-face {
  font-family: "Stepp ITC Std Bold";
  src: url("../fonts/28141adf98552b2bdbd437fac0863957.eot");
  src: url("../fonts/28141adf98552b2bdbd437fac0863957.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/28141adf98552b2bdbd437fac0863957.woff") format("woff"),
    url("../fonts/28141adf98552b2bdbd437fac0863957.woff2") format("woff2"),
    url("../fonts/28141adf98552b2bdbd437fac0863957.ttf") format("truetype"),
    url("../fonts/28141adf98552b2bdbd437fac0863957.svg#Stepp ITC Std Bold")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #fdf1f5;
  --white: #ffffff;
  --gray: #f5edf0;
  --brown: #d0bfb5;
  --black: #222222;
  --footer-bg: #1e141f;

  --source: "Source Sans 3", sans-serif;
  --stepp: "Stepp ITC Std Bold", sans-serif;
}

/* ::-webkit-scrollbar-thumb {
    background: #596b73;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
} */

.custom-backdrop {
  z-index: 100 !important;
}

/* ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #c3ced3;
} */

body {
  font-family: var(--source);
  font-optical-sizing: auto;
  color: var(--black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.animation {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 0.5s linear;
}

.animation.ani {
  opacity: 1;
  transform: translate(0, 0);
}

.container {
  max-width: 1580px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 20px 0px;
  font-family: var(--stepp);
  font-weight: 700;
}

a {
  color: #000;
}

a:hover {
  color: #ee5d90;
}

h1,
.h1 {
  font-size: 56px;
}

h2,
.h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

a {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn {
  color: var(--black);
  overflow: hidden;
  border: 1px solid var(--black);
  padding: 12px 25px;
  min-width: 135px;
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--source);
  z-index: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;

  &:before {
    content: "";
    left: -10%;
    right: -10%;
    top: -2px;
    bottom: -2px;
    width: 120%;
    position: absolute;
    display: block !important;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-clip-path: polygon(
      91% 0,
      100% 50%,
      91% 100%,
      0% 100%,
      8% 50%,
      0% 0%
    );
    z-index: -1;
    clip-path: polygon(91% 0, 100% 50%, 91% 100%, 0% 100%, 8% 50%, 0% 0%);
    background-color: var(--black);
    -webkit-transition: transform 0.35s ease-out;
    transition: transform 0.35s ease-out;
  }

  span {
    z-index: 1;
    position: relative;
  }

  &:hover {
    background: var(--black);
    color: var(--white);
  }

  &:hover:before {
    left: -10%;
    right: -10%;
    top: -2px;
    bottom: -2px;
    width: 120%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background: var(--black);
  border-color: var(--black);
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none;
}

.form-check-input {
  margin-top: 0.2rem;
}

.text-btn {
  text-transform: uppercase;
  font-family: var(--stepp);
  color: var(--black);
  text-decoration: none;
  position: relative;

  &:before {
    content: "";
    width: calc(100% - 20px);
    height: 2px;
    background: var(--black);
    position: absolute;
    bottom: 0px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }

  &:hover {
    color: var(--black);
    text-decoration: none;
  }

  &:hover:before {
    width: calc(80% - 20px);
  }
}

header {
  padding: 0px 0px 12px;
  /* position: sticky;
    top: 0; */
  z-index: 10;
  background: #fff;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.right-head {
  display: flex;
  align-items: center;
  position: relative;

  .mega-menu {
    left: 50%;
  }

  .search-and-filter {
    display: flex;
    gap: 10px;

    input {
      border: 1px solid #dbdbdb;
      min-width: 230px;
      width: auto;
    }

    .searchby-design {
      min-width: 200px;
      border: 1px solid #dbdbdb;
    }
  }
}

.navigation {
  ul {
    padding: 0px;
    display: flex;
    margin: 0px;

    li {
      list-style: none;

      a {
        padding: 10px 20px;
        display: block;
        position: relative;
        font-size: 16px;
        text-transform: uppercase;

        &:after {
          content: "";
          position: absolute;
          right: 20px;
          bottom: 10px;
          width: 0;
          border-bottom: 1px solid;
          transition: 0.4s;
        }

        &.active,
        &:hover {
          text-decoration: none;
          color: #ee5d90;

          &:after {
            width: calc(100% - 40px);
            left: 20px;
          }
        }
      }
    }
  }
}

.account-dropdawn {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  width: 245px;
  right: 35px;
  z-index: 15;
  padding: 15px 10px;
  border-radius: 0px 0px 10px 10px;
  border: 1px solid #f9f3f1;
  box-shadow: 0px 4px 20px 0px #0000000f;
  background: #fff;
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  -ms-border-radius: 0px 0px 10px 10px;
  -o-border-radius: 0px 0px 10px 10px;

  ul {
    padding: 0px;
    margin: 0px -10px 20px;

    li {
      list-style: none;

      a {
        padding: 10px 15px;
        display: block;
        position: relative;
        font-size: 16px;

        &:before {
          position: absolute;
          width: 3px;
          height: 100%;
          background: #ee5d90;
          content: "";
          left: 0px;
          top: 0px;
          opacity: 0;
        }

        img {
          margin-right: 8px;
        }
      }

      &:hover {
        background: #fceff4;

        a {
          text-decoration: none;
          color: #222222;

          &::before {
            opacity: 1;
          }
        }
      }
    }
  }

  .btn {
    width: 100%;
    font-weight: 300;

    img {
      margin-right: 5px;
    }

    &:hover {
      img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
      }
    }
  }
}

.myaccount-menu:hover .account-dropdawn {
  opacity: 1;
  visibility: visible;
}

.signup-btn {
  display: flex;
  align-items: center;
  margin-left: 30px;
  line-height: 20px;
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;

  img {
    margin-right: 10px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  }

  strong {
    display: block;
    font-weight: 600;
  }

  &:hover {
    text-decoration: none;
    color: #ee5d90;
  }
}

.cart-info,
.wishlist {
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border: 1px solid #dbdbdb;
  padding: 4px 15px;
  display: inline-block;
  margin-left: 20px;
  font-size: 15px;

  &:hover {
    text-decoration: none;
    color: var(--black);
  }
}

.cart-info img,
.wishlist img {
  margin-right: 7px;
}

.cart-info {
  display: flex;
  position: relative;

  .order-total-number {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    visibility: hidden;
    transition: all 250ms ease-in;
    line-height: 20px;
    font-weight: bold;
    height: 20px;
    max-height: 0px;

    &.current {
      visibility: visible;
      max-height: 20px;
    }
  }

  .checkout-count {
    background: #bd161c;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    min-width: 18px;
    margin-left: 5px;
    height: 18px;
    padding: 0px 2px;
    line-height: 20px;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

.wishlist {
  margin-right: 10px;
  background: #e1578a1a;
  border-color: #f1d6e0;
}

.header-bottom {
  border-top: 1px solid #eeeeee;
  box-shadow: 0px 4px 6px 0px #0000000f;
  margin-top: 0px;
  margin-bottom: -12px;
}

.right-bottom-menu,
.left-browse-menu {
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;

  li {
    list-style: none;

    a {
      padding: 12px 15px;
      color: var(--black);
      font-size: 15px;
      text-transform: uppercase;
      display: inline-block;
      white-space: nowrap;

      img {
        vertical-align: -2px;
        margin-right: 3px;
      }

      span {
        font-weight: 600;
        display: inline-block;
        padding: 0px 10px;
        margin-left: 3px;
        background: #eeeeee;
        border-radius: 15px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
      }

      &:hover {
        text-decoration: none;
      }
    }
  }
}

.left-browse-menu {
  width: calc(100% - 315px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;

  &::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  li a img {
    vertical-align: -5px;
  }

  li {
    a {
      position: relative;

      &:after {
        content: "";
        position: absolute;
        right: 15px;
        bottom: 10px;
        width: 0;
        border-bottom: 1px solid;
        transition: 0.4s;
      }

      &.active,
      &:hover {
        text-decoration: none;
        color: #ee5d90;

        &:after {
          width: calc(100% - 30px);
          left: 15px;
        }
      }
    }
  }
}

.right-bottom-menu {
  position: relative;

  &::before {
    width: 24px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0px;
    left: -24px;
    background: url(../images/scrolling_shade.png) repeat-y;
  }
}

.top-slider {
  .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 180px 0px 200px;
  }

  .header-content {
    max-width: 525px;
    margin-left: 200px;
  }

  .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }

  .owl-item.active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }

  .owl-item.active .btn {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
  }

  .owl-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 1580px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);

    .owl-prev {
      background: url(../images/left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 20px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }

    .owl-next {
      background: url(../images/left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      right: 20px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }
  }

  .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);

    .owl-dot {
      width: 12px;
      height: 12px;
      margin: 0px 2px;
      border: none;
      outline: none;
      background: #f6ddde;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;

      &.active,
      &:hover {
        background: #ee5d90;
      }

      span {
        display: none;
      }
    }
  }
}

.services-bar {
  background: var(--primary);
  padding: 25px 0px;

  .col-md-3 {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;

    &:before {
      content: "";
      background: url(../images/star.svg) no-repeat;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      margin-top: -10px;
      right: -10px;
    }

    &:last-of-type:before {
      display: none;
    }

    img {
      margin-right: 15px;
    }

    h5 {
      text-transform: uppercase;
      margin: 0px;
    }
  }
}

.product-sec {
  margin: 80px 7.5px;

  .container {
    max-width: 100%;
  }

  .col-6 {
    padding: 0px 7.5px;

    .col-6 .item:first-of-type {
      margin-bottom: 15px;
    }

    .row {
      margin: 0px -7.5px;
    }
  }

  .item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;

    &.large-item {
      height: 100%;
    }

    h2,
    h3 {
      margin: 30px 0px 5px;
    }

    p {
      font-size: 16px;
      line-height: 22px;
    }

    > img {
      width: 100%;
      max-height: 680px;
      object-fit: cover;
      -webkit-transform: scale(1.03);
      transform: scale(1.03);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover img {
      -webkit-transform: scale(1);
      transform: scale(1);
    }

    &.mid-item {
      min-height: 400px;

      .caption {
        max-width: 285px;
      }
    }

    &.small-item {
      min-height: 270px;

      .caption {
        max-width: 250px;
      }
    }
  }

  .caption {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 0px 15px;
    width: 100%;
    max-width: 680px;
  }
}

.wholesale-box {
  background: var(--gray);
  margin-bottom: 80px;

  .col-md-5 div {
    padding-left: 80px;
  }
}

.sale-sec {
  background-color: var(--brown);
  background-repeat: no-repeat;
  background-position: center center;

  .row {
    min-height: 550px;

    h3,
    p {
      max-width: 510px;
    }
  }
}

.category-block {
  margin: 80px auto;

  ul {
    display: flex;
    padding: 0px;

    li {
      list-style: none;
      width: calc(100% / 4 - 15px);
      margin-left: 20px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;

      &:first-of-type {
        margin-left: 0px;
      }

      img {
        object-fit: cover;
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        transform-origin: 0 60%;
        -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
        transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      }

      &:hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
      }
    }
  }
}

.btn.white {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -90px;
  min-width: 180px;
  background: var(--white);
  border-color: var(--white);
  font-family: var(--stepp);
  font-size: 20px;

  &:hover {
    border-color: var(--black);
  }
}

.testimonial-sec {
  margin-top: 90px;
  margin-bottom: 80px;

  h3 {
    text-transform: uppercase;
    max-width: 780px;
    margin: 0px auto 30px;
  }

  .item {
    padding: 20px 0px 40px;
  }

  .tetimonial-item {
    padding: 20px;
    background: var(--white);
    border: 1px solid #eeeeee;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.06);
    border-radius: 16px 16px 16px 8px;

    .userBox {
      display: flex;
      align-items: center;

      span.image {
        width: 48px;
        height: 48px;
        margin-right: 10px;
      }

      p {
        margin: 0px;
        font-size: 16px;
        line-height: 18px;
        width: 100%;

        em {
          font-style: italic;
          color: #222222;
          opacity: 0.6;
          font-size: 13px;
          display: block;
        }
      }

      .rating {
        display: flex;
        align-items: center;
        margin-top: 3px;

        img {
          width: 16px;
          height: 16px;
        }
      }
    }
  }

  .owl-dots {
    text-align: center;
    margin-top: 20px;

    .owl-dot {
      margin: 0px 4px;
      outline: none;

      span {
        width: 12px;
        height: 12px;
        display: block;
        background: #f1ebeb;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
      }

      &.active span {
        background: #ee5d90;
      }
    }
  }

  .owl-nav {
    margin: 10px auto;
    width: 100%;
    max-width: 350px;
    position: relative;

    .owl-prev {
      background: url(../images/dark-left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 20px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }

    .owl-next {
      background: url(../images/dark-left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      right: 20px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }
  }
}

.store-sec {
  background-color: #eefaff;
  background-repeat: no-repeat;
  background-position: center left;
  padding: 90px 0px;
}

.featured-brand {
  overflow: hidden;
  position: relative;
  margin-top: 50px;
  margin-bottom: 60px;

  h6 {
    text-align: center;
    font-family: var(--source);
    font-weight: 400;
    margin-top: 0px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .slide-track {
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
    display: flex;
    align-items: center;
    width: calc(200px * 14);

    .slide {
      width: 200px;
      padding: 0px 25px;
    }
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-250px * 7));
    transform: translateX(calc(-250px * 7));
  }
}

.insta-sec {
  display: flex;
  position: relative;

  .insta-item {
    overflow: hidden;

    img {
      object-fit: cover;
      -webkit-transform: scale(1.03);
      transform: scale(1.03);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover img {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .instapage-name {
    position: absolute;
    left: 50%;
    z-index: 1;
    top: 50%;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 20px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);

    h3 {
      margin: 0px;

      a {
        text-decoration: none;
        color: var(--black);
      }
    }

    p {
      margin: 0px;
    }
  }
}

.customer-support {
  margin-top: 80px;
  margin-bottom: 80px;
}

.need-help-block {
  background: #f7f1f3;
  padding: 60px 60px;
  position: relative;
  z-index: 1;
  margin-bottom: -70px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;

  .h1 {
    margin-bottom: 5px;
    margin-top: 0px;
  }

  p.small {
    font-size: 14px;
  }

  p strong {
    display: block;
  }

  ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;

    li {
      list-style: none;
      display: flex;
      align-items: center;
      margin-left: 20px;

      &:first-child {
        margin-left: 0px;
      }

      img {
        margin-right: 10px;
      }

      p {
        font-size: 14px;
        line-height: 20px;
        margin: 0px;

        strong {
          font-size: 18px;
        }

        a:hover {
          color: var(--black);
        }
      }

      &:last-of-type {
        margin-bottom: 0px;
      }
    }
  }

  ul.faq-sec {
    margin: 0px;

    li {
      margin: 0px;
      display: block;
      width: 100%;
    }
  }

  .faq-header {
    .btn-link {
      background: url(../images/minus-circle.svg) no-repeat right 15px center
        #fff;
      outline: none;
      border: none;
      padding: 20px 50px;
      text-align: left;
      display: block;
      width: 100%;
      color: var(--black);
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      position: relative;

      &.collapsed {
        background: url(../images/plus-circle.svg) no-repeat right 15px center;
        border-bottom: 1px solid #dfd3d7;
      }

      span {
        position: absolute;
        left: 15px;
      }
    }
  }

  .collapse {
    background: var(--white);
  }

  .faq-body {
    width: 100%;
    padding: 0px 50px 15px;
    font-size: 16px;
    line-height: 24px;
  }
}

footer {
  background: var(--footer-bg);
  padding-top: 120px;

  p {
    color: var(--white);
    opacity: 0.6;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    max-width: 380px;
  }

  h6 {
    font-family: var(--source);
    color: var(--white);
    font-size: 16px;
  }

  ul {
    padding: 0px;

    li {
      list-style: none;

      a {
        color: var(--white);
        opacity: 0.6;
        display: inline-block;
        padding: 1px 0px;
        font-size: 16px;
      }

      img {
        opacity: 0;
      }

      &:hover {
        > img {
          opacity: 1;
        }

        > a {
          text-decoration: underline;
          opacity: 1;
          color: var(--white);
        }
      }
    }
  }
}

.copyright p {
  margin: 20px auto 0px;
  padding: 25px 10px;
  max-width: 100%;
  border-top: 1px solid #403242;
}

.footer-logo {
  margin-bottom: 20px;
}

@media (min-width: 1920px) {
  .product-sec .large-item img {
    object-position: top;
    object-fit: fill;
  }
}

.navbar-toggler,
.foorer-accordian {
  display: none;
}

/*About-Us*/

.banner-section {
  background-color: #edf2f3;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 100px 0px;

  .text-caption {
    max-width: 650px;

    h1 {
      border-left: 8px solid #7fdaec;
      padding-left: 25px;
      font-size: 40px;
      line-height: 48px;
    }
  }
}

.about-text {
  display: flex;
  margin-top: 80px;
  margin-bottom: 80px;

  img {
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
  }
}

.list-style {
  padding-left: 0px;
  margin-top: 20px;
  margin-bottom: 20px;

  li {
    list-style: none;
    margin-bottom: 10px;

    p {
      padding: 7px 15px 7px 45px;
      display: inline-block;
      margin: 0px;
      border: 1px solid #e8e8e8;
      border-radius: 40px;
      -webkit-border-radius: 40px;
      -moz-border-radius: 40px;
      -ms-border-radius: 40px;
      -o-border-radius: 40px;
      position: relative;

      &:before {
        content: "";
        background: url(../images/list-style.svg) no-repeat;
        width: 26px;
        height: 26px;
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -13px;
      }
    }
  }
}

/*Contact-Us-Page*/
.contact-banner {
  background-color: #fff4f8;
  min-height: 240px;

  .text-caption {
    margin: 0px auto;
    text-align: center;

    h1 {
      border-left: none;
      padding-left: 0px;
    }
  }
}

.buttons {
  .btn:hover span {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
  }

  .btn:first-child {
    margin-right: 10px;
  }

  .btn span {
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;

    img {
      display: block;
    }
  }
}

.contact-box {
  margin-top: 90px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1450px;

  .form-field {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;

    .column {
      width: calc(50% - 15px);

      &.first {
        margin-right: 30px;
      }
    }

    input,
    textarea {
      width: 100%;
      min-height: 0px;
      outline: none;
      border-radius: 0px;
      padding: 12px 10px;
      border: none;
      border-bottom: 1px solid #333;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;

      &:focus {
        background: #fff;
        border: none;
        border-bottom: 1px solid #333;
      }
    }

    textarea {
      min-height: 100px;
      resize: none;
    }
  }

  .btn {
    margin-top: 20px;
  }
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-info {
  max-width: 530px;
  background: #ffeff4;
  padding: 35px;
  position: relative;

  &:before {
    content: "";
    background: url(../images/contact-vector.png) no-repeat;
    width: 150px;
    height: 150px;
    position: absolute;
    right: -60px;
    bottom: -60px;
    z-index: -1;
  }

  ul {
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;

    li {
      list-style: none;
      margin-bottom: 20px;
      width: 50%;

      &:last-of-type {
        width: 100%;
        margin-bottom: 0px;
      }

      h6 {
        font-family: var(--source);
        font-weight: normal;
        text-transform: uppercase;

        span {
          margin-right: 5px;
        }
      }

      p {
        margin: 0px;

        strong {
          display: block;
          font-weight: bold;
          font-size: 20px;
        }
      }
    }
  }
}

.right-bottom-menu:before,
.mobile-filter,
.wishlist {
  display: none;
}

/*Login-page*/
.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}

.password-wrapper .hide-icon {
  display: none; /* डिफ़ॉल्ट रूप से छिपाएँ */
}

/* JavaScript द्वारा टॉगल की जाने वाली क्लास */
.password-wrapper .show-password .show-icon {
  display: none !important;
}

.password-wrapper .show-password .hide-icon {
  display: inline-block !important;
}

.password-wrapper .toggle-password img {
  vertical-align: middle;
}
.default-bg {
  background: #f9f3f1;
  padding: 100px 0px;
}

.form-box {
  max-width: 520px;
  margin: 0px auto;
  background: var(--white);
  box-shadow: 0px 4px 6px 0px #0000000f;
  padding: 70px;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

  form {
    margin-top: 30px;
    margin-bottom: auto;
  }

  h2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;

    a {
      text-decoration: underline;
      color: var(--black);

      &:hover {
        text-decoration: none;
        color: var(--black);
      }
    }
  }

  label {
    a {
      text-decoration: underline;
      color: var(--black);

      &:hover {
        text-decoration: none;
        color: var(--black);
      }
    }
  }

  .btn {
    width: 100%;
    margin-top: 15px;
    background: #524e4d;
    color: #fff;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.remember-and-forgot-field {
  text-align: left;

  .form-check {
    margin-bottom: 0px;
    font-size: 14px;

    input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--black);
      min-height: 0px;
    }
  }

  p {
    margin-bottom: 0px;
    text-align: right;

    a {
      text-decoration: underline;
      color: var(--black);

      &:hover {
        text-decoration: none;
      }
    }
  }
}

/*Categories-page*/

.category-top {
  align-items: flex-start;
  flex-wrap: wrap;
  display: flex;
}

.short-categories {
  width: 250px;
  border: 1px solid #f9f3f1;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;

  ul {
    padding: 0px;
    margin: 0px;

    li {
      list-style: none;
      border-bottom: 1px solid #f9f3f1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 10px;

      &:last-child {
        border-bottom: none;
      }

      a {
        font-size: 15px;
        text-transform: uppercase;

        &:hover {
          color: #ee5d90;
          text-decoration: none;
        }
      }

      span {
        display: inline;
        background: #ee5d90;
        color: var(--white);
        padding: 0px 5px;
        font-size: 14px;
        line-height: 20px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
      }
    }
  }
}

.category-slider {
  width: calc(100% - 280px);
  margin-left: 30px;
  margin-top: 30px;
  margin-bottom: 30px;

  .cat-slide {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0px 70px;
    min-height: 546px;
    background-size: cover;
    background-position: center;

    .image-column img {
      height: 420px;
      object-fit: contain;
      object-position: center bottom;
    }

    .btn:hover {
      color: #fff;
    }
  }

  .owl-nav {
    position: absolute;
    left: 50%;
    top: calc(50% - 35px);
    width: 100%;
    max-width: 1580px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);

    .owl-prev {
      background: url(../images/left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 15px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }

    .owl-next {
      background: url(../images/left-arrow.svg) no-repeat !important;
      width: 40px;
      height: 40px;
      position: absolute;
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      right: 15px;
      top: 0px;
      outline: none;

      span {
        display: none;
      }
    }
  }

  .owl-dots {
    width: 100%;
    text-align: center;
    margin-top: 10px;

    .owl-dot {
      width: 10px;
      height: 10px;
      margin: 0px 2px;
      border: none;
      outline: none;
      background: #f6ddde;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;

      &.active,
      &:hover {
        background: #ee5d90;
      }

      span {
        display: none;
      }
    }
  }
}

.category-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px;

  li {
    list-style: none;
    width: calc(100% / 4 - 23px);
    margin-left: 30px;
    overflow: hidden;
    position: relative;
    background: #f9f3f1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;

    &:first-child {
      margin-left: 0px;
    }

    h6 {
      text-transform: uppercase;
      margin: 30px auto;
    }

    .imagebox {
      overflow: hidden;
      width: 100%;
      height: 420px;
    }

    img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      -webkit-transform: scale(1);
      transform: scale(1);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover img {
      -webkit-transform: scale(1.03);
      transform: scale(1.03);
    }

    .clickable {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px;
      z-index: 5;
    }
  }
}

.arrivals_box {
  padding: 30px 0px;
}

.top-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.confirm-btn {
  font-family: var(--stepp);
  font-size: 18px;
  padding: 8px 16px;
  color: #fff;
  background: #ee5d90;
  text-shadow: 0px 2px 1px #701f3c;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;

  &:hover {
    text-decoration: none;
    color: #fff;
  }
}

.arrivals-slider .item {
  padding: 10px;
}

.product-box {
  background: #fff;
  position: relative;
  box-shadow: 0px 4px 6px 2px #281b161c;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  transition: height 0.3s linear;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -ms-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;

  .clickable {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
  }

  &.disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  &.notification-alert {
    > .thumb > img,
    .special-batch,
    .brand-company,
    .original-price,
    .product-title {
      opacity: 0.5;
      pointer-events: none;
    }

    .cart-box {
      opacity: 1;
      pointer-events: all;
    }
  }

  .thumb {
    width: 100%;
    height: 220px;
    position: relative;
    /* overflow: hidden; */
    background: #f9f3f1;
    display: flex;
    align-items: center;
    justify-content: center;

    > img {
      height: 80%;
      width: 70%;
      object-fit: cover;
      -webkit-transform: scale(1);
      transform: scale(1);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      mix-blend-mode: multiply;
      object-fit: contain;
    }
  }

  &:hover .thumb > img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  .price-box {
    position: absolute;
    left: 0;
    text-align: left;
    top: 18px;
    max-width: 120px;
  }

  .main-price {
    background: #ee5d90;
    font-family: var(--stepp);
    font-size: 22px;
    padding: 5px 10px;
    color: var(--white);
    border-radius: 4px 4px 4px 0px;
    -webkit-border-radius: 4px 4px 4px 0px;
    -moz-border-radius: 4px 4px 4px 0px;
    -ms-border-radius: 4px 4px 4px 0px;
    -o-border-radius: 4px 4px 4px 0px;
    display: inline-block;
    margin: 7px 0;
    position: relative;
    text-shadow: 0px 2px 1px #701f3c;

    &:before {
      content: "";
      border-left: 10px solid transparent;
      border-right: 10px solid #d64f7e;
      border-bottom: 10px solid transparent;
      position: absolute;
      bottom: -10px;
      left: -10px;
    }
  }

  .second-price {
    background: #ede6e3;
    font-family: var(--stepp);
    font-size: 14px;
    padding: 3px 10px;
    color: var(--black);
    border-radius: 4px 4px 4px 0px;
    -webkit-border-radius: 4px 4px 4px 0px;
    -moz-border-radius: 4px 4px 4px 0px;
    -ms-border-radius: 4px 4px 4px 0px;
    -o-border-radius: 4px 4px 4px 0px;
    display: inline-block;
    margin: 7px 0;
    position: relative;

    &:before {
      content: "";
      border-left: 9px solid transparent;
      border-right: 9px solid #e3d0c7;
      border-bottom: 9px solid transparent;
      position: absolute;
      bottom: -8px;
      left: -9px;
    }
  }

  .wishlist-icon {
    width: 36px;
    height: 36px;
    padding: 4px;
    position: absolute;
    right: 15px;
    top: 35px;
    z-index: 5;
    background: #f9f3f1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  }

  .wishlist-icon02 {
    width: 36px;
    height: 36px;
    padding: 4px;
    position: absolute;
    right: 15px;
    top: 80px;
    z-index: 5;
    background: #f9f3f1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  }

  .special-batch {
    position: absolute;
    top: -7px;
    display: inline-block;
    right: 15px;
    width: auto;
    height: 26px;
  }

  .brand-company {
    max-width: 145px;
    height: 40px;
    margin: -20px auto auto;
    z-index: 2;
    position: relative;
    box-shadow: 0px 4px 6px 0px #0000000a;
    border: 1px solid #f9f3f1;
    padding: 4px 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .brand-company img {
    height: 100%;
    object-fit: contain;
  }
  .original-price {
    background: #eec55d;
    padding: 2px 12px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    margin: 0px auto;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }

  .product-title {
    font-size: 18px;
    font-family: var(--stepp);
    line-height: 24px;
    text-transform: capitalize;
    padding: 0px 15px;
    min-height: 28px;
    margin: 10px auto 20px;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .btn {
    width: 100%;
  }

  .original-price {
    height: auto;
    margin: 10px auto;
  }

  .cart-box .btn {
    background: #524e4d;
    color: #fff;

    &:hover {
      color: #fff;
    }

    &.notify-btn {
      background: #4fa463;
      border-color: #4fa463;

      img {
        margin-right: 5px;
      }
    }
  }
}

.cart-box {
  padding: 0px 15px;
  position: relative;
  z-index: 5;
  .cart-box-moq-btn-wrapper {
    display: inline-block;
    cursor: pointer;
    .cart-box-moq-btn {
      background-color: #ffebf2;
      display: inline-block;
      padding: 5px 15px;
      border-radius: 10px 10px 0 0;
      border: 2px dashed #ffc5da;
      border-bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      .moq-btn-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2em;
        @media (max-width: 1199px) {
          font-size: 12px;
        }
      }
      .moq-btn-icon {
        max-width: 15px;
        margin-left: 5px;
        @media (max-width: 1199px) {
          max-width: 12px;
        }
      }
      .moq-number {
        font-size: 12px;
        line-height: 1.2em;
        background-color: #ee5d90;
        padding: 2px 8px;
        border-radius: 30px;
        color: #fff;
        font-weight: 600;
        margin-left: 15px;
        @media (max-width: 1199px) {
          font-size: 10px;
          padding: 1px 6px;
          margin-left: 10px;
        }
      }
    }
.moq-btn-box-wrapper {
  position: absolute;
  z-index: 5;
  top: -67px;
  width: 200px;
  left: 50%;
  font-size: 13px;
  background-color: #fff;
  box-shadow: 0 0 3px #ccc;
  line-height: 1.2em;
  font-weight: 500;
  text-align: left;
  padding: 10px;
  transform: translateX(-50%);
  border-radius: 5px;
  display: none;
  transition: all 0.3s ease-out;

  @media (max-width: 1199px) {
    font-size: 10px;
    top: -47px;
    width: 150px;
    padding: 5px;
  }
}
    .moq-btn-box-wrapper::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%);
      border: 6px solid;
      border-color: #fff transparent transparent transparent;
    }
  }
.moq-btn-box-wrapper.active {
  display: block;
}
  .cart-box-moq-btn-wrapper-thin {
    .cart-box-moq-btn {
      padding: 2px 10px;
      border: 2px dashed #ffc5da;
      .moq-btn-title {
        font-size: 12px;
        @media (max-width: 1199px) {
          font-size: 11px;
        }
      }
      .moq-btn-icon {
        max-width: 12px;
        margin-left: 5px;
        @media (max-width: 1199px) {
          max-width: 11px;
        }
      }
      .moq-number {
        font-size: 10px;
        padding: 2px 7px;
        margin-left: 10px;
        @media (max-width: 1199px) {
          font-size: 9px;
          padding: 1px 5px;
        }
      }
    }
    .moq-btn-box-wrapper {
      top: -59px;
      width: 200px;
      left: 42%;
      font-size: 12px;
      padding: 7px;
      @media (max-width: 1199px) {
        font-size: 10px;
        top: -47px;
        width: 150px;
        padding: 5px;
      }
    }
  }

  .coming-soon-tag {
    position: absolute;
    background-color: #524e4d;
    text-transform: uppercase;
    color: #fff;
    min-width: 150px;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    top: -18px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    left: 50%;
    margin-left: -75px;
    padding-top: 2px;
  }

  .low-stock {
    position: absolute;
    background-color: #ffa411;
    text-transform: uppercase;
    color: #fff;
    min-width: 150px;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    top: -18px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    left: 50%;
    margin-left: -75px;
    padding-top: 2px;
  }
}

.cart-field {
  position: relative;
  background: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 2px 3px #d4d2d3;
  margin-bottom: 0px;

  input {
    background: none;
    text-align: center;
    font-size: 18px;
    padding: 8px 40px;
    border: none;
    min-height: 50px;
    width: 100%;

    &:focus {
      outline: none;
    }
  }

  button {
    position: absolute;
    left: 0px;
    top: 0px;
    min-height: 50px;
    border: none;
    background: #ee5d90;
    padding: 12px 10px;

    &:focus {
      outline: none;
    }

    &:last-of-type {
      right: 0px;
      left: auto;
    }
  }
}

.plus-minus-option2 {
  border: 1px solid #524e4d;
  width: 100%;
  background: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  overflow: hidden;

  input {
    min-height: 28px;
    padding: 0px 28px;
    background: none;
    font-size: 14px;
    font-weight: 500;
  }

  button {
    background: none;
    min-height: 28px;
    padding: 0px 4px;
    box-shadow: none;
  }
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;

  p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0px;

    span {
      color: #c5c5c5;
      margin: 0px 2px;
    }
  }
}

.arrivals-slider {
  .owl-nav {
    .owl-prev {
      background: url(../images/slide-arrow-new.svg) no-repeat !important;
      background-size: contain !important;
      width: 32px;
      height: 52px;
      position: absolute;
      left: 0px;
      top: 50%;
      margin-top: -26px;
      outline: none;

      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);

      span {
        display: none;
      }
    }

    .owl-next {
      background: url(../images/slide-arrow-new.svg) no-repeat !important;
      background-size: contain !important;
      width: 32px;
      height: 52px;
      position: absolute;
      top: 50%;
      left: auto;
      right: 0px;
      margin-top: -26px;
      outline: none;

      span {
        display: none;
      }
    }
  }
}

.shopby-category {
  margin: 50px auto;

  .cat-box span {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;

    > img {
      object-fit: cover;
      -webkit-transform: scale(1);
      transform: scale(1);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover > img {
      -webkit-transform: scale(1.02);
      transform: scale(1.02);
      mix-blend-mode: multiply;
      -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
      -o-transform: scale(1.02);
    }
  }

  p {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    margin-top: 15px;
  }
}

.featured-box {
  margin: 25px auto;
  display: flex;
  flex-wrap: wrap;

  h3 {
    width: 100%;
  }

  .halfbox {
    width: 50%;
  }

  .imagebox {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background: #fff5f4;

    img {
      width: 100%;
      height: 100%;
      mix-blend-mode: multiply;
      object-fit: cover;
      -webkit-transform: scale(1);
      transform: scale(1);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover > img {
      -webkit-transform: scale(1.02);
      transform: scale(1.02);
      mix-blend-mode: multiply;
      -moz-transform: scale(1.02);
      -ms-transform: scale(1.02);
      -o-transform: scale(1.02);
    }

    .overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      text-align: center;
      padding: 15px;
      opacity: 0;
      transition: all 0.5s ease;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;

      h6 {
        color: var(--white);
        margin-bottom: 10px;
        font-weight: normal;
      }

      .text-btn {
        color: #fff;
        font-family: var(--source);
        font-size: 15px;
        letter-spacing: 0.2px;

        &:before {
          display: none;
        }

        span {
          display: inline-block;
          filter: brightness(0) invert(1);
          -webkit-filter: brightness(0) invert(1);
        }
      }
    }

    &:hover .overlay {
      opacity: 1;
      visibility: visible;
    }
  }

  ul {
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    height: 100%;

    li {
      list-style: none;
      width: calc(50% - 15px);
      height: calc(50% - 7.5px);
      margin-left: 15px;

      &:nth-child(1),
      &:nth-child(2) {
        margin-bottom: 15px;
      }
    }
  }
}

.saveupto-sec {
  .container {
    max-width: 1170px;
    background: #f9f3f1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;

    .col-md-6:first-of-type {
      padding-left: 0;
      overflow: hidden;
      border-radius: 10px 0px 0px 10px;
      -webkit-border-radius: 10px 0px 0px 10px;
      -moz-border-radius: 10px 0px 0px 10px;
      -ms-border-radius: 10px 0px 0px 10px;
      -o-border-radius: 10px 0px 0px 10px;
    }
  }
}

.lightblue-full {
  background: #eefaff;
  padding: 50px 0px 70px;
  margin: 25px auto;
  overflow: hidden;

  .nav {
    margin-bottom: 15px;

    li {
      a {
        color: #222222;
        font-size: 15px;
        text-transform: uppercase;
        padding: 7px 25px;

        &.active {
          font-weight: 600;
        }
      }

      &:first-child a {
        padding-left: 0px;
      }
    }
  }

  .tab-inside {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;

    .tabs-slider {
      width: calc(100% - 520px);
      padding-left: 15px;

      .item {
        padding: 7px 10px 10px;
      }

      .owl-nav {
        .owl-prev {
          background: url(../images/slide-arrow-new.svg) no-repeat !important;
          background-size: contain !important;
          width: 32px;
          height: 52px;
          position: absolute;
          left: 15px;
          top: 50%;
          margin-top: -26px;
          outline: none;

          transform: rotate(180deg);
          -webkit-transform: rotate(180deg);
          -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -o-transform: rotate(180deg);

          span {
            display: none;
          }
        }

        .owl-next {
          background: url(../images/slide-arrow-new.svg) no-repeat !important;
          background-size: contain !important;
          width: 32px;
          height: 52px;
          position: absolute;
          top: 50%;
          left: auto;
          right: 0px;
          margin-top: -26px;
          outline: none;

          span {
            display: none;
          }
        }
      }
    }
  }

  .mid-item {
    width: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    min-height: 455px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;

    &.large-item {
      height: 100%;
    }

    h2,
    h3 {
      margin: 15px 0px 5px;
    }

    p {
      font-size: 16px;
      line-height: 22px;
    }

    > img {
      width: 100%;
      max-height: 465px;
      object-fit: cover;
      object-position: right bottom;
      top: 0;
      left: 0;
      height: 100%;
      position: absolute;
      -webkit-transform: scale(1.03);
      transform: scale(1.03);
      transform-origin: 0 60%;
      -webkit-transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
      transition: transform 0.8s cubic-bezier(0.39, 0.58, 0.57, 1);
    }

    &:hover img {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .caption {
    position: absolute;
    left: 0px;
    max-width: 280px;
    top: 0px;
    padding: 0px 15px;
    width: 100%;
  }
}

.product-tabs {
  background: #524e4d;
  overflow: hidden;
  padding: 0px;
  position: relative;
  max-width: 1440px;
  margin: 70px auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

  ul.nav {
    position: absolute;
    width: 100px;
    z-index: 2;
    top: 50%;
    left: 620px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);

    li a {
      padding: 0px;
      margin: 5px auto;
      overflow: hidden;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
    }
  }
}

.product-infobox {
  display: flex;
  align-items: center;

  .large-thumb {
    background: #f9f3f1;
    width: 620px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;

    img {
      mix-blend-mode: multiply;
      width: 80%;
      height: 80%;
      object-fit: contain;
    }
  }

  .product-disc {
    width: calc(100% - 620px);
    padding: 35px 15px 15px 100px;
    position: relative;

    .brand-company {
      position: absolute;
      right: 50px;
      top: 0px;
      padding: 5px 10px;
      border-radius: 4px;
      background: #fff;
      max-width: 120px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
    }

    h3 {
      color: var(--white);
      font-size: 24px;
    }

    .price {
      color: #ee5d90;
      font-family: var(--stepp);
      font-size: 40px;
      margin-bottom: 10px;
    }

    .second-price {
      font-size: 20px;
      font-family: var(--stepp);
      color: var(--white);
      margin-bottom: 10px;
    }

    p {
      color: var(--white);
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 0.6px;

      span {
        color: #c5c5c5;
        margin: 0px 6px;
      }
    }

    .btn {
      width: 100%;
      max-width: 380px;
      color: var(--white);
      border-color: var(--white);

      &:hover {
        border-color: var(--black);
      }
    }

    .btn.white {
      position: relative;
      left: auto;
      bottom: auto;
      margin: 15px 0px;
      color: var(--black);

      &:hover {
        border-color: var(--black);
        color: var(--white);
      }
    }
  }
}

/*Categories-page-END*/

/*Listing-page*/
.listing-filter {
  background: #f9f3f1;
  margin-bottom: 30px;
  position: sticky;
  top: 0px;
  z-index: 12;

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .search-and-filter {
    display: flex;
    width: calc(100% - 55px);
    padding: 12px 0px;

    .search-input-main-wrapper {
      .search-button-main-wrapper {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);

        .search-button-icon,
        .search-close-button-icon {
          background-color: transparent;
          border: 0;
          outline: 0;
          padding: 0;

          img {
            max-width: 18px;
          }
        }

        .search-close-button-icon img {
          border-radius: 50%;
          border: 1px solid #000;
          padding: 2px;
        }
      }

      @media (min-width: 991.98px) {
        .search-input-wrapper {
          background-image: unset;
        }
      }
    }
  }

  .more-filters {
    display: flex;
    align-items: center;

    .price-gst {
      display: inline-block;
      margin-bottom: 0px;
      background: var(--white);
      padding: 5px 12px;
      border-radius: 4px;
      font-size: 15px;
      text-transform: uppercase;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      white-space: nowrap;

      input {
        width: 16px;
        height: 16px;
        min-width: 0px;
        vertical-align: -3px;
        margin-right: 3px;
      }
    }

    .cart-info {
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      opacity: 0;

      &.scrolled {
        opacity: 1;
      }
    }
  }

  .view-icons {
    display: flex;
    align-items: center;

    a {
      margin: 2px 3px;

      &.active {
        opacity: 0.4;
      }
    }
  }
}

.show_menu .listing-filter {
  z-index: 9;
}

.search-and-filter {
  input {
    width: 280px;
    min-width: 280px;
    background: #fff url(../images/search-icon.svg) no-repeat right 15px center;
    border: none;
    color: var(--black);
    font-size: 15px;
    padding: 5px 15px;
    text-transform: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;

    &:focus {
      outline: none;
    }

    &::-webkit-search-cancel-button {
      -webkit-appearance: none;
      appearance: none;
    }
  }

  .searchby-design,
  .filter-btn {
    background: var(--white);
    min-width: 140px;
    padding: 4px 15px;
    white-space: nowrap;
    color: var(--black);
    text-transform: uppercase;
    font-size: 15px;
    margin: 0px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-decoration: none;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 140px;

    img {
      margin-right: 8px;
    }
  }

  .filter-btn {
    background: #ffeef5;
    border: 1px solid #ee5d90;
    max-width: none;
    min-width: 155px;
  }

  .selectbox-wrap {
    display: flex;

    select {
      margin: 0px 5px;
      background: var(--white) url(../images/arrow.svg) no-repeat right 10px
        center;
      padding: 5px 35px 5px 15px;
      -webkit-appearance: none;
      appearance: none;
      font-size: 15px;
      color: var(--black);
      border: none;
      text-transform: uppercase;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      max-width: 130px;

      &:focus {
        outline: none;
      }
    }
  }
}

.gridview-listing {
  display: flex;
  flex-wrap: wrap;

  .item {
    width: calc(100% / 5);
    padding: 10px;
    margin-bottom: 20px;
  }
}

.advertisment-banner {
  margin: 30px auto;
}

.listing-view-table {
  margin-bottom: 60px;
  border: 1px solid #eaecf0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;

  table {
    width: 100%;
    border: 1px solid #eaecf0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;

    thead {
      background: #524e4d;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;

      p {
        color: #fff;
        opacity: 0.7;
        white-space: nowrap;
        font-weight: 500;
        font-size: 13px;
        margin-bottom: 0px;
        text-transform: uppercase;
      }
    }

    tbody tr td:nth-child(2) {
      width: 350px !important;
    }
    tbody tr td:nth-child(6) {
      width: 450px !important;
      @media(max-width: 1300px) {
         width: 550px !important;
      }
    }
    td {
      padding: 10px 12px;
      border-top: none;
      border-bottom: 1px solid #eaecf0;
      border-top: none;

      &:last-of-type {
        width: 190px;
      }

      table {
        border: none;
        overflow: visible;
      }

      .batch {
        margin-top: 0px;
      }

      .original-price {
        border-radius: 0px 0px 4px 4px;
        -webkit-border-radius: 0px 0px 4px 4px;
        -moz-border-radius: 0px 0px 4px 4px;
        -ms-border-radius: 0px 0px 4px 4px;
        -o-border-radius: 0px 0px 4px 4px;
        position: relative;
        top: -12px;
      }

      input {
        background: #fff;
        width: 95px;
        padding: 2px 0px 2px 10px;
        border: 1px solid #cecece;

        &:focus {
          outline: none;
        }
      }

      .cart-field {
        input {
          width: 100%;
          padding: 5px 40px;
          min-height: 40px;
          font-size: 16px;
        }

        button {
          min-height: 40px;
          padding: 5px 10px;
        }
      }
    }

    .multiple-icons {
      span {
        margin: 0px 5px;
        cursor: pointer;
      }
    }

    .multiple-icons + td p {
      font-size: 18px;
    }

    span.batch {
      overflow: hidden;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;

      img {
        display: block;
      }
    }

    .original-price {
      background: #eec55d;
      padding: 2px 12px;
      white-space: nowrap;
      text-transform: uppercase;
      display: inline-block;
      font-size: 12px;
      line-height: 24px;
      margin: 0px auto;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
    }

    tr:nth-child(even) td {
      background: #f9f3f1;
    }

    p {
      margin-bottom: 0px;
      color: var(--black);
      font-size: 15px;
    }

    .title {
      font-family: var(--stepp);
      font-size: 20px;
    }

    .old-price {
      text-decoration: line-through;
      color: #999999;
    }

    .new-price {
      font-size: 20px;
      color: #ee5d90;
      font-family: var(--stepp);
      text-shadow: 0px 1px 1px #701f3c;
      font-weight: bold;
      margin-left: 3px;
    }

    .btn {
      width: 100%;

      &.notify-btn {
        border-color: #4fa463;
        background: #4fa463;
        color: #fff;
      }
    }

    .coming-soon-tag {
      background-color: #524e4d;
      text-transform: uppercase;
      color: #fff;
      min-width: 150px;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;
      display: inline-block;
      vertical-align: bottom;
      font-size: 12px;
      line-height: 18px;
      text-align: center;
      padding-top: 2px;
    }

    .low-stock {
      background-color: #ffa411;
      text-transform: uppercase;
      color: #fff;
      min-width: 150px;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;
      display: inline-block;
      vertical-align: bottom;
      font-size: 12px;
      line-height: 18px;
      text-align: center;
      padding-top: 2px;
    }

    tfoot tr td:nth-of-type(1),
    tfoot tr td:nth-of-type(3) {
      width: 150px;
    }
  }

  .cart-box {
    max-width: 180px;
    padding: 0px;
  }
}

.pagination {
  border: 1px solid #d0d5dd;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0px auto;

  .pager-btn {
    padding: 12px 14px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;

    &:hover {
      text-decoration: none;
      background: #f9f3f1;
      color: var(--black);
    }
  }

  .pager {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;

    li {
      list-style: none;

      a {
        padding: 12px 20px;
        color: var(--black);
        font-size: 20px;
        font-weight: 600;
        display: block;

        &.active,
        &:hover {
          text-decoration: none;
          background: #fff0f0;
          color: #ee5d90;
        }
      }
    }
  }
}

.swal2-actions {
  gap: 15px;

  .btn-primary {
    background: none;
    color: #000;

    &:hover {
      color: #fff;
    }
  }

  .btn-danger {
    background: #524e4d;
    color: #fff;
  }
}

/*Listing-page-END*/

#cartmodal {
  padding-right: 0px !important;
}

.modal-backdrop {
  background-color: #3b3b3fd6;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog-slideout {
  min-height: 100%;
  margin: 0 0 0 auto;
  border-radius: 12px 0px 0px 12px;
  background: #fff;
  -webkit-border-radius: 12px 0px 0px 12px;
  -moz-border-radius: 12px 0px 0px 12px;
  -ms-border-radius: 12px 0px 0px 12px;
  -o-border-radius: 12px 0px 0px 12px;

  .modal-content {
    border: none;
  }
}

.modal.fade .modal-dialog.modal-dialog-slideout {
  -webkit-transform: translate(100%, 0) scale(1);
  transform: translate(100%, 0) scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  display: flex;
  align-items: stretch;
  -webkit-box-align: stretch;
  height: 100%;
}

.cart-outer {
  display: flex;
  padding: 0px;

  .left-products {
    width: 280px;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    background: var(--white);
    border-radius: 12px 0px 0px 12px;
    -webkit-border-radius: 12px 0px 0px 12px;
    -moz-border-radius: 12px 0px 0px 12px;
    -ms-border-radius: 12px 0px 0px 12px;
    -o-border-radius: 12px 0px 0px 12px;

    h3 {
      font-size: 22px;
      text-transform: uppercase;
      margin-bottom: 15px;
      margin-top: 10px;
    }

    ul {
      padding: 0px;
      margin: 0px;

      li {
        list-style: none;
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;

        .product-thumb {
          width: 80px;
          height: 80px;
          border: 1px solid #d0d0d0;
          border-radius: 4px;
          -webkit-border-radius: 4px;
          -moz-border-radius: 4px;
          -ms-border-radius: 4px;
          -o-border-radius: 4px;

          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }

        .product-disc {
          width: calc(100% - 80px);
          padding-left: 15px;

          h6 {
            font-size: 15px;
            margin-top: 0px;
            margin-bottom: 5px;
          }

          .price {
            font-family: var(--stepp);
            font-size: 17px;
            margin-bottom: 10px;
          }

          .btn {
            font-size: 10px;
            padding: 7px 20px;
          }
        }
      }
    }
  }

  .right-cart-disc {
    background: #f9f3f1;
    padding: 20px;
    width: calc(100% - 280px);
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;

    .topbox {
      width: 100%;
    }

    .tophead {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #f9f3f1;
      position: sticky;
      z-index: 1;
      top: 0px;

      h2 {
        font-size: 36px;
        text-transform: uppercase;
        margin-top: 10px;

        span {
          font-size: 19px;
        }
      }

      button.close {
        opacity: 1;
      }
    }

    .order-notification {
      text-align: center;
      margin-bottom: 15px;
      background: radial-gradient(
        50% 753.57% at 50% 50%,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
      );

      p {
        margin-bottom: 0px;
        font-size: 15px;
        padding: 5px 8px;

        img {
          margin-right: 5px;
        }
      }
    }

    .cart-itemsList {
      padding: 0px;
      margin: 0px;

      li {
        list-style: none;
        display: flex;
        align-items: center;
        margin-top: 20px;

        .item-thumb {
          width: 80px;
          height: 80px;
          overflow: hidden;
          border-radius: 5px;
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;

          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            mix-blend-mode: multiply;
          }
        }

        .product_disc {
          display: flex;
          width: calc(100% - 80px);
          padding-left: 15px;

          h6 {
            font-size: 17px;
            margin-top: 0px;
            margin-bottom: 5px;
          }

          .price {
            font-family: var(--stepp);
            font-size: 17px;
            margin-bottom: 10px;
          }

          .items {
            font-size: 16px;
          }

          .left {
            width: calc(100% - 100px);
          }

          .right {
            width: 100px;
            text-align: right;
          }
        }
      }
    }
  }

  .bottombox {
    width: calc(100% + 40px);
    border-top: 1px solid #fff;
    padding: 20px;
    margin: 0px -20px -20px;

    .form-group.form-check {
      margin-bottom: 10px;

      img {
        display: inline-block;
      }
    }

    .btn {
      width: 100%;
      font-family: var(--stepp);
      background: #524e4d;
      color: var(--white);
    }
  }

  .fetures {
    padding: 5px 10px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
      50% 753.57% at 50% 50%,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%
    );

    li {
      list-style: none;
      padding: 0px 15px;
      border-left: 1px solid #d2c5c0;
      font-size: 14px;
      font-family: var(--stepp);
      text-transform: uppercase;

      &:first-child {
        border-left: none;
      }

      img {
        margin-right: 5px;
      }
    }
  }

  .subtotal-box {
    display: flex;
    justify-content: space-between;

    h3 {
      margin-bottom: 5px;
    }

    p {
      font-size: 14px;

      a {
        font-weight: bold;
        color: var(--black);
        text-decoration: underline;

        &:hover {
          text-decoration: none;
        }
      }
    }
  }
}

.quickModal {
  .modal-dialog {
    max-width: 800px;
  }

  .modal-content {
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

.quickview_wrap {
  padding: 25px;
  .cart-box-moq-btn-wrapper {
        display: flex;
    justify-content: center;
    margin-bottom: -15px
  }

  .inside {
    display: flex;
    align-items: flex-start;

    .left,
    .right {
      width: 50%;
      position: relative;
    }

    .cart-field {
      margin-bottom: 15px;
      margin-top: 15px;
    }

    .right {
      padding-left: 25px;
    }

    .cart-box {
      padding: 0px;
      max-width: 350px;
    }

    .tophead {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    button.close {
      opacity: 1;
    }

    .brand-company {
      background: #fff;
      padding: 7px 5px;
      border-radius: 5px;
      width: 120px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
    }

    h3 {
      margin-top: 10px;
    }

    p {
      text-transform: uppercase;
      font-size: 15px;
      line-height: 24px;
      margin-bottom: 0px;
    }

    .sizes-column {
      margin-top: 15px;
      margin-bottom: 15px;

      ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: 0px;
        margin-top: 5px;

        li {
          list-style: none;
          color: var(--black);
          border: 1px solid #dcdcdc;
          padding: 2px 10px;
          min-width: 55px;
          text-align: center;
          text-transform: uppercase;
          font-size: 15px;
          margin-right: 5px;
          cursor: pointer;
          margin-bottom: 5px;

          &:hover,
          &.active {
            background: #524e4d;
            color: var(--white);
          }
        }
      }
    }

    .btn {
      width: 100%;
      margin: 10px auto;

      &.fill-btn {
        background: #524e4d;
        color: var(--white);
      }
    }

    #sync1 {
      .item {
        background: #fff;
        padding: 10px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
      }
    }

    #sync2 {
      width: 70%;
      margin: 15px auto auto;

      .item {
        background: #fff;
        padding: 5px;
        border: 1px solid #fff;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
      }

      .current .item {
        border-color: #000000;
      }
    }

    .batch {
      max-width: 120px;
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
    }

    .view-icons {
      position: absolute;
      right: 10px;
      top: 15px;
      width: 20px;

      span {
        display: inline-block;
        max-width: 36px;
        margin-bottom: 5px;
        cursor: pointer;
      }
    }

    .price-box {
      position: absolute;
      left: 0px;
      top: 15px;
      max-width: 120px;

      .main-price {
        background: #ee5d90;
        position: absolute;
        left: -8px;
        white-space: nowrap;
        top: 25px;
        text-shadow: 0px 2px 1px #701f3c;
        font-family: var(--stepp);
        font-size: 22px;
        padding: 5px 10px;
        color: var(--white);
        border-radius: 4px 4px 4px 0px;
        -webkit-border-radius: 4px 4px 4px 0px;
        -moz-border-radius: 4px 4px 4px 0px;
        -ms-border-radius: 4px 4px 4px 0px;
        -o-border-radius: 4px 4px 4px 0px;

        &:before {
          content: "";
          border-left: 10px solid transparent;
          border-right: 10px solid #d64f7e;
          border-bottom: 10px solid transparent;
          position: absolute;
          bottom: -10px;
          left: -10px;
        }
      }

      .second-price {
        background: #f9f3f1;
        position: absolute;
        left: -8px;
        white-space: nowrap;
        top: 75px;
        font-family: var(--stepp);
        font-size: 14px;
        padding: 3px 10px;
        color: var(--black);
        border-radius: 4px 4px 4px 0px;
        -webkit-border-radius: 4px 4px 4px 0px;
        -moz-border-radius: 4px 4px 4px 0px;
        -ms-border-radius: 4px 4px 4px 0px;
        -o-border-radius: 4px 4px 4px 0px;

        &:before {
          content: "";
          border-left: 9px solid transparent;
          border-right: 9px solid #e3d0c7;
          border-bottom: 9px solid transparent;
          position: absolute;
          bottom: -8px;
          left: -9px;
        }
      }
    }
  }

  .related-product ul {
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    li {
      min-width: 110px;
    }
  }
}

.large-thumb {
  position: relative;
  background: #f9f3f1;
  margin-bottom: 10px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;

  .item {
    display: flex;
    align-items: center;
    justify-content: center;

    > img {
      width: 95%;
      height: 80%;
      object-fit: contain;
      object-position: center;
      mix-blend-mode: multiply;
    }
  }
}

.small-thumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

  .item {
    width: 64px;
    height: 64px;
    margin: 5px;
    border-radius: 4px;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;

    &.active {
      border: 1px solid #000;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
}

.related-product {
  margin-top: 20px;

  p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
  }

  ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;

    li {
      list-style: none;
      border: 1px solid #f0dce3;
      overflow: hidden;
      width: 110px;
      padding: 5px;
      background: #fff;
      margin-right: 15px;
      margin-bottom: 10px;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      &.out-of-stock-product img {
        opacity: 0.4;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
      }

      &.disable {
        pointer-events: none;
        opacity: 0.6;
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);
      }
    }
  }
}

/*Product-details-page*/
.product-detail-page {
  .services-bar {
    background: none;
  }

  .arrivals_box {
    margin-bottom: 80px;
  }
}

.quickview_wrap {
  & .inside {
    #sync2 {
      max-width: 220px;
      margin: 0px auto 15px;
    }

    .left {
      /*border: 1px solid #EEEEEE;*/
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
      max-width: 640px;
    }

    .right {
      /* padding-left: 60px;
            max-width: calc(100% - 640px); */
    }

    .btn {
      max-width: 390px;
    }

    h3 {
      font-size: 24px;
    }

    .tophead {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price {
      color: #ee5d90;
      font-family: var(--stepp);
      font-size: 40px;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .second-price {
      color: #222222;
      font-family: var(--stepp);
      font-size: 20px;
      margin-bottom: 20px;
    }

    table {
      max-width: 300px;
      width: 100%;
      margin-top: 10px;

      td {
        border: 1px solid #dcdcdc;
        font-size: 15px;
        line-height: 22px;
        text-transform: uppercase;
        padding: 3px 10px;
        width: 50%;
      }
    }
  }
}

/*Internal-panal-pages*/
.middle-wrap {
  padding: 50px 0px 100px;

  .container {
    max-width: 1440px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .left-menu {
    width: 220px;
    border: 1px solid #f9f3f1;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: sticky;
    top: 160px;

    ul {
      padding: 0px;
      margin: 0px;

      li {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0px 10px;
        border-bottom: 1px solid #f9f3f1;
        position: relative;

        small {
          background: #ee5d90;
          font-size: 14px;
          line-height: 22px;
          margin-right: 7px;
          font-weight: 600;
          color: var(--white);
          padding: 0px 10px;
          display: inline-block;
          border-radius: 15px;
          -webkit-border-radius: 15px;
          -moz-border-radius: 15px;
          -ms-border-radius: 15px;
          -o-border-radius: 15px;
        }

        span {
          display: inline-block;
          width: 16px;
          height: 16px;

          img {
            display: block;
          }
        }

        a {
          padding: 10px 5px;
          font-size: 16px;
          transition: all 0.5s ease;
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -ms-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;

          &:hover {
            text-decoration: none;
            color: var(--black);
          }
        }

        &:hover,
        &.active {
          background: #f9f3f1;

          &:before {
            position: absolute;
            width: 3px;
            height: 100%;
            background: #ee5d90;
            content: "";
            left: 0px;
            top: 0px;
          }

          a {
            font-weight: 600;
          }
        }
      }
    }
  }

  .right-container {
    padding-left: 50px;
    width: calc(100% - 220px);

    h3 {
      margin-top: 0px;
      margin-bottom: 5px;
      text-transform: uppercase;
    }

    .important-note {
      border: 2px dashed #bdbdbd;
      padding: 20px;
      max-width: 725px;

      ul {
        padding-left: 18px;
      }

      p,
      li {
        font-size: 16px;
        line-height: normal;
        margin-top: 5px;
      }
    }

    .cards-group {
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid #eeeeee;
      display: flex;
      flex-wrap: wrap;

      > ul {
        width: calc(100% - 120px);
        padding-left: 0px;
        margin-bottom: 0px;
        padding-right: 30px;
        display: flex;
        overflow: auto;
        -webkit-overflow-scrolling: touch;

        li {
          list-style: none;
          width: calc(33.33% - 20px);
          min-width: 310px;
          position: relative;
          margin-left: 30px;
          padding: 15px;
          background: #f9f9f9;
          border-radius: 15px;
          -webkit-border-radius: 15px;
          -moz-border-radius: 15px;
          -ms-border-radius: 15px;
          -o-border-radius: 15px;
          overflow: hidden;

          &:first-of-type {
            margin-left: 0px;
          }

          &.actice-card {
            border: 2px solid #ee5d90;
          }

          &.blue-card {
            background: #edf4ff;
          }

          &.green-card {
            background: #e9f4ee;
          }

          &:hover {
            .onhover {
              bottom: 0px;
            }
          }
        }
      }

      .clickable {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0px;
        top: 0px;
        z-index: 5;
      }

      .card-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;

        .default {
          font-size: 13px;
          line-height: 14px;
          padding: 8px 15px;
          display: inline-block;
          margin-left: -15px;
        }
      }

      .chip {
        margin-bottom: 15px;
      }

      .holder-info {
        display: flex;
        flex-wrap: wrap;

        .column {
          width: 50%;

          p {
            font-size: 11px;
            line-height: 15px;
            margin-bottom: 0px;

            strong {
              font-size: 12px;
              display: block;
            }
          }
        }
      }

      .onhover {
        position: absolute;
        max-width: 260px;
        bottom: -80px;
        background: var(--white);
        border-radius: 8px 8px 0px 0px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-border-radius: 8px 8px 0px 0px;
        -moz-border-radius: 8px 8px 0px 0px;
        -ms-border-radius: 8px 8px 0px 0px;
        -o-border-radius: 8px 8px 0px 0px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;

        ul {
          padding: 0px;
          margin: 0px;
          display: flex;
          align-items: center;
          justify-content: center;

          li {
            list-style: none;
            padding: 5px 0px;
            width: auto;
            min-width: 0px;
            margin: 0px;
            background: none;

            a {
              display: flex;
              align-items: center;
              padding: 5px 15px;
              font-size: 13px;
              white-space: nowrap;
              text-transform: uppercase;
              font-weight: 500;
              color: #524e4d;

              span {
                width: 20px;
                height: 20px;
                display: inline-block;
                vertical-align: middle;
                margin-right: 5px;

                img {
                  display: block;
                }
              }

              &:hover {
                color: #524e4d;
              }
            }

            &:first-of-type a {
              border-right: 1px solid #dbdbdb;
            }
          }
        }
      }

      .add-card {
        width: 120px;
        position: relative;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: 1px dashed #b6b6b6;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;

        img {
          display: block;
          margin: 0px auto 10px;
        }

        p {
          font-size: 15px;
          line-height: 22px;
          margin-bottom: 0px;
          text-transform: uppercase;
          color: #524e4d;
        }

        &.emty-card-case {
          min-height: 200px;
          min-width: 310px;
        }
      }
    }

    .btn {
      background: #524e4d;
      color: #fff;
      width: calc(50% - 12px);
    }

    .remember-and-forgot-field {
      input {
        min-height: 0px;
      }
    }
  }
}

.addnewcard-modal {
  max-width: 800px;

  .form-box {
    max-width: 100%;
    padding: 60px 35px;
  }

  .btn {
    max-width: 350px;
  }
}

.form-field {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;

  .column {
    width: calc(50% - 12px);
    position: relative;

    &.first {
      margin-right: 24px;
    }
  }

  &.tree-column {
    .column {
      width: calc(33.33% - 16px);
    }
  }

  .cardType {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #fff;
    border: 1px solid #f2f4f7;
    width: 34px;
    height: 24px;
    padding: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;

    img {
      display: block;
    }
  }

  label {
    display: block;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: left;
  }

  input,
  select {
    width: 100%;
    border: 1px solid #dbdbdb;
    min-height: 46px;
    padding: 5px 10px;
    text-transform: none;
    font-size: 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;

    &:focus,
    &.filled {
      background: #f5f5f5;
      border: 1px solid #dbdbdb;
      outline: none;
    }
  }

  input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 0px;
    vertical-align: -10px;
    margin-right: 3px;
    min-height: 32px;
  }
}

.expire-box {
  max-width: 150px;
  display: flex;

  input:first-of-type {
    margin-right: 10px;
  }
}

.payment-head {
  background: #f9f3f1;
  padding: 40px 0px;

  h1 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 0px;
  }
}

.payment-wrap {
  .container {
    max-width: 1050px;
  }

  .right-container {
    padding-left: 0px;
    width: 100%;

    .text-center {
      p a {
        text-decoration: underline;
        color: var(--black);
      }
    }

    .cards-group {
      margin-top: 30px;
      border-bottom: none;
      position: relative;

      &:before {
        content: "";
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          #ffffff 100%
        );
        width: 64px;
        height: 100%;
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: 5;
      }

      > ul {
        width: 100%;
        padding-right: 0px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;

        li {
          min-width: 320px;
        }
      }
    }

    .important-note {
      max-width: 100%;
    }
  }

  .form-box {
    max-width: 100%;
    padding: 0px;
    box-shadow: none;
  }

  .total-amout {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 50px;
    margin-top: 30px;

    .box {
      width: 100%;
      max-width: 385px;

      .btn {
        width: 100%;
        font-family: var(--source);
      }
    }

    table {
      width: 100%;

      td {
        width: 50%;
        text-align: left;
        padding: 8px 0px;

        p {
          font-family: var(--stepp);
          color: var(--black);
        }

        &:last-of-type {
          text-align: right;
        }
      }

      tr:last-of-type td {
        p {
          font-size: 24px;
          line-height: 32px;

          span {
            display: inline-block;
            margin-right: 10px;

            img {
              display: block;
            }
          }
        }
      }
    }
  }
}

.checkout-page {
  .services-bar {
    background: var(--white);
    padding: 50px 0px;
  }
}

.checkout-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px;

  > .left {
    width: calc(100% - 420px);
    padding-right: 30px;
  }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 25px;
    margin-bottom: 30px;

    a {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      color: #524e4d;

      img {
        display: inline-block;
        margin-right: 5px;
        vertical-align: -3px;
      }
    }
  }
}

.checkout-items {
  .item-row {
    border-bottom: 1px solid #eeeeee;
    padding: 25px 0px;
    display: flex;
    flex-wrap: wrap;

    .column {
      max-width: calc(100% - 170px);
      width: 100%;
      display: flex;
      align-items: flex-start;

      .product-image {
        width: 100px;
        min-width: 100px;
        height: 100px;
        padding: 5px;
        border: 1px solid #eeeeee;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
      }

      .product-title {
        padding-left: 20px;
        max-width: 300px;
        margin-right: 40px;
        width: 100%;

        h3 {
          margin-top: 0px;
          font-size: 18px;
        }

        p {
          color: #222222;
          font-size: 15px;
          margin-bottom: 0px;

          span {
            color: #c5c5c5;
            display: inline-block;
            margin: 0px 5px;
          }
        }
      }

      .price-box {
        .brand-company {
          max-width: 135px;
          display: block;
          margin-bottom: 25px;
        }

        .box {
          display: flex;
          align-items: center;

          .qty {
            margin-left: 50px;
            white-space: nowrap;
          }
        }
      }

      .price,
      .qty {
        font-size: 18px;
        font-family: var(--stepp);
        color: #222222;
        font-weight: normal;
        margin-bottom: 0px;
        white-space: nowrap;
        min-width: 120px;
      }

      .cart-field {
        position: relative;
        background: #fff;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        overflow: hidden;
        margin-bottom: 0px;
        margin-left: 10px;
        min-width: 100px;

        input {
          background: none;
          text-align: center;
          font-size: 16px;
          padding: 3px 32px;
          border: none;
          min-height: 34px;
          width: 100%;
          max-width: 120px;

          &:focus {
            outline: none;
          }
        }

        button {
          position: absolute;
          left: 0px;
          top: 0px;
          min-height: 34px;
          border: none;
          background: #ee5d90;
          padding: 3px 6px;

          &:focus {
            outline: none;
          }

          &:last-of-type {
            right: 0px;
            left: auto;
          }
        }
      }

      &.right {
        justify-content: flex-end;
        flex-wrap: wrap;
        max-width: 170px;

        .price {
          text-align: right;
        }

        > div {
          width: 100%;
        }

        .action-btn {
          margin-bottom: 25px;
          width: 100%;
          text-align: right;
        }

        .remove {
          text-decoration: underline;
          font-size: 14px;
          font-weight: 500;
          color: #524e4d;
          text-transform: uppercase;
          margin-left: 10px;

          img {
            margin-right: 5px;
          }

          &:hover {
            text-decoration: none;
          }
        }
      }
    }
  }
}

.free-sample {
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;

  .free-sample-data {
    background: rgba(59, 59, 63, 0.8);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    height: 100%;

    &::before {
      width: calc(100% - 40px);
      height: calc(100% - 40px);
      border: 2px dashed rgba(255, 255, 255, 0.28);
      content: "";
      position: absolute;
      left: 20px;
      top: 20px;
      z-index: 5;
    }

    div {
      max-width: 350px;
      text-align: center;

      p {
        color: #fff;
        margin-top: 15px;
      }
    }
  }

  .gridview-listing {
    border: 1px solid #ccc;
    padding: 15px;

    .item {
      width: calc(100% / 4);
    }
  }
}

.card-options {
  margin: 30px auto;

  .tophead {
    display: flex;
    align-items: center;
    justify-content: space-between;

    h3 {
      font-size: 24px;
      margin-bottom: 0px;
      margin-top: 0px;
    }

    .card-btn {
      border: 1px solid #524e4d;
      font-size: 15px;
      color: #524e4d;
      text-transform: uppercase;
      padding: 5px 15px;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;

      img {
        margin-right: 5px;
      }
    }
  }

  .form-box {
    padding: 0px;
    max-width: 100%;
    box-shadow: none;
    text-align: left;

    select {
      background: url(../images/Mastercard.png) no-repeat left 10px center;
      background-size: 25px;
      padding-left: 35px;
    }

    .btn {
      width: calc(50% - 12px);
    }
  }
}

.whathappen-text {
  background: #f7f1f3;
  border: 1px dashed #bdbdbd;
  padding: 30px;

  p {
    font-size: 16px;
    margin-bottom: 5px;

    strong {
      font-size: 18px;
    }
  }
}
.alsoLikeSec-toggle-btn.active img {
  transform: rotate(180deg);
}
.alsoLikeSec-toggle-btn {
  position: fixed;
  z-index: 11;
  bottom: 70px;
  font-size: 14px;
  right: 20px;
  background: #fff;
  border-radius: 5px;
  padding: 5px 10px 2px;
  font-weight: 600;
  border: 1px solid;
  box-shadow: 0 0 3px #ccc;
  font-family: "Stepp ITC Std Bold";
  text-transform: uppercase;
}

.alsoLikeSec {
  background: #f9f3f1;
  padding: 25px;
  width: 420px;

  h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-top: 10px;
  }

  ul {
    padding-left: 0px;
    margin: 0px;

    li {
      list-style: none;
      display: flex;
      align-items: flex-start;
      margin-bottom: 24px;

      .product-thumb {
        width: 80px;
        height: 80px;
        background: #fff;
        padding: 5px;
        border: 1px solid #d0d0d0;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
      }

      .product-disc {
        width: calc(100% - 80px);
        padding-left: 15px;

        h6 {
          margin-top: 0px;
          font-size: 15px;
          margin-bottom: 10px;
        }

        .price {
          font-size: 17px;
          font-family: var(--stepp);
          margin-bottom: 10px;

          span {
            margin-left: 10px;
            display: inline-block;
          }
        }

        .btn {
          font-size: 11px;
          padding: 8px 15px;
        }
      }
    }
  }
}

.order-table {
  border: 1px solid #eaecf0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
.main-price-box { 
  left: 12px;
  @media(max-width: 767px) {
    top: 3px;
  }
  .price-box-list-item {
    display: block;
    padding: 7px;
    .item-price {
      font-size: 17px;
    }
    .item-quantity {
font-size: 11px;
    }
  }
  .price-box-list {
    padding: 0;
  }
}

  table {
    width: 100%;

    thead {
      background: #524e4d;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;

      p {
        color: #fff;
        opacity: 0.7;
        white-space: nowrap;
        font-weight: 500;
        font-size: 13px;
        margin-bottom: 0px;
        text-transform: uppercase;
      }
    }

    tbody td {
      padding: 0px;
    }

    td {
      padding: 10px 12px;
      border-bottom: 1px solid #eaecf0;

      &:nth-child(1) {
        width: 150px;
      }

      &:nth-child(3),
      &:nth-child(4),
      &:nth-child(5) {
        width: 180px;
      }

      input {
        background: #fff;
        width: 95px;
        padding: 2px 0px 2px 10px;
        border: 1px solid #cecece;

        &:focus {
          outline: none;
        }
      }
    }

    span.batch {
      display: inline-block;
    }

    tr:nth-child(even) td {
      background: #f9f3f1;
    }

    p {
      margin-bottom: 0px;
      color: var(--black);
      font-size: 15px;
    }
  }

  .pager-btn {
    background: #fff;
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;

    &:hover {
      text-decoration: none;
      background: #f9f3f1;
      color: var(--black);
    }
  }

  .pager {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;

    li {
      list-style: none;

      a {
        padding: 10px 16px;
        color: var(--black);
        opacity: 0.5;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;

        &.active,
        &:hover {
          text-decoration: none;
          background: #fff0f0;
          color: #ee5d90;
          opacity: 1;
        }
      }
    }
  }

  .card {
    background: none;
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .card-header {
    padding: 0px;
    border: none;
    margin: 0px !important;
    border-bottom: 1px solid #eaecf0;
    background: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }

  .sr-number {
    width: 150px;
    padding: 10px 12px;
  }

  .created-date,
  .status,
  .view-info {
    width: 180px;
    padding: 10px 12px;
  }

  .status {
    .in-cart {
      color: #222222;
      font-size: 13px;
      line-height: 16px;
      text-transform: uppercase;
      font-weight: 400;
      padding: 2px 9px;
      display: inline-block;
      background: #dff3e6;
      border-radius: 15px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      -ms-border-radius: 15px;
      -o-border-radius: 15px;
    }

    .delete {
      color: #222222;
      font-size: 13px;
      line-height: 16px;
      text-transform: uppercase;
      font-weight: 400;
      padding: 2px 9px;
      display: inline-block;
      background: #ffcfcf;
      border-radius: 15px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      -ms-border-radius: 15px;
      -o-border-radius: 15px;
    }
  }

  .order-ID {
    width: calc(100% - 690px);
    padding: 10px 12px;
  }

  .view-info {
    display: flex;
    align-items: center;

    .btn {
      min-width: 0px;
      padding: 0px;
      margin-left: 15px;
      width: 20px;
      height: 20px;
      background: url(../images/minus-circle.svg) no-repeat;
      text-indent: -9999px;
      border: none;

      &:before,
      &:after {
        display: none !important;
      }

      &.collapsed {
        background: url(../images/plus-circle.svg) no-repeat;
      }
    }
  }

  .accordion {
    .card:nth-child(even) {
      background: #f9f3f1;
    }
  }

  .card-body {
    padding: 10px 12px;

    ul {
      margin: -10px -12px;
      padding: 0px 12px;

      li {
        display: flex;
        padding: 15px 0px;
        flex-wrap: wrap;
        border-bottom: 1px solid #eaecf0;

        &:last-of-type {
          border-bottom: none;
        }
      }
    }

    .left {
      width: 60%;
      display: flex;
      align-items: flex-start;
    }

    .right {
      width: 40%;
      padding-left: 20px;
      justify-content: flex-end;
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
    }

    .action-btns {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;

      a {
        margin-left: 15px;

        &.wishlist-icon {
          cursor: auto;
        }
      }
    }

    .bottom-row {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 100%;

      p {
        font-family: var(--stepp);
        font-size: 18px;
        margin-right: 15px;
      }

      .cart-field {
        max-width: 140px;
      }

      input {
        font-family: var(--source);
        text-align: center;
        padding: 8px 40px;
        width: 100%;
      }

      .btn {
        width: auto;
        min-width: 150px;
      }

      .remove {
        color: #524e4d;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: underline;
        margin-left: 15px;
      }
    }

    .product-box {
      background: #fff;
      border-radius: 4px;
      width: 200px;
      height: 200px;
      border: 1px solid #eaecf0;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;

      > img {
        object-fit: contain;
        width: 100%;
        height: 100%;
      }

      .batch {
        position: absolute;
        top: -8px;
        right: 10px;
      }
    }

    .product-info {
      padding-left: 20px;
      width: calc(100% - 200px);

      .tophead {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .brand-company {
          max-width: 135px;
        }
      }

      h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
      }

      p {
        font-size: 15px;
        color: #222222;
      }

      .sizes-column {
        margin-top: 15px;

        ul {
          display: flex;
          flex-wrap: wrap;
          padding-left: 0px;
          margin: 5px 0px 0px;

          li {
            list-style: none;
            color: var(--black);
            border: 1px solid #dcdcdc;
            padding: 2px 10px;
            min-width: 55px;
            text-align: center;
            text-transform: uppercase;
            font-size: 15px;
            margin-right: 5px;
            cursor: pointer;
            margin-bottom: 5px;

            &:hover,
            &.active {
              background: #524e4d;
              color: var(--white);
            }
          }
        }
      }
    }
  }
}

.mobile-element,
.listing-view-mobile,
.mobile-menu,
.mobile-sticky-btn,
.mobile-qty {
  display: none;
}

.toast-error {
  background: rgba(255, 0, 0, 0.8) !important;
}

.toast-success {
  background: rgb(79 164 99 / 80%) !important;
}

.toast-warning {
  background: rgba(230, 203, 0, 0.8) !important;
}

.toast-info {
  background: rgba(202, 84, 0, 0.8) !important;
}

.default-message {
  max-width: 500px;
  margin: 80px auto;
  text-align: center;

  .btn {
    background: #524e4d;
    color: #fff;
  }
}

.spinner-box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 100px;
  height: 100px;
  border: 5px solid #ee5d90;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

.mobile-logout-btn {
  display: none;
}

.btns-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

  .btn {
    max-width: 160px;
    margin-left: 20px;
  }

  .text-link {
    padding: 10px 25px;
    font-size: 15px;
    color: #524e4d;
    text-transform: uppercase;
  }
}

/*Search Drop-Down*/

.search-container {
  position: relative;

  .dropdown {
    position: absolute;
    left: 0px;
    width: 430px;
    padding: 5px 15px 15px;
    z-index: 6;
    top: 100%;
    background: #fff;
    box-shadow: 0px 4px 20px 0px #0000000f;
    border: 1px solid #f9f3f1;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;
  }

  .tags {
    a {
      border: 1px solid #e3e3e3;
      padding: 5px 12px;
      font-size: 14px;
      line-height: 14px;
      color: #222;
      margin: 5px;
      display: inline-block;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
    }
  }

  .recent-search {
    background: #eefaff;
    padding: 15px 15px;
    margin: 10px -15px;

    ul {
      padding: 0px;
      margin: 0px;

      li {
        list-style: none;

        a {
          display: block;
          padding: 5px 0px;
          color: #000;

          img {
            margin-right: 5px;
            display: inline-block;
            vertical-align: middle;
          }
        }
      }
    }
  }

  .more-search-option {
    .field-row {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 15px;

      .column {
        width: calc(50% - 7.5px);

        &.first {
          margin-right: 15px;
        }

        label {
          display: block;
          color: #222222;
          font-size: 16px;
          margin-bottom: 5px;
        }

        select,
        input {
          width: 100%;
          background: #fff;
          min-width: 0px;
          text-transform: capitalize;
          border: 1px solid #dbdbdb;
          min-height: 40px;
          padding: 5px 15px;
          border-radius: 8px;
          -webkit-border-radius: 8px;
          -moz-border-radius: 8px;
          -ms-border-radius: 8px;
          -o-border-radius: 8px;

          &:focus {
            outline: none;
          }
        }

        select {
          appearance: none;
          background: #fff url(../images/down-arrow2.svg) no-repeat center right
            10px;
        }
      }
    }

    .btns-group {
      justify-content: flex-end;

      .btn {
        background: #524e4d;
        color: #fff;
        padding: 7px 25px;
      }
    }
  }
}

.hidden,
.close-btn,
.mobile-search {
  display: none;
}

/*Mega-Menu for designers search*/

/* .listing-filter {
    position: relative;
} */

.search-and-filter .searchby-design {
  padding: 5px 15px;
  display: block;
}

.mega-menu {
  display: none;
  position: absolute;
  left: calc(50% + 200px);
  width: 100%;
  max-width: 1180px;
  top: 100%;
  background: var(--white);
  z-index: 9;
  box-shadow: 0px 4px 20px 0px #0000000f;
  transform: translateX(-50%);

  .close-button {
    display: none;
  }
}

.mega-menu-wrap {
  display: flex;
}

.menu-logos {
  background: #eefaff;
  padding: 20px;
  width: 400px;
  max-height: 575px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  &::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  &::-webkit-scrollbar-thumb {
    background: #b7b7b7;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  h4 {
    font-family: var(--source);
    font-size: 16px;
    color: #6397ac;
    margin: 10px auto;
    font-weight: 500;
  }

  ul {
    padding: 0px;
    margin: 0px -4px 15px;
    display: flex;
    flex-wrap: wrap;

    li {
      list-style: none;
      width: calc(33.33% - 8px);
      margin: 4px;

      a {
        display: block;
        padding: 12px 10px;
        border-radius: 8px;
        background: #fbfeff;
        border: 1px solid #c1d8e1;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
      }
    }
  }

  .nav-tabs {
    margin: 0px auto 10px;
    border: none;
    justify-content: center;
    background: #fff;
    border: 1px solid #f9f3f1;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;

    li {
      width: auto;
      border: none;
      border-left: 1px solid #f9f3f1;
      margin: 0px;

      a {
        border: none;
        padding: 12px 15px;
        border-bottom: 3px solid transparent;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;

        &.active {
          border-color: #c4ecfe;
        }
      }

      &:first-of-type {
        border-left: none;
      }
    }
  }
}

.search-tags {
  width: calc(100% - 400px);
  padding: 20px;
  max-height: 575px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;

  &::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  &::-webkit-scrollbar-thumb {
    background: #b7b7b7;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }

  .search-field {
    input {
      width: 100%;
      max-width: 435px;
      margin-bottom: 15px;
      background: #fff url(../images/search-icon.svg) no-repeat right 15px
        center;
      border: 1px solid #dbdbdb;
      color: var(--black);
      font-size: 15px;
      padding: 5px 15px;
      text-transform: uppercase;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;

      &:focus {
        outline: none;
      }
    }
  }

  p {
    margin-bottom: 0px;

    strong {
      font-size: 16px;
    }
  }

  .grid-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;

    .column {
      width: 25%;
    }
  }

  .tags-box {
    margin-bottom: 15px;

    a {
      color: #222222;
      font-size: 15px;
      display: block;

      &:hover {
        color: #ee5d90;
        text-decoration: none;
      }
    }
  }
}

.mega-menu-slider {
  width: 400px;
  padding: 20px;
  background-position: center bottom -20px;

  img {
    max-width: 200px;
    margin: 50px auto 30px;
  }

  h3 {
    color: var(--white);
    margin-bottom: 5px;
  }

  p {
    color: var(--white);
    font-size: 15px;
  }

  .text-btn {
    color: var(--white);
    font-family: var(--source);

    &::before {
      background: var(--white);
    }
  }

  .owl-dots {
    width: 100%;
    text-align: center;
    margin-top: 10px;

    .owl-dot {
      width: 10px;
      height: 10px;
      margin: 0px 5px;
      border: none;
      outline: none;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;

      &.active,
      &:hover {
        background: #ee5d90;
      }

      span {
        display: none;
      }
    }
  }
}

.notification-text {
  margin: -15px 0px 15px;

  span {
    background: #eec55d;
    padding: 8px 25px 8px 15px;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;

    a {
      width: 16px;
      position: absolute;
      height: 16px;
      top: 0px;
      right: 2px;
    }
  }
}

.after-login {
  display: flex;
  align-items: center;
}

.short-menu {
  position: relative;
  margin-left: 30px;

  button {
    border: none;
    background: none;
    padding: 0px;
    outline: none;
  }

  .short-menu-dropdown {
    position: absolute;
    top: 40px;
    display: none;
    z-index: 99;
    left: 0px;
    width: 200px;
    padding: 0px;
    margin: 0px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 4px 20px 0px #0000000f;
    border: 1px solid #f9f3f1;
    border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -ms-border-radius: 0px 0px 10px 10px;
    -o-border-radius: 0px 0px 10px 10px;

    li {
      list-style: none;

      a {
        font-size: 16px;
        font-weight: 400;
        padding: 10px 15px;
        display: block;
        position: relative;

        &:before {
          position: absolute;
          width: 3px;
          height: 100%;
          background: #ee5d90;
          content: "";
          left: 0px;
          top: 0px;
          opacity: 0;
        }
      }

      &:hover a {
        background: #fceff4;
        color: #222222;
        text-decoration: none;

        &:before {
          opacity: 1;
        }
      }
    }
  }
}

.special-offer-box {
  padding-top: 100px;

  .container {
    display: flex;
    flex-wrap: wrap;

    .tabs-slider {
      width: calc(100% - 520px);
      padding-left: 15px;

      .special-offer-price {
        background: url(../images/special-batch-vector.png) no-repeat center
          center;
        background-size: contain;
        padding: 28px 20px;
        margin-top: -42px;
        position: relative;

        p {
          margin: 0px;
          font-weight: 700;
          font-size: 20px;
        }
      }
    }
  }

  .realoftheweek-box {
    width: 520px;
    height: 425px;
    position: relative;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
    }

    .batch-box {
      position: absolute;
      top: -50px;
      width: 100px;
      height: 100px;
      left: 50%;
      margin-left: -50px;
    }

    .caption {
      background: rgba(152, 152, 152, 0.3);
      width: 100%;
      top: auto;
      text-align: center;
      max-width: 420px;
      padding: 15px 40px;
      left: 50%;
      position: absolute;
      border-radius: 8px;
      backdrop-filter: blur(10px);
      bottom: 20px;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;

      p {
        color: var(--white);
        font-size: 16px;
        font-weight: 400;
        margin: 0px;

        samp {
          font-size: 20px;
        }
      }
    }
  }
}

.switch {
  display: flex;
  align-items: center;
}

.switch label {
  cursor: pointer;
  margin: 0px 8px;
  white-space: nowrap;
  font-size: 16px;
  transition: font-weight 0.3s, color 0.3s;
}

.switch-box {
  width: 50px;
  height: 24px;
  background: #ffeef5;
  border: 1px solid #ee5d90;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
  box-sizing: border-box;
  cursor: pointer;
}

.switch .slider {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #d5d5d5;
  border-radius: 50%;
  transition: 0.3s;
  left: 3px;
}

.switch input {
  display: none;
}

.switch input:checked + .switch-box {
  background: #ee5d90;
}

.switch input:checked + .switch-box .slider {
  left: calc(100% - 21px);
  background: #fff;
}

.switch .active {
  font-weight: bold;
  color: #ee5d90;
}

.pagination-head {
  width: 100%;
  margin: 0px auto 60px;
}
.pagination-head table {
  margin-left: auto;
  margin-right: auto;
}

.checklist {
  padding-left: 0px;
  margin-bottom: 20px;

  li {
    padding-left: 24px;
    background: url(../images/check.svg) no-repeat left center;
    background-size: 18px 18px;
    list-style: none;
    margin-bottom: 7px;
  }
}

.counter-box {
  margin: 80px auto;

  ul {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    li {
      list-style: none;
      width: 23%;
      background: #fceff4;
      padding: 20px;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;

      p {
        font-size: 16px;
      }

      .counter-section {
        color: #ee5d90;
        font-size: 80px;
        line-height: normal;
        font-weight: bold;
      }
    }
  }
}

#backToTop {
  position: fixed;
  bottom: 20px;
  z-index: 12;
  left: 20px;
  background: #fff;
  width: 44px;
  height: 44px;
  border: 1px solid var(--black);
  border-radius: 5px;
  cursor: pointer;
  display: none;
  font-size: 0px;

  &::before {
    border-left: 3px solid var(--black);
    border-top: 3px solid var(--black);
    content: "";
    left: 14px;
    top: 16px;
    width: 14px;
    height: 14px;
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}

.announcement-icon {
  width: 48px;
  height: 48px;
  background: #259b40;
  border-radius: 100%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;

  svg {
    width: 24px;
    height: 24px;
    margin: 12px;
  }
}

.announcement-box {
  background: #fff;
  width: 360px;
  position: fixed;
  right: 20px;
  bottom: 85px;
  z-index: 12;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;

  .inside {
    display: flex;
    flex-wrap: wrap;

    .imagebox {
      width: 90px;
    }

    .text-box {
      width: calc(100% - 90px);
      padding-left: 15px;

      h4 {
        margin: 0px;
        font-size: 18px;
      }

      p {
        font-size: 12px;
        margin-bottom: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      a {
        font-size: 12px;
      }
    }
  }

  .closeBtn {
    width: 24px;
    height: 24px;
    position: absolute;
    right: -10px;
    top: -10px;
    border: 1px solid #fff;
    background: var(--black);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;

    img {
      width: 20px;
      height: 20px;
      margin: 1px;
      display: block;
      filter: brightness(0) invert(1);
      -webkit-filter: brightness(0) invert(1);
    }
  }
}

#AnnouncemntPopUp {
  .modal-dialog {
    max-width: 850px;
  }

  .deliveryPopText {
    padding: 0px 40px 20px 0px !important;
    height: auto !important;
    margin-top: 20px !important;
  }
}

@media (min-width: 992px) {
  .topbox {
    height: calc(100vh - 340px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* R E S P O N S I V E  -  C S S */

@media (max-width: 1580px) {
  .menu-logos {
    width: 380px;
  }

  .search-tags {
    width: calc(100% - 380px);
  }

  .mega-menu {
    max-width: calc(100% - 320px);
    left: calc(50% + 140px);
  }

  .right-head {
    .mega-menu {
      max-width: 100%;
      left: 50%;
    }
  }
}

@media (max-width: 1440px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }

  .banner-section {
    background-position: right -250px center;
  }

  .signup-btn {
    margin-left: 15px;
  }

  .navigation ul li a {
    padding: 10px 10px;
  }

  .cart-info {
    white-space: nowrap;
    margin-left: 10px;
  }

  .signup-btn {
    font-size: 14px;
    margin-left: 10px;
  }
}

@media (max-width: 1280px) {
  .mega-menu {
    max-width: 100%;
    left: 50%;
  }
}

@media (max-width: 1199px) {
  .top-slider {
    .item {
      padding: 100px 0px 120px;
    }

    .header-content {
      max-width: 420px;
      margin-left: 100px;
    }
  }

  .signup-btn {
    img {
      margin-right: 5px;
      width: 32px;
      height: 32px;
    }
  }

  .navigation {
    & ul {
      & li {
        a {
          padding: 10px 8px;
          font-size: 14px;
        }
      }
    }
  }

  .services-bar {
    & .col-md-3 {
      img {
        margin-right: 10px;
        width: 40px;
        height: 40px;
      }

      h5 {
        font-size: 20px;
        text-align: left;
      }
    }
  }

  .wholesale-box {
    .col-md-5 div {
      padding-left: 30px;
    }
  }

  .product-sec {
    & .item {
      &.mid-item {
        min-height: 300px;
      }
    }
  }

  .banner-section {
    background-position: right -350px center;
  }

  .right-bottom-menu:before {
    display: block;
  }

  .shopby-category {
    .cat-box span {
      width: 110px;
      height: 110px;
    }
  }

  .search-and-filter {
    overflow: auto;

    &::-webkit-scrollbar {
      width: 0px;
      height: 0px;
    }
  }

  .view-icons {
    position: relative;

    &::before {
      width: 24px;
      height: 100%;
      content: "";
      position: absolute;
      top: 0px;
      left: -24px;
      background: url(../images/scrolling_shade.png) repeat-y;
    }
  }

  .middle-wrap {
    & .right-container {
      & .cards-group {
        > ul {
          padding-right: 0px;
          overflow: auto;
          width: 100%;
          padding-bottom: 15px;

          li {
            margin-left: 15px;
            width: calc(33.33% - 10px);
            min-width: 250px;
          }
        }

        .add-card {
          width: 100%;
          margin-top: 30px;
        }
      }
    }
  }

  .checkout-wrap {
    > .left {
      width: calc(100% - 320px);
    }
  }

  .alsoLikeSec {
    width: 320px;
  }

  .checkout-items {
    & .item-row {
      & .column {
        .product-title {
          min-width: 210px;
          margin-right: 20px;
        }
      }
    }
  }

  .order-table {
    & table {
      .view-info p {
        display: none;
      }

      td {
        &:nth-child(3),
        &:nth-child(4),
        &:nth-child(5) {
          width: 110px;
        }

        &:nth-child(1) {
          width: 130px;
        }
      }
    }

    .sr-number {
      width: 130px;
    }

    .created-date,
    .status,
    .view-info {
      width: 110px;
    }

    .order-ID {
      width: calc(100% - 460px);
    }

    .card-body {
      .left {
        width: 100%;
      }

      .right {
        padding-left: 0px;
        width: 100%;
        margin-top: 20px;
        align-items: center;
        justify-content: space-between;
      }

      .action-btns {
        align-items: center;
      }

      .bottom-row {
        width: auto;
      }
    }
  }

  .need-help-block {
    ul {
      display: block;

      li {
        width: 100%;
        margin-left: 0px;
        margin-bottom: 15px;
      }
    }
  }

  .mega-menu {
    position: fixed;
    left: 0px;
    border: none;
    z-index: 11;
    background: #fff;
    bottom: 0px;
    width: 100%;
    height: auto;
    top: auto;
    padding-top: 0px;
    transform: none;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;

    &:before {
      content: "";
      background: rgba(0, 0, 0, 0.6);
      width: 100%;
      left: 0px;
      top: 0px;
      height: 100%;
      position: fixed;
      z-index: -1;
    }

    .close-button:not(.close-button-icon) {
      width: 48px;
      display: block;
      text-indent: -9999px;
      border: none;
      height: 6px;
      margin: 0px auto;
      background: #d9d9d9;
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
      position: absolute;
      top: 10px;
      left: 50%;
      margin-left: -24px;
    }

    .search-tags {
      padding-top: 30px;

      .grid-box {
        .column {
          width: 50%;
        }
      }
    }
  }

  .right-head {
    & .search-and-filter {
      input {
        min-width: 150px;
      }

      .searchby-design {
        min-width: 120px;
      }
    }
  }

  .category-slider {
    .cat-slide {
      min-height: 485px;
    }
  }

  .category-boxes {
    & li {
      .imagebox {
        height: 260px;
      }
    }
  }

  .product-infobox {
    .large-thumb {
      width: calc(50% - 50px);
      height: 520px;
    }

    .product-disc {
      width: calc(50% + 50px);
      padding: 35px 15px 15px 70px;
    }
  }

  .product-tabs {
    ul.nav {
      width: 70px;
      left: calc(50% - 50px);
    }
  }
}

@media (max-width: 991.98px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 12px 0px;
  }

  h1,
  .h1 {
    font-size: 42px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  h5 {
    font-size: 16px;
  }

  header {
    box-shadow: none;
    padding: 12px 0px;
  }
  .cart-info.scrolled {
    opacity: 0 !important;
    display: none;
  }
  .listing-filter .cart-info {
    display: none;
  }
  .header-bottom {
    background: #f9f3f1;
  }

  .store-sec {
    background-position: center left -320px;
  }

  .navbar-toggler {
    width: 32px;
    height: 32px;
    display: block;
    background: none;
    padding: 0px;
    position: relative;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;

    span {
      background: #222222;
      width: 24px;
      height: 2px;
      display: block;
      margin: 7px auto;
      border-radius: 5px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      transition: all 0.5s ease;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
    }
  }

  .show_menu .navbar-toggler {
    span:nth-child(1) {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      margin-top: 14px;
    }

    span:nth-child(2) {
      opacity: 0;
      margin: 0px;
    }

    span:nth-child(3) {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      margin-top: -11px;
    }
  }

  .signup-btn span {
    display: none;
  }

  .show_menu {
    overflow: hidden;
  }

  .navigation {
    background: var(--white);
    position: fixed;
    border-top: 1px solid #eeeeee;
    left: 0px;
    top: -100%;
    width: 100%;
    height: calc(100% - 155px);
    z-index: 10;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    padding-bottom: 80px;

    ul {
      flex-wrap: wrap;
      padding-top: 30px;

      li {
        width: 100%;

        a {
          color: var(--black);
          text-transform: uppercase;
          font-size: 19px;
          font-weight: 400;
          padding: 10px 15px;

          &:after {
            display: none;
          }
        }
      }
    }
    .cart-info.scrolled {
      opacity: 0;
    }

    .mobile-menu {
      display: block;
      padding-top: 20px;

      h3 {
        text-align: center;
        color: var(--black);
        font-size: 32px;
        text-transform: uppercase;
      }

      a.btn {
        margin: 20px 20px 0px;
        width: calc(100% - 40px);
      }

      ul {
        padding-top: 20px;

        li {
          width: 33%;
          text-align: center;
          padding: 10px;

          a {
            padding: 0px;
          }

          img {
            display: block;
            margin: 0px auto 15px;
          }

          a {
            font-size: 16px;
          }
        }
      }

      .text-menu {
        li {
          width: 100%;
          padding: 0px;
          text-align: left;

          a {
            padding: 10px 15px;
            font-size: 19px;
          }
        }
      }
    }

    .mobile-sticky-btn {
      position: fixed;
      display: block;
      bottom: 69px;
      left: 0px;
      width: 100%;
      background: var(--white);

      ul {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;

        li {
          width: auto;

          a {
            font-size: 16px;
            padding: 12px 15px;
          }

          small {
            font-size: 15px;
            background: #eeeeee;
            display: inline-block;
            font-weight: 500;
            padding: 0px 7px;
            margin-left: 5px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
          }
        }
      }
    }
  }

  .show_menu header {
    position: sticky;
    top: 0px;
    z-index: 10;
    background: var(--white);
  }

  .show_menu .navigation {
    opacity: 1;
    visibility: visible;
    top: 90px;
  }

  .signup-btn {
    margin-left: 0px;
    margin-right: 15px;

    img {
      margin-right: 0px;
    }
  }

  .top-slider {
    .header-content {
      max-width: 390px;
      margin-left: 50px;
    }
  }

  .category-block {
    ul {
      flex-wrap: wrap;

      li {
        width: calc(100% / 2 - 10px);
        margin-bottom: 20px;

        &:nth-child(2n + 1) {
          margin-left: 0px;
        }
      }
    }
  }

  .insta-sec {
    flex-wrap: wrap;

    .insta-item:last-of-type {
      display: none;
    }

    .insta-item {
      width: 50%;

      img {
        width: 100%;
      }
    }
  }

  .sale-sec {
    .row {
      min-height: 480px;
    }
  }

  .banner-section {
    padding: 60px 0px;

    .text-caption {
      margin: 0px auto;
      text-align: center;
      background: rgb(237 242 243 / 65%);
      padding: 10px;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;

      h1 {
        padding-left: 0px;
        border-left: none;
        font-size: 32px;
        line-height: 42px;
      }
    }
  }

  .banner-section.contact-banner {
    .text-caption {
      background: none;
    }
  }

  .about-text {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 50px;
    margin-bottom: 50px;

    .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

  .contact-box {
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;

    .col-6 {
      max-width: 100%;
      flex: 0 0 100%;
    }
  }

  .contact-info {
    margin: 0px auto 80px;
  }

  .cart-info {
    margin-right: 15px;
    margin-left: 0px;
  }

  .signup-btn {
    img {
      width: 42px;
      height: 42px;
    }
  }

  .wishlist {
    display: block;
    margin-left: 0px;
  }

  .category-top {
    .category-slider {
      order: 1;
      width: 100%;
      margin-left: auto;
    }

    .short-categories {
      width: 100%;
      order: 2;
    }
  }

  .lightblue-full {
    .nav {
      overflow: auto;
      flex-wrap: nowrap;

      &::-webkit-scrollbar {
        width: 0px;
        height: 0px;
      }

      li a {
        white-space: nowrap;
      }
    }

    .mid-item {
      max-width: 600px;
      margin: 0px auto 30px;
      width: 100%;
    }

    .tab-inside .tabs-slider {
      display: none;
    }
  }

  .mobile-element {
    display: block;
    width: 100%;
  }

  .shopby-category-slide {
    display: none !important;
  }

  .product-slider,
  .mobile-shopby-cat {
    display: flex;
    overflow: auto;
    padding-bottom: 20px;
    width: 100%;
  }

  .gridview-listing {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 20px;
    width: 100%;
    margin-bottom: 30px;

    .btn {
      min-width: 100%;
    }

    .item {
      min-width: 200px;
      padding: 8px;
      margin-bottom: 0px;
    }

    &.two-items-row {
      overflow: visible;
      flex-wrap: wrap;

      .item {
        min-width: 50%;
        margin-bottom: 20px;
      }
    }
  }

  .product-slider .item {
    min-width: 200px;
    padding: 8px;
  }

  .mobile-shopby-cat .item {
    margin: 10px 20px;
  }

  .shopby-category {
    .cat-box span {
      width: 140px;
      height: 140px;
    }
  }

  .product-box {
    .thumb {
      min-height: 190px;

      > img {
        min-height: 190px;
      }
    }

    .main-price {
      font-size: 18px;
    }

    .second-price {
      font-size: 13px;
    }
  }

  .product-tabs {
    margin-bottom: 10px;

    ul.nav {
      width: 100%;
      justify-content: center;
      left: 50%;
      top: calc(50% - 70px);

      li {
        margin: 5px;
      }
    }
  }

  .featured-box {
    .halfbox {
      width: 100%;
    }

    ul {
      padding-top: 15px;

      li {
        width: calc(50% - 7.5px);
      }

      li:nth-child(odd) {
        margin-left: 0px;
      }
    }
  }

  .saveupto-sec {
    & .container {
      padding-bottom: 5px;
      margin-bottom: 50px;

      .col-md-6:first-of-type {
        padding-right: 0px;
      }
    }
  }

  .product-infobox {
    flex-wrap: wrap;

    .large-thumb {
      width: 100%;
      max-width: 450px;
      margin: 0px auto;
    }

    .product-disc {
      width: 100%;
      padding: 100px 15px 15px;

      .brand-company {
        position: relative;
        display: inline-block;
        right: auto;
        margin-bottom: 10px;
      }
    }
  }

  .header-bottom {
    display: none;
  }

  .listing-filter {
    box-shadow: 0px 4px 6px 0px #0000000f;
    position: relative;
  }

  .search-and-filter {
    form {
      input {
        width: 34px;
        min-width: 34px;
        text-indent: -999px;
        padding: 4px;
        background-position: center;
      }
    }
  }

  .listing-view-table {
    display: none;
    overflow: auto;
    width: 100%;

    table {
      width: 900px;
    }
  }

  .listing-view-mobile {
    display: block;
    border: 1px solid #eaecf0;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .listing-mob-card {
    display: flex;
    padding-right: 15px;
    border-bottom: 1px solid #eaecf0;

    &:nth-child(even) {
      background: #f9f3f1;

      .leftbox .second-price {
        background: #fff;
      }
    }

    &.disable {
      opacity: 0.4;
      pointer-events: none;
    }

    &:last-of-type {
      margin-bottom: 0px;
      border-bottom: none;
    }

    .leftbox {
      width: 110px;
      display: flex;
      flex-wrap: wrap;
      align-content: center;

      .main-price {
        background: #ee5d90;
        font-family: var(--stepp);
        display: inline-block;
        white-space: nowrap;
        font-size: 14px;
        margin: 2px 0px;
        padding: 5px 8px;
        text-shadow: 0px 2px 1px #701f3c;
        color: var(--white);
        border-radius: 0px 4px 4px 0px;
        -webkit-border-radius: 0px 4px 4px 0px;
        -moz-border-radius: 0px 4px 4px 0px;
        -ms-border-radius: 0px 4px 4px 0px;
        -o-border-radius: 0px 4px 4px 0px;
      }

      .second-price {
        background: #f9f3f1;
        font-family: var(--stepp);
        font-size: 12px;
        display: inline-block;
        margin: 2px 0px;
        padding: 6px 10px;
        color: var(--black);
        border-radius: 0px 4px 4px 0px;
        -webkit-border-radius: 0px 4px 4px 0px;
        -moz-border-radius: 0px 4px 4px 0px;
        -ms-border-radius: 0px 4px 4px 0px;
        -o-border-radius: 0px 4px 4px 0px;
      }
    }

    .rightbox {
      width: 120px;
      text-align: right;

      .btnBox {
        text-align: center;
        padding-top: 12px;
        min-height: 62px;
        display: flex;
        align-items: flex-end;
        flex-wrap: wrap;
        justify-content: center;
      }

      .btn {
        font-size: 13px;
        padding: 6px 15px;
        min-width: 105px;
        background: #524e4d;
        color: #fff;
        border: none;

        &.notify-btn {
          background: #4fa463;
          border: none;
        }
      }

      .low-stock {
        font-size: 11px;
        border: none;
        color: var(--white);
        text-transform: uppercase;
        background: #ffa411;
        display: inline-block;
        vertical-align: bottom;
        line-height: 18px;
        padding: 2px 5px 0;
        border-radius: 4px 4px 0 0;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -ms-border-radius: 4px 4px 0 0;
        -o-border-radius: 4px 4px 0 0;
      }

      .coming-soon {
        font-size: 11px;
        border: none;
        color: var(--white);
        text-transform: uppercase;
        background: #524e4d;
        display: inline-block;
        vertical-align: bottom;
        line-height: 18px;
        padding: 2px 5px 0;
        border-radius: 4px 4px 0 0;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -ms-border-radius: 4px 4px 0 0;
        -o-border-radius: 4px 4px 0 0;
      }
    }

    .midd {
      width: calc(100% - 230px);
      padding: 15px 0px;

      p {
        font-size: 15px;
        line-height: 18px;
        text-transform: uppercase;
        font-weight: 500;
      }

      .product-bottom {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        .right {
          margin-left: 10px;
          display: flex;

          a {
            margin: 0px 2px;
          }
        }

        p {
          font-size: 14px;
          font-weight: 400;
          margin-bottom: 0px;

          span {
            color: #c5c5c5;
            margin: 0px 2px;
          }
        }
      }
    }
  }

  .modal-dialog-slideout {
    margin: 0 0 auto 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
  }

  .modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0, 100%) scale(1);
    transform: translate(0, 100%) scale(1);
    -moz-transform: translate(0, 100%) scale(1);
    -ms-transform: translate(0, 100%) scale(1);
    -o-transform: translate(0, 100%) scale(1);
  }

  .modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    display: flex;
    /* align-items: flex-end;
        -webkit-box-align: end; */
    max-height: calc(100% - 100px);
    min-height: calc(100% - 100px);
    height: auto;
    /* overflow: auto;
        -webkit-overflow-scrolling: touch; */
    margin-top: 100px;
  }

  .cart-outer {
    flex-wrap: wrap;

    > .left-products {
      display: none;
    }

    .left-products {
      width: calc(100% + 40px);
      margin: 20px -20px 0px;
      padding-bottom: 0px;
      height: auto;
      border-radius: 0;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;

      ul {
        display: flex;
        overflow: auto;
        -webkit-overflow-scrolling: touch;

        li {
          min-width: 280px;
          padding-right: 20px;

          .btn {
            min-width: 100%;
          }
        }
      }
    }

    .right-cart-disc {
      width: 100%;
      display: block;
      height: auto;
      position: relative;

      &:before {
        content: "";
        background: #d9d9d9;
        width: 48px;
        height: 6px;
        position: absolute;
        top: 8px;
        border-radius: 8px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -ms-border-radius: 8px;
        -o-border-radius: 8px;
      }

      .tophead {
        position: sticky;
        top: 0px;
        background: #f9f3f1;
      }

      .cart-itemsList {
        & li {
          & .product_disc {
            .left {
              width: calc(100% - 80px);
            }

            .right {
              width: 80px;
            }
          }
        }
      }
    }

    .fetures {
      padding: 0px;

      li {
        font-size: 12px;
        white-space: nowrap;
        padding: 0px 10px;

        img {
          margin-right: 3px;
        }
      }
    }

    .subtotal-box p {
      font-size: 12px;
    }
  }

  .mobile-footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 10;
    background: #fff;
    box-shadow: 0px -5px 20px 0px #0000000a;

    ul {
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 0px;
      margin: 0px;

      li {
        list-style: none;
        min-width: 20%;
        text-align: center;

        span {
          width: 24px;
          height: 24px;
          display: block;
          margin: 0px auto 5px;
        }

        a {
          padding: 8px 0px;
          display: block;
          font-size: 12px;
          text-transform: uppercase;
          font-weight: 400;

          &:hover {
            text-decoration: none;
            color: #000;
          }

          span .stroke-color path {
            stroke: #222222;
          }

          span .fill-color path {
            fill: #222222;
          }

          &.active {
            color: #ee5d90;

            span .stroke-color path {
              stroke: #ee5d90;
            }

            span .fill-color path {
              fill: #ee5d90;
            }
          }
        }
      }
    }
  }

  .product-detail-page {
    & .quickview_wrap {
      & .inside {
        align-items: flex-start;

        .right {
          padding-left: 30px;
          max-width: calc(100% - 300px);
        }
      }
    }
  }

  .checkout-wrap {
    > .left {
      width: 100%;
      padding-right: 0px;
    }

    .alsoLikeSec {
      width: 100%;
      margin-top: 30px;

      ul {
        display: flex;
        overflow: auto;
        margin-top: 20px;

        &::-webkit-scrollbar {
          width: 6px;
          height: 6px;
        }

        li {
          margin-right: 20px;
        }
      }
    }
  }

  .order-table {
    overflow: auto;
    -webkit-overflow-scrolling: touch;

    table {
      min-width: 650px;
    }

    .card-body {
      .product-box {
        width: 140px;
        height: 140px;
      }

      .product-info {
        width: calc(100% - 140px);
      }
    }
  }

  .mobile-logout-btn {
    display: block;
    margin: 10px 15px;

    &:hover {
      img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
      }
    }
  }

  .search-container {
    .close-btn: not(.close-btn-icon);
     {
      width: 48px;
      display: block;
      text-indent: -9999px;
      border: none;
      height: 6px;
      margin: 0px auto;
      background: #d9d9d9;
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;

      &:focus {
        outline: none;
      }
    }
    .mobile-search-input-main-wrapper .mobile-search-input-wrapper {
      background-image: unset;
    }
    .mobile-search-input-main-wrapper {
      margin: 0 -15px;
    }

    .mobile-search {
      display: block;

      input {
        width: calc(100% + 30px);
        background-position: center right 15px;
        text-indent: 0;
        padding: 10px 15px;
        margin-bottom: 10px;
        margin-top: 10px;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        border-radius: 0px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
      }
    }

    .dropdown {
      position: fixed;
      left: 0px;
      border: none;
      z-index: 11;
      background: #fff;
      bottom: 0px;
      width: 100%;
      height: calc(100% - 150px) !important;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      top: auto;
      padding-top: 30px;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;

      &:before {
        content: "";
        background: rgba(0, 0, 0, 0.6);
        width: 100%;
        left: 0px;
        top: 0px;
        height: calc(100% - 190px);
        position: fixed;
        z-index: -1;
      }

      &::after {
        content: "";
        background: #fff;
        width: 100%;
        border-radius: 10px 10px 0 0;
        left: 0px;
        top: 0px;
        height: 100%;
        position: absolute;
        z-index: -1;
        -webkit-border-radius: 10px 10px 0 0;
        -moz-border-radius: 10px 10px 0 0;
        -ms-border-radius: 10px 10px 0 0;
        -o-border-radius: 10px 10px 0 0;
      }
    }
  }

  .mega-menu {
    height: calc(100% - 150px);
  }

  .mobile-overlay {
    top: 0px;
    position: fixed;
    width: 100%;
    height: 150px;
    left: 0px;
  }

  .mega-menu-wrap {
    background-color: #fff;
    flex-wrap: wrap;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-logos {
    margin-top: 30px;
    max-height: none;
    width: 100%;

    ul li a {
      border: none;
      background: none;
      padding: 5px 10px;
    }

    .nav-tabs {
      li {
        a {
          font-size: 14px;
        }
      }
    }
  }

  .search-tags {
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .category-slider {
    margin-top: 0px;
  }

  .short-menu {
    display: none;
  }

  .signup-btn {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .right-head {
    position: static;
  }

  header {
    margin-bottom: 80px;
    position: sticky;
    top: 0px;
  }

  .search-and-filter {
    position: absolute;
    top: 91px;
    width: 100%;
    background: #f9f3f1;
    left: 0px;
    padding: 15px;

    .search-container {
      width: 50%;

      input {
        width: 100%;
        min-width: 40px;
      }
    }

    .menu-container {
      width: 50%;
      margin-left: 10px;
      margin-right: 5px;

      .searchby-design {
        width: 100%;
        min-width: 120px;
        max-width: none;
        margin: 0;
      }
    }
  }

  .listing-filter {
    position: sticky;
    top: 90px;
    width: 100%;
    margin-top: -80px;

    .search-and-filter {
      position: static;
    }
  }

  .category-slider {
    .cat-slide {
      min-height: 300px;
    }
  }

  .special-offer-box {
    padding: 90px 0px 30px;

    .realoftheweek-box {
      width: 100%;
      height: 350px;
      position: relative;
      max-width: 500px;
      margin: 0px auto;
    }
  }

  .lightblue-full {
    .tab-inside .tabs-slider {
      display: block;
      width: 100%;
      padding-left: 0;
      margin-top: 70px;
    }
  }

  .product-tabs {
    ul.nav {
      width: 100%;
      justify-content: center;
      left: 50%;
      top: 280px;
      flex-wrap: nowrap;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);

      li img {
        width: 80px;
        height: 80px;
        object-fit: contain;
      }
    }
  }

  .product-infobox {
    .large-thumb {
      max-width: 100%;
      height: 330px;
    }

    .product-disc {
      .btn {
        max-width: 100%;
      }
    }
  }

  .right-head {
    .mega-menu {
      left: 0px;
    }
  }

  .special-offer-box .owl-dots {
    display: none !important;
  }

  .desktop-element {
    display: none;
  }

  .counter-box {
    ul li {
      width: 48%;
      margin-bottom: 4%;

      .counter-section {
        font-size: 60px;
      }
    }
  }

  #AnnouncemntPopUp {
    .modal-dialog {
      max-width: 470px;
    }
  }
}

@media (max-width: 767.98px) {
  .mobile-listing-filter-wrapper .switch label {
    margin: 0px 3px;
    font-size: 14px;
  }
  .mobile-listing-filter-wrapper .more-filter-item-wrapper .menu-logos ul li {
    width: calc(50% - 8px);
  }

  /*.mobile-listing-filter-wrapper .switch {
    display: block;
    margin-left: 3px;
}*/
  .mobile-listing-filter-wrapper .fiter-title {
    font-size: 18px;
    border-bottom: 1px solid #000;
    margin: 0 -20px;
    padding: 0 20px 10px 20px;
    margin-bottom: 10px;
    font-family: "Source Sans 3";
    text-transform: capitalize;
    color: #ee5d90;
  }
  .mobile-listing-filter-wrapper .switch .switch-box {
    width: 45px;
    height: 20px;
  }

  .mobile-listing-filter-wrapper .switch .slider {
    width: 15px;
    height: 15px;
  }

  .mobile-listing-filter-wrapper .search-and-filter .menu-button {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: auto;
    font-size: 0;
    margin: 0 3px;
    padding: 0;

    img {
      margin-right: 0;
    }
  }

  /*.mobile-listing-filter-wrapper .search-and-filter {
    padding: 3px 0px;
}*/

  .mobile-listing-filter-wrapper .search-and-filter .filter-btn {
    min-width: auto;
    font-size: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;

    img {
      margin-right: 0;
      width: 20px;
    }
  }

  .mobile-listing-filter-wrapper .search-and-filter .menu-container {
    margin-left: 3px;
    margin-right: 0px;
    display: flex;
    align-items: center;
    width: auto;
  }

  .mobile-listing-filter-wrapper
    .search-and-filter
    .search-container
    .search-input-wrapper {
    width: 30px;
    height: 30px;
    min-width: auto;
    background-position: center;
  }
  .close-button-icon {
    position: absolute;
    right: 10px;
    top: 5px;
    background: #e0dfdf;
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  .close-button-icon img {
    max-width: 10px;
  }

  .mobile-listing-filter-wrapper .search-and-filter .search-container {
    display: flex;
    align-items: center;
    width: auto;
  }

  .notification-text {
    font-size: 14px;
    span {
      padding: 3px 18px 3px 5px;
      color: #222222;
      font-size: 12px;
      a img {
        max-width: 15px;
      }
    }
    .notification-text-inner {
      overflow-x: auto;
      width: calc(100% - 120px);
    }
    .notification-text-wrapper {
      width: 120px;
    }
  }
  .checkout-items {
    & .item-row {
      & .column {
        .price {
          white-space: normal;
        }
      }
    }
  }
  .btn {
    min-width: 160px;
  }

  .top-slider {
    .item {
      padding: 0px 0px 370px;
      background-size: auto 360px;
      background-position: right 20% bottom;
      background-color: #f5ebea;
    }

    .header-content {
      text-align: center;
      margin-left: auto;
      max-width: 100%;
      padding-top: 50px;
    }
  }

  .category-slider {
    h1 {
      font-size: 32px;
    }

    p {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 12px;
    }
  }

  .services-bar {
    overflow: auto;
    .row {
      width: 450px;
    }

    .col-md-3 {
      width: 25%;
      flex: 0 0 25%;
      max-width: 25%;
      flex-wrap: wrap;
      margin: 10px auto;

      &:before {
        right: -20px;
      }

      img {
        margin: 0px auto 15px;
        width: 40px;
        height: 40px;
      }

      h5 {
        width: 100%;
        text-align: center;
        font-size: 15px;
      }
    }
  }

  .product-sec {
    .col-6 {
      max-width: 100%;
      flex: 0 0 100%;
      margin-top: 10px;

      .col-6 {
        max-width: 50%;
        flex: 0 0 50%;
      }
    }

    .item {
      &.mid-item,
      &.small-item {
        min-height: 280px;
      }
    }
  }

  .wholesale-box {
    position: relative;

    .btn {
      width: 100%;
      max-width: 350px;
    }

    .col-md-7:before {
      content: "";
      background: linear-gradient(
        360deg,
        rgba(247, 241, 243, 0) 73.94%,
        #f5edf0 100%
      );
      height: 100px;
      width: calc(100% - 30px);
      position: absolute;
      top: 0;
      left: 15px;
      z-index: 6;
    }

    .col-md-5 div {
      text-align: center;
      padding: 25px;
    }
  }

  .sale-sec {
    background-color: #c9b3a5;
    background-position: left -50px bottom;
    background-size: auto 300px;

    .row {
      min-height: 550px;
      align-items: flex-start !important;

      .col-md-6 {
        text-align: center;
        padding: 25px 15px;

        &:first-of-type {
          display: none;
        }
      }
    }
  }

  .testimonial-sec {
    h3 {
      padding: 0px 15px;
    }
  }

  .testimonial-slide {
    padding-left: 15px;
  }

  .store-sec {
    background-position: left top;
    background-size: auto 300px;
    padding-top: 320px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;

    &:before {
      background: rgb(238, 250, 255);
      background: linear-gradient(
        0deg,
        rgba(238, 250, 255, 1) 0%,
        rgba(238, 250, 255, 1) 50%,
        rgba(238, 250, 255, 0) 100%
      );
      content: "";
      width: 100%;
      height: 100px;
      position: absolute;
      top: 250px;
      left: 0px;
    }
  }

  .customer-support {
    img {
      margin-bottom: 20px;
    }

    text-align: center;
  }

  .need-help-block {
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);

    .col-md-4 h3,
    .col-md-4 > p {
      text-align: center;
    }

    .col-md-4 ul {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      margin-top: 20px;

      li {
        width: 50%;
      }
    }
  }

  footer {
    .footer-logo {
      text-align: center;
    }

    .col-md-4 {
      p {
        opacity: 0.3;
        text-align: center;
        max-width: 100%;
      }
    }

    .col-md-3,
    .col-md-2 {
      display: none;
    }
  }

  .foorer-accordian {
    display: block;
    width: 100%;
    padding: 0px 15px;
    margin-top: 30px;

    > li {
      margin-bottom: 10px;
    }

    .faq-header button {
      outline: none;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      color: var(--white);
      background: url(../images/up-arrow.svg) no-repeat right center;
      border: none;
      padding: 5px 20px 5px 0px;
      width: 100%;
      text-align: left;

      &.collapsed {
        background: url(../images/down-arrow.svg) no-repeat right center;
      }
    }
  }

  .product-sec {
    & .item {
      &.large-item {
        min-height: 450px;
      }
    }
  }

  .contact-box {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .contact-info {
    padding: 20px;

    & ul {
      li {
        width: 100%;
      }
    }
  }

  .signup-btn {
    display: none;
  }

  .cart-info {
    margin-right: 5px;
    padding: 5px 8px;
  }

  .right-bottom-menu {
    display: none;
  }

  .mobile-filter {
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0px;

    li {
      list-style: none;
      margin-left: 10px;
    }
  }

  .left-browse-menu {
    width: calc(100% - 65px);
  }

  .mobile-filter {
    position: relative;

    &::before {
      width: 24px;
      height: calc(100% + 20px);
      content: "";
      position: absolute;
      top: -10px;
      left: -24px;
      background: url(../images/scrolling_shade.png) repeat-y;
    }
  }

  .left-browse-menu li {
    margin: 10px 5px;

    a {
      background: var(--white);
      padding: 5px 15px;
      display: block;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
    }

    &:first-child {
      a {
        min-width: 190px;
      }
    }
  }

  .default-bg {
    padding: 50px 15px;
  }

  .form-box {
    padding: 45px;
  }

  .category-boxes {
    li {
      width: calc(100% / 2 - 10px);
      margin-left: 20px;
      margin-bottom: 20px;

      &:nth-child(odd) {
        margin-left: 0px;
      }
    }
  }

  .arrivals-slider {
    .owl-nav {
      top: -38px;
    }
  }

  .category-slider {
    margin-bottom: 0px;

    img {
      min-height: 400px;
      object-fit: cover;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
    }

    & .owl-nav {
      top: calc(50% - 22px);

      .owl-next,
      .owl-prev {
        width: 22px;
        height: 22px;
        background-size: cover !important;
      }
    }
  }

  .short-categories {
    margin-bottom: 0px;
  }

  .category-boxes {
    & li {
      h6 {
        font-size: 18px;
        margin: 15px auto;
      }
    }
  }

  .top-heading {
    padding-right: 0px;
  }

  .quickview_wrap {
    padding: 15px;

    .inside {
      flex-wrap: wrap;
      padding-top: 30px;

      .left,
      .right {
        width: 100%;
        max-width: 100%;
      }

      .right {
        padding-left: 0px;
        margin-top: 20px;
        position: static;

        .tophead span:nth-of-type(2) {
          position: absolute;
          top: 5px;
          right: 5px;
        }
      }

      button.close {
        position: absolute;
        top: 15px;
        background: #d9d9d9;
        left: 50%;
        margin-left: -24px;
        z-index: 1;
        width: 48px;
        height: 6px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;

        span {
          display: none;
        }
      }
    }

    .view-icons:before {
      display: none;
    }
  }

  .related-product {
    & ul {
      flex-wrap: nowrap;
      overflow: auto;
      -webkit-overflow-scrolling: touch;

      li {
        width: 80px;
        min-width: 80px;
        margin-right: 10px;
        margin-bottom: 10px;
      }
    }
  }

  .modal-bottom-slideout {
    margin: 0px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px 10px 0 0;

    &:before {
      content: "";
      background: #d9d9d9;
      width: 48px;
      height: 6px;
      position: absolute;
      top: 8px;
      border-radius: 8px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px;
      -ms-border-radius: 8px;
      -o-border-radius: 8px;
    }

    .modal-content {
      border: none;
      border-radius: 0px;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;

      .cartProductSlide {
        background: #f9f3f1;
        margin-bottom: 20px;

        &::before {
          background: linear-gradient(
            90deg,
            rgba(249, 243, 241, 0.7) 100%,
            #f9f3f1 100%
          );
          content: "";
          width: 50px;
          height: 100%;
          position: absolute;
          left: 0px;
          top: 0px;
          z-index: 1;
        }

        &::after {
          background: linear-gradient(
            90deg,
            rgba(249, 243, 241, 0.7) 100%,
            #f9f3f1 100%
          );
          content: "";
          width: 50px;
          height: 100%;
          position: absolute;
          right: 0px;
          top: 0px;
          z-index: 1;
        }
      }

      .owl-item {
        .item {
          padding: 12px 10px;
          text-align: center;

          p {
            margin: 0px;
            color: #222222;
            font-size: 20px;
          }
        }

        &.active.center .item {
          background: #ee5d90;

          p {
            color: #fff;
          }
        }
      }

      .btn {
        padding: 9px 20px;
        font-size: 14px;
        background: #524e4d;
        color: #fff;
        min-width: 0px;
      }
    }
  }

  .cart-productBox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;

    .left {
      width: 80px;
      height: 80px;
      background: #d9d9d9;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      overflow: hidden;

      img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .right {
      width: calc(100% - 80px);
      padding-left: 15px;
    }

    h6 {
      font-size: 15px;
      margin-top: 0px;
    }

    h5 {
      font-size: 17px;
      margin-bottom: 0px;
    }
  }

  .cart-btns {
    display: flex;
    align-items: center;

    .btn {
      width: 100%;

      &.remove-btn {
        background: none;
        border: 1px solid #fe5151;
        color: #fe5151;
        max-width: 135px;

        &:before {
          background: #fe5151;
        }

        &:hover {
          color: #fff;
        }
      }

      &.update-btn {
        margin-left: 10px;
        width: calc(100% - 145px);
        background: rgba(82, 78, 77, 1);
        border-color: rgba(82, 78, 77, 1);
      }

      &.disable {
        background: rgba(82, 78, 77, 0.3);
        border-color: rgba(82, 78, 77, 0.3);
      }
    }
  }

  #quickViewModal {
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 70px;
  }

  .quickModal {
    margin: 0px;

    .modal-content {
      border-radius: 10px 10px 0px 0px;
      -webkit-border-radius: 10px 10px 0px 0px;
      -moz-border-radius: 10px 10px 0px 0px;
      -ms-border-radius: 10px 10px 0px 0px;
      -o-border-radius: 10px 10px 0px 0px;
    }
  }

  .product-detail-page {
    & .quickview_wrap {
      padding: 0px;

      & .inside {
        align-items: flex-start;

        .right {
          padding-left: 0px;
          max-width: 100%;
        }
      }
    }
  }

  .middle-wrap {
    padding: 20px 0px 50px;

    .left-menu {
      width: 100%;
      margin-bottom: 30px;
      top: 65px;
      background: #fff;
      z-index: 9;

      ul {
        display: flex;
        overflow: auto;
        -webkit-overflow-scrolling: touch;

        li {
          &:before {
            display: none;
          }

          a {
            white-space: nowrap;
          }
        }

        &::-webkit-scrollbar {
          width: 6px;
          height: 6px;
        }
      }
    }

    .right-container {
      padding-left: 0px;
      width: 100%;

      .cards-group {
        > ul {
          flex-wrap: wrap;

          li {
            width: 100%;
            margin-bottom: 20px;
            margin-left: 0px;
          }
        }

        .add-card {
          margin-top: 0px;
          min-height: 200px;
        }
      }

      .btn {
        width: 100%;
      }
    }
  }

  .addnewcard-modal {
    .form-box {
      padding: 40px 25px;
    }
  }

  .form-field {
    .column {
      width: 100%;

      &.first {
        margin-right: 0px;
        margin-bottom: 20px;
      }
    }

    &.tree-column {
      .column {
        width: 100%;
      }
    }
  }

  .payment-wrap {
    & .right-container {
      & .cards-group {
        > ul {
          flex-wrap: nowrap;

          li {
            margin-left: 20px;
            min-width: 280px;
          }
        }
      }
    }
  }

  .checkout-page {
    > .container {
      display: flex;
      flex-wrap: wrap;
    }

    .services-bar {
      order: 2;
      padding-top: 0px;
    }
  }

  .checkout-wrap {
    .topbar {
      padding-top: 20px;
      padding-bottom: 15px;
      margin-bottom: 10px;
    }

    .alsoLikeSec {
      position: fixed;
      bottom: 68px;
      z-index: 10;
      padding: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
    }
  }

  .checkout-items {
    .item-row {
      padding: 20px 0px;

      .column {
        max-width: 100%;
        flex-wrap: wrap;

        .product-title {
          padding-left: 15px;
        }

        .price-box {
          .brand-company {
            max-width: 110px;
          }
        }

        .qty {
          display: none;
        }

        .mobile-qty {
          display: inline-block;
          font-size: 18px;
          font-family: var(--stepp);
          color: #222222;
          font-weight: normal;
          margin-bottom: 0px;
          white-space: nowrap;
        }

        &.right {
          max-width: 100%;
          margin-top: 20px;
          justify-content: space-between;

          > div {
            width: auto;
            display: flex;
          }

          .action-btn {
            width: auto;
            margin-bottom: 0px;
            margin-left: 25px;
          }
        }

        .product-image {
          width: 80px;
          height: 80px;
          min-width: 80px;
        }
      }
    }
  }

  .order-table {
    table {
      min-width: 0px;

      td {
        &:nth-child(1) {
          width: 55px;
        }

        &:nth-child(3),
        &:nth-child(4) {
          width: 80px;
        }

        &:nth-child(5) {
          width: 55px;
        }
      }
    }

    .sr-number {
      width: 55px;
    }

    .created-date,
    .status,
    .view-info {
      width: 100px;
      padding: 10px 8px;
    }

    .view-info,
    .status {
      width: 80px;
    }

    .order-ID {
      width: calc(100% - 320px);
    }

    .pager-btn {
      font-size: 0px;
    }

    .card-body {
      .product-box {
        width: 70px;
        height: auto;
        border: none;

        img {
          display: none;
        }

        .main-price {
          margin: 2px 0px;
        }

        .second-price {
          margin: 2px 0px;
        }
      }

      .product-info {
        width: calc(100% - 60px);
        padding-left: 15px;

        h3 {
          margin-bottom: 5px;
        }

        .tophead {
          justify-content: flex-end;
          margin-bottom: 0px;

          span {
            max-width: 100px;
          }
        }
      }

      .right {
        margin-top: 10px;
      }

      .bottom-row {
        .btn {
          padding: 5px 10px;
          font-size: 14px;
          min-width: 110px;
        }

        p {
          font-size: 14px;
        }

        .remove {
          display: none;
        }
      }

      .brand-company,
      .sizes-column {
        display: none;
      }
    }
  }

  .middle-wrap {
    .container {
      display: block;

      .left-menu {
        position: static;
      }
    }
  }

  .product-box {
    .original-price {
      margin: 4px auto;
      font-size: 12px;
    }

    .product-title {
      font-size: 14px;
      line-height: 18px;
      min-height: 36px;
      margin: 5px auto 20px;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }
  }

  .product-bottom {
    p {
      font-size: 12px;
    }
  }

  .special-offer-box {
    padding-top: 30px;

    .container {
      flex-wrap: nowrap;
      padding-top: 70px;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    .realoftheweek-box {
      width: 100%;
      min-width: 100%;
      margin-right: 20px;
    }

    .tab-inside .tabs-slider {
      width: 100%;
      min-width: 100%;
      margin-top: -30px;
    }
  }

  #backToTop,
  .announcement-icon {
    bottom: 80px;
  }

  .announcement-box {
    bottom: 135px;
  }

  .pagination {
    & .pager {
      & li {
        a {
          font-size: 14px;
          padding: 10px 12px;
        }
      }
    }

    .pager-btn {
      padding: 10px 10px;
      font-size: 14px;

      img {
        width: 16px;
        height: 16px;
        object-fit: contain;
      }
    }
  }

  .pagination-head table {
    margin: 0px auto;
  }

  #AnnouncemntPopUp {
    .modal-dialog {
      .col-md-6 {
        width: 50%;
      }

      .deliveryPopText {
        margin-left: -10px;
        padding: 0px 30px 20px 0px !important;
      }
    }
  }
}

@media (max-width: 499px) {
  .logo {
    max-width: 100px;
  }

  .search-and-filter {
    top: 66px;
  }

  .top-slider {
    .item {
      background-position: right 24% bottom;
    }
  }

  .btn.white {
    min-width: 140px;
    margin-left: -70px;
  }

  .show_menu .navigation {
    top: 66px;
    height: calc(100% - 135px);
  }

  .contact-box {
    .remember-and-forgot-field {
      justify-content: space-between;
      align-items: flex-start;

      .column {
        width: auto;

        &.first {
          margin-right: 0px;
        }

        p {
          text-align: left;
          margin-top: 5px;
        }
      }
    }
  }

  .arrivals-slider .item {
    padding: 5px;
  }

  .product-infobox {
    .large-thumb {
      img {
        min-height: 350px;
        object-fit: cover;
      }
    }
  }

  .product-tabs {
    ul.nav {
      top: 350px;
    }
  }

  .product-box {
    .btn {
      min-width: 100px;
    }
  }

  .listing-mob-card {
    .leftbox {
      width: 110px;
    }

    .rightbox {
      width: 110px;
    }

    .midd {
      width: calc(100% - 220px);

      & .product-bottom {
        .right {
          margin-left: 8px;
        }
      }
    }
  }

  .checkout-items {
    .item-row {
      .column {
        .product-title {
          width: calc(100% - 80px);
          margin-right: 0px;
        }

        .price-box {
          display: flex;
          width: 100%;
          margin-top: 15px;
          align-items: center;
          justify-content: space-between;

          .brand-company {
            margin-bottom: 0px;
          }
        }
      }
    }
  }

  .card-options {
    .tophead {
      flex-wrap: wrap;

      .card-btn {
        margin-top: 15px;
        font-size: 14px;
        padding: 5px 10px;
      }
    }

    .form-box {
      .btn {
        width: 100%;
      }
    }
  }

  .whathappen-text {
    padding: 15px;
  }

  .free-sample {
    & .free-sample-data {
      &::before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        left: 10px;
        top: 10px;
      }
    }
  }

  .order-table {
    overflow: visible;

    table {
      thead {
        td {
          padding: 8px 7px;

          &:nth-child(3) {
            width: 90px;
          }

          &:nth-child(4) {
            width: 80px;
          }
        }

        p {
          font-size: 12px;
        }
      }

      tfoot {
        display: none;
      }
    }

    .sr-number {
      padding: 8px 7px;

      p {
        font-size: 12px;
      }
    }

    .order-ID {
      width: calc(100% - 280px);
      padding: 8px 7px;
    }

    .created-date,
    .status,
    .view-info {
      padding: 8px 7px;
    }

    .created-date {
      width: 90px;
    }

    .status {
      width: 80px;
    }

    .view-info {
      width: 55px;
    }

    .card-body {
      .product-box {
        margin-left: -12px;
        box-shadow: none;
      }
    }

    .card {
      overflow: visible;
    }
  }

  .contact-box {
    .btn {
      width: 100%;
    }
  }

  .product-sec {
    & .item.small-item {
      > img {
        height: 160px;
        object-fit: cover;
        width: 100%;
        object-position: bottom right;
      }
    }
  }

  .category-slider {
    .cat-slide {
      min-height: 170px;
      padding: 0px 40px;

      .owl-nav {
        .owl-next,
        .owl-prev {
          width: 24px;
          height: 24px;
        }

        .owl-prev {
          left: 5px;
        }

        .owl-next {
          right: 5px;
        }
      }

      h1 {
        font-size: 16px;
        margin: 7px auto;
      }

      p {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 5px;
      }

      .btn {
        min-width: 70px;
        padding: 5px 12px;
        font-size: 10px;
      }
    }
  }

  .announcement-box {
    width: 290px;
  }

  .listing-filter {
    top: 65px;
  }

  #AnnouncemntPopUp {
    padding-right: 0px !important;

    .modal-dialog {
      max-width: 100%;
    }
  }
}

@media (max-width: 374px) {
  .logo {
    max-width: 90px;
  }

  .navigation {
    & .mobile-sticky-btn {
      & ul {
        & li {
          a {
            font-size: 14px;
            padding: 12px 10px;
          }
        }
      }
    }
  }

  .wishlist {
    margin-left: 0px;
    padding: 8px 10px;
  }

  .cart-info {
    padding: 8px 10px;
    margin-right: 10px;
  }

  .cart-info img,
  .wishlist img {
    margin-right: 5px;
  }

  .form-box {
    padding: 30px 30px;
  }

  .product-tabs {
    & ul.nav {
      li {
        width: 80px;
      }
    }
  }

  .navigation {
    & .mobile-menu {
      & ul {
        & li {
          a {
            font-size: 14px;
            line-height: 22px;
          }
        }
      }
    }
  }

  .order-table {
    table {
      p {
        font-size: 12px;
      }
    }

    .card-header {
      flex-wrap: nowrap;
    }

    .card-body {
      .left {
        justify-content: space-between;
      }

      .product-box {
        width: 60px;
      }
    }

    .sr-number {
      width: 35px;
    }

    .created-date {
      width: 70px;

      p {
        white-space: nowrap;
      }
    }

    .order-ID {
      width: auto;
    }

    .view-info {
      width: 35px;

      .btn {
        margin-left: 0px;
      }
    }

    .product-box {
      .main-price {
        font-size: 15px;
      }

      .second-price {
        font-size: 12px;
      }
    }
  }

  .cart-outer {
    .fetures {
      flex-wrap: wrap;

      li {
        border-left: none;
      }
    }
  }

  .product-sec {
    & .col-6 {
      .col-6 {
        max-width: 100%;
        flex: 0 0 100%;
      }
    }
  }

  .counter-box {
    ul li {
      .counter-section {
        font-size: 40px;
      }
    }
  }
}

/*Order Success Page Start*/
.quickModal .quickview_wrap .cart-box .coming-soon-tag {
  top: -10px;
}

.orderConBanner {
  background: linear-gradient(180deg, #fdf5ef 0%, #ffffff 100%);
  position: relative;
  padding: 30px 0px 80px 0px;
}

.orderConBannerText h1 {
  margin: 0px 0px 10px 0px;
  color: #000;
  font-family: var(--source);
  font-size: 42px;
}

.orderConBannerText .desc {
  margin: 0px 0px 40px 0px;
  color: #000;
  font-size: 16px;
}

.orderConBannerText .orangeBtn {
  box-shadow: 0px 4px 12px #d7d7d7;
  border-radius: 5px;
}

.feedBackLeftSide {
  background: #fdf5ef url(../../assets/images/order-confirm/feedback.png)
    no-repeat bottom center / 98% auto;
  border-radius: 15px;
  min-height: 600px;
}

.feedBackLeftSide .textA {
  padding: 30px 25px;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
  font-family: var(--source);
}

.feedBackForm {
  padding: 20px 0px 40px 0px;
}

.feedBackRow {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
}

.feedBackRow .crume {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 36px;
  font-family: var(--source);
  line-height: 1;
  color: var(--orange);
}

.feedBackRow .lableText {
  color: #000000;
  font-size: 18px;
  margin: 0px 0px 5px 0px;
  font-family: var(--source);
}

.rateBg {
  background: #fdf5ef;
  border-radius: 5px;
  padding: 3px 8px 5px 13px;
  display: inline-block;
}

.feedBackForm textarea.form-control {
  resize: none;
  background: #fafafa;
  border-radius: 10px;
  border: none;
  height: 110px;
  padding: 9px 15px;
}

.feedBackForm .btnRow {
  text-align: right;
}

.feedBackForm .btnRow .orangeBtn {
  border-radius: 5px;
}

.inputRating {
  display: inline-block;
  vertical-align: top;
}

.inputRating input {
  border: none;
  width: auto;
  position: absolute;
  opacity: 0;
}

.inputRating label {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(../../assets/images/order-confirm/start-a.svg) no-repeat 0px
    0px / 18px auto;
  float: right;
  margin: 4px 7px 0px 1px;
}

.inputRating input:checked ~ label {
  background: url(../../assets/images/order-confirm/start-b.svg) no-repeat -1px 0px /
    18px auto;
}

.inputRating input:checked + label {
  background: url(../../assets/images/order-confirm/start-b.svg) no-repeat -1px 0px /
    18px auto;
}

.emojeRating input {
  border: none;
  width: auto;
  position: absolute;
  opacity: 0;
}

.emojeRating label {
  margin: 4px 7px 0px 1px;
  cursor: pointer;
}

.emojeRating label img {
  filter: grayscale(1);
}

.emojeRating input:checked + label img {
  filter: grayscale(0);
}

@media (max-width: 767px) {
  .orderConBanner {
    padding: 30px 0px 20px 0px;
    text-align: center;
  }

  .orderConBannerText {
    padding-bottom: 20px;
  }

  .orderConBannerText h1 {
    margin: 0px 0px 20px 0px;
    font-size: 26px;
  }

  .orderBannerImg {
    padding: 20px;
  }

  .feedBackLeftSide {
    border-radius: 10px;
    min-height: 100vw;
  }

  .feedBackLeftSide .textA {
    padding: 20px 15px;
    font-size: 20px;
  }

  .feedBackForm {
    padding: 30px 0px 30px 0px;
  }

  .feedBackRow .lableText {
    font-size: 14px;
  }

  .feedBackRow .crume {
    font-size: 30px;
  }

  .feedBackRow {
    margin-bottom: 20px;
    padding-left: 46px;
  }
}

@media (max-width: 350px) {
  .mobile-listing-filter-wrapper .switch label {
    margin: 0px 2px;
  }

  .mobile-listing-filter-wrapper .search-and-filter .menu-button {
    width: 26px;
    height: 28px;
    margin: 0 2px;
  }

  .mobile-listing-filter-wrapper .search-and-filter .filter-btn {
    width: 26px;
    height: 28px;
    margin: 0 2px;
  }

  .mobile-listing-filter-wrapper .search-and-filter .menu-container {
    margin-left: 2px;
  }

  .mobile-listing-filter-wrapper
    .search-and-filter
    .search-container
    .search-input-wrapper {
    width: 26px;
    height: 28px;
  }
}

/*Order Success Page End*/

/*Updates 10-09-2025*/
.main-price-box {
  .price-box-list {
    background-color: #ffff;
    display: inline-block;
    border-radius: 0 8px 8px 0;
    border: 2px solid #ded3d0;
    border-left: 0;
    @media (max-width: 1024px) {
      border-radius: 0 4px 4px 0;
    }
    .price-box-list-item {
      padding: 7px 10px;
      text-align: center;
      @media (max-width: 1024px) {
        padding: 3px 5px;
      }
      .item-price {
        font-family: var(--stepp);
        font-size: 20px;
        line-height: 1.1em;
        padding-top: 3px;
        @media (max-width: 1024px) {
          font-size: 17px;
          padding-top: 1px;
        }
      }
      .item-quantity {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0;
        line-height: 1.3em;
        border-radius: 3px;
        padding-top: 2px;
        padding-bottom: 0px;
        font-weight: 500;
        padding-left: 5px;
        padding-right: 5px;
        @media (max-width: 1024px) {
          font-size: 11px;
        }
      }
    }
  }
}
.main-price-box-horizontal {
  .price-box-list {
    border-radius: 8px;
    overflow: hidden;
    border: 0;
    @media (max-width: 1024px) {
      border-radius: 4px;
    }
    .price-box-list-item {
      padding: 2px 8px;
      text-align: center;
      @media (max-width: 1024px) {
        padding: 2px 5px;
      }
      .item-price {
        font-family: var(--stepp);
        font-size: 17px;
        line-height: 1.1em;
        padding-top: 0;
        margin-left: 5px;
        @media (max-width: 1024px) {
          font-size: 16px;
          padding-top: 0;
        }
      }
      .item-quantity {
        font-size: 11px;
        @media (max-width: 1199px) {
          font-size: 10px;
          display: block;
        }
      }
    }
  }
  &.main-price-box-highlight-gray {
    .price-box-list .price-box-list-item:nth-child(1) {
      transform: unset;
      transform-origin: unset;
      border-radius: 0;
      background-color: #ede6e3;
      border-top: 2px solid #ede6e3;
      border-bottom: 2px solid #ede6e3;
      border-right: 2px solid #ede6e3;
      @media (max-width: 1024px) {
        border-radius: 0;
      }
    }
    .price-box-list .price-box-list-item:nth-child(2) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-right: 2px solid #ded3d0;
    }
    .price-box-list .price-box-list-item:nth-child(3) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-right: 2px solid #ded3d0;
      border-radius: 0 8px 8px 0;
      @media (max-width: 1024px) {
        border-radius: 0 4px 4px 0;
      }
    }
    .price-box-list {
      border-top: 0;
    }
  }
  &.main-price-box-highlight-yellow {
    .price-box-list .price-box-list-item:nth-child(3) {
      transform: unset;
      transform-origin: unset;
      border-radius: 0;
      background-color: #eec55d;
      border-top: 2px solid #eec55d;
      border-bottom: 2px solid #eec55d;
      @media (max-width: 1024px) {
        border-radius: 0;
      }
    }
    .price-box-list .price-box-list-item:nth-child(1) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-left: 2px solid #ded3d0;
      border-radius: 8px 0 0 8px;
    }
    .price-box-list .price-box-list-item:nth-child(2) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-left: 2px solid #ded3d0;
    }
    .price-box-list {
      border-bottom: 0;
    }
  }
  &.main-price-box-highlight-pink {
    .price-box-list .price-box-list-item:nth-child(2) {
      transform: unset;
      transform-origin: unset;
      border-radius: 0;
      background-color: #ee5d90;
      border-top: 2px solid #ee5d90;
      border-bottom: 2px solid #ee5d90;
      @media (max-width: 1024px) {
        border-radius: 0;
      }
    }
    .price-box-list .price-box-list-item:nth-child(1) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-left: 2px solid #ded3d0;
      border-radius: 8px 0 0 8px;
    }
    .price-box-list .price-box-list-item:nth-child(3) {
      border-top: 2px solid #ded3d0;
      border-bottom: 2px solid #ded3d0;
      border-right: 2px solid #ded3d0;
      border-radius: 0 8px 8px 0;
    }
  }
}
.main-price-box-highlight-gray {
  .price-box-list .price-box-list-item:nth-child(1) {
    transform: scaleX(1.1);
    transform-origin: left bottom;
    border-radius: 0 8px 8px 0;
    background-color: #ede6e3;
    @media (max-width: 1024px) {
      border-radius: 0 4px 4px 0;
    }
    .item-quantity {
      background-color: #ffff;
      color: #222222;
    }
  }
  .price-box-list .price-box-list-item:nth-child(2) {
    .item-quantity {
      background-color: #ee5d90;
      color: #fff;
    }
  }
  .price-box-list .price-box-list-item:nth-child(3) {
    border-top: 2px solid #ded3d0;
    .item-quantity {
      background-color: #eec55d;
      color: #222222;
    }
  }
  .price-box-list {
    border-top: 0;
  }
}
.main-price-box-highlight-pink {
  .price-box-list .price-box-list-item:nth-child(2) {
    transform: scaleX(1.1);
    transform-origin: left bottom;
    border-radius: 0 8px 8px 0;
    background-color: #ee5d90;
    @media (max-width: 1024px) {
      border-radius: 0 4px 4px 0;
    }
    .item-quantity {
      background-color: #ffff;
      color: #222222;
    }
    .item-price {
      color: #fff;
    }
  }
  .price-box-list .price-box-list-item:nth-child(1) {
    .item-quantity {
      background-color: #ede6e3;
      color: #222222;
    }
  }
  .price-box-list .price-box-list-item:nth-child(3) {
    .item-quantity {
      background-color: #eec55d;
      color: #222222;
    }
  }
}
.main-price-box-highlight-yellow {
  .price-box-list .price-box-list-item:nth-child(3) {
    transform: scaleX(1.1);
    transform-origin: left bottom;
    border-radius: 0 8px 8px 0;
    background-color: #eec55d;
    @media (max-width: 1024px) {
      border-radius: 0 4px 4px 0;
    }
    .item-quantity {
      background-color: #ffff;
      color: #222222;
    }
    .item-price {
      color: #222222;
    }
  }
  .price-box-list .price-box-list-item:nth-child(1) {
    .item-quantity {
      background-color: #ede6e3;
      color: #222222;
    }
  }
  .price-box-list .price-box-list-item:nth-child(2) {
    border-top: 2px solid #ded3d0;
    .item-quantity {
      background-color: #ee5d90;
      color: #ffff;
    }
  }
  .price-box-list {
    border-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .main-price-box-horizontal-mobile {
    .main-price-box-horizontal {
      .price-box-list {
        border-radius: 0;
        display: inline;
        .price-box-list-item-inner {
          display: flex;
          align-items: center;
          gap: 2px;
        }
        .price-box-list-item {
          display: inline-block;
          padding: 3px 4px 3px 0;
          .item-price {
            font-size: 17px;
          }
          .item-quantity {
            font-size: 10px;
            border-radius: 0 3px 3px 0;
          }
        }
      }
      &.main-price-box-highlight-gray {
        .price-box-list .price-box-list-item:nth-child(1) {
          transform: unset;
          transform-origin: unset;
          border-radius: 0 6px 0 0;
          background-color: #ede6e3;
          border-top: 2px solid #ede6e3;
          border-bottom: 2px solid #ede6e3;
          border-right: 2px solid #ede6e3;
        }
        .price-box-list .price-box-list-item:nth-child(2) {
          border-top: 2px solid #ded3d0;
          border-bottom: 0;
          border-right: 2px solid #ded3d0;
          border-radius: 0 6px 0 0;
        }
        .price-box-list .price-box-list-item:nth-child(3) {
          border-top: 2px solid #ded3d0;
          border-bottom: 2px solid #ded3d0;
          border-right: 2px solid #ded3d0;
          border-radius: 0 6px 6px 0;
        }
        .price-box-list {
          border-top: 0;
        }
      }
      &.main-price-box-highlight-yellow {
        .price-box-list .price-box-list-item:nth-child(3) {
          transform: unset;
          transform-origin: unset;
          border-radius: 0 6px 6px 0;
          background-color: #eec55d;
          border-top: 0;
          border-bottom: 2px solid #eec55d;
        }
        .price-box-list .price-box-list-item:nth-child(1) { 
          border-top: 2px solid #ded3d0;
          border-bottom: 0;
          border-right: 2px solid #ded3d0;
          border-left: 0;
          border-radius: 0 6px 0 0;
        }
        .price-box-list .price-box-list-item:nth-child(2) { 
          border-top: 2px solid #ded3d0;
          border-bottom: 0;
          border-right: 2px solid #ded3d0;
          border-left: 0;
          border-radius: 0 6px 0 0;
        }
        .price-box-list {
          border-bottom: 0;
        }
      }
      &.main-price-box-highlight-pink {
        .price-box-list .price-box-list-item:nth-child(2) {
          transform: unset;
          transform-origin: unset;
          border-radius: 0;
          background-color: #ee5d90;
          border-top: 2px solid #ee5d90;
          border-bottom: 2px solid #ee5d90;
          border-radius: 0 6px 0 0;
        }
        .price-box-list .price-box-list-item:nth-child(1) {
          border-top: 2px solid #ded3d0;
          border-bottom: 0;
          border-right: 2px solid #ded3d0;
          border-left: 0;
          border-radius: 0 6px 0 0;
        }
        .price-box-list .price-box-list-item:nth-child(3) {
          border-top: 2px solid #ded3d0;
          border-bottom: 2px solid #ded3d0;
          border-right: 2px solid #ded3d0;
          border-radius: 0 6px 6px 0;
        }
      }
    }
  }
}

/* Hide arrows in Chrome, Edge, Safari, Opera */
.cart-field input[type="number"]::-webkit-inner-spin-button,
.cart-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
.cart-field input[type="number"] {
  -moz-appearance: textfield;
}

