/**=====================
  Inner Page Page css
==========================**/
/*  For Custom Height */
.custom-sidebar-height {
  max-height: 150px;
  overflow-y: auto;
  height: 100%;

  &::-webkit-scrollbar-track {
    background-color: rgba($color: var(--theme-color), $alpha: 0.14);
  }

  &::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #f5f5f5;
  }

  &::-webkit-scrollbar-thumb {
    background-color: #888;
  }
}

/*  error section */
.error-section {
  padding: 130px 0 140px;
  text-align: center;

  h1 {
    font-size: 200px;
    font-weight: 900;
    margin: 0;
    line-height: 0.8;
    color: $font-grey;
    margin-top: -11px;
  }

  h2 {
    color: $font-grey;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 40px 0;
  }
}

/* breadcrumb section */
.breadcrumb-section {
  background-color: $top-header;
  padding-block: 30px;
  text-align: center;
  position: relative;
  box-shadow: inset 0px 4px 10px 0px #f5f5f5;

  h2 {
    margin-bottom: calc(2px + (12 - 2) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(21px + 11 * (100vw - 320px) / 1600);
    line-height: 1.3;
    text-transform: capitalize;
    font-weight: 500;
  }

  .breadcrumb {
    background-color: transparent;
    padding: 0;
    text-transform: uppercase;
    font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
    gap: 3px 0;
    color: $grey2;
    font-weight: 600;
    justify-content: center;
    margin: 0;
    padding-right: 0;

    a {
      color: $grey2;
      font-weight: 600;
    }
  }
}

/* about page section */
.about-page {
  .banner-section {
    border-radius: 0;
    overflow: hidden;
    margin-top: 30px;
  }

  h3 {
    margin-bottom: 15px;
    letter-spacing: unset;
    text-transform: unset;
    font-weight: 600;
    line-height: 1.3;
    color: $dark-font;
    font-size: calc(16px + (26 - 16) * ((100vw - 320px) / (1920 - 320)));
  }

  p {
    line-height: 2;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    margin-bottom: 0;
  }

  h4 {
    font-weight: 600;
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    margin-bottom: 18px;
    line-height: 1.3;
  }
}

.testimonial {
  background-color: $grey-about;

  .testimonial-slider {
    .media {
      img {
        border-radius: 100%;
        border: 1px solid $round-border;
        padding: 5px;
        height: 130px;
        width: 130px;
      }

      h5 {
        font-weight: 700;
        color: var(--theme-color);
        margin-bottom: 0;
        margin-top: 7px;
      }

      h6 {
        margin-bottom: -4px;
      }

      .media-body {
        padding: 30px 75px 30px 30px;

        p {
          line-height: 2;
          letter-spacing: 0.03em;
        }
      }
    }
  }
}

.team {
  position: relative;

  img {
    margin: 0 auto;
    padding: 0 10px;
    border: 8px solid #f8f8f8;
  }

  .owl-prev,
  .owl-next {
    position: absolute;
    top: -45px;

    &:before {
      color: $dark-font;
      opacity: 0.6;
    }
  }

  .owl-prev {
    left: unset;
    right: 20px;

    &:before {
      content: "\f104";
    }
  }

  .owl-next {
    right: 0;

    &:before {
      content: "\f105";
    }
  }

  h2 {
    color: $dark-font;
    padding-bottom: 15px;
    border-bottom: 1px solid $border;
    margin-bottom: 10px;
  }

  h4,
  h6 {
    text-align: center;
  }

  h4 {
    color: var(--theme-color);
    font-weight: 700;
    padding-top: 11px;
    padding-bottom: 5px;
    background-color: #f8f8f8;
    margin-bottom: 0;
  }

  h6 {
    margin-bottom: 0;
    background-color: #f8f8f8;
    padding-bottom: 14px;
  }
}

/*  category page */
.shop-filter-category {
  @media (max-width: 991px) {
    margin: calc(16px + 4 * (100vw - 320px) / 671) calc(12px + 8 * (100vw - 320px) / 671) 0;
  }

  .filter-title {
    @include flex_common($dis: flex, $align: center, $justify: space-between);
    margin-bottom: 10px;

    h2 {
      color: $dark-font;
      background-color: transparent;
      box-shadow: unset;
      text-transform: none;
      font-weight: 600;
      font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
      margin: 0;
    }

    a {
      font-weight: 500;
      font-size: 15px;
      text-decoration: underline;
      color: #ff4f4f;

      &:hover {
        text-decoration: underline;
        color: #ff4f4f;
      }
    }
  }

  .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid $white-dark;

    li {
      background-color: $white;
      padding: 7px 13px;
      display: flex;
      align-items: center;
      gap: 4px 6px;
      font-size: 15px;

      @media (max-width: 991px) {
        background-color: $light;
      }

      a {
        color: $dark-font;
        font-weight: 500;
      }

      i {
        color: $grey;
        line-height: 1;
      }
    }
  }
}

.collection-filter-block {
  position: sticky;
  top: 120px;
  left: 0;
  padding: 20px;
  border: 1px solid $white-dark;
  background-color: $grey-lighter;

  @media (max-width: 991px) {
    padding: 0 0 20px;
  }

  .product-service {
    padding: 30px 0;

    .media {
      +.media {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid $white-dark;
      }

      svg {
        height: 40px;
        width: 40px;
        fill: var(--theme-color);

        path {
          fill: var(--theme-color);
        }
      }

      .media-body {
        padding-left: 10px;

        h4 {
          margin-bottom: 8px;
          font-size: 16px;
          font-weight: 600;
        }

        p {
          margin-bottom: 0;
          text-transform: capitalize;
          font-size: 16px;
        }
      }

      &:last-child {
        padding-bottom: 0;
      }
    }
  }

  .accordion {
    @media (max-width: 991px) {
      margin: calc(16px + 4 * (100vw - 320px) / 671) calc(12px + 8 * (100vw - 320px) / 671) 0;
    }
  }

  .accordion-item {
    background-color: transparent;
    border: unset;
    color: $dark-font;

    +.accordion-item {
      margin-top: 13px;
      padding-top: 13px;
      border-top: 1px solid $white-dark;
    }

    &:last-child {
      .accordion-body {
        padding-bottom: 0;
      }
    }

    .accordion-button {
      border: unset;
      font-weight: 500;
      font-size: 18px;
      background-color: transparent;
      padding: 0;
      box-shadow: unset;
      z-index: 0;

      &:not(.collapsed) {
        color: $dark-font;
        background-color: transparent;
        box-shadow: unset;
        font-weight: 600;
      }

      &::after {
        content: "\ea4e";
        @include font;
        width: auto;
        height: auto;
        font-size: 24px;
        background: unset;
        font-weight: 100;
        line-height: 1;
      }
    }

    .rating,
    .product-rating {
      display: flex;
      align-items: center;

      span {
        line-height: 1;
        margin: 0;
        margin-top: -2px;

        +span {
          margin-left: calc(0px + 2 * (100vw - 320px) / 1600);
        }

        svg {
          padding: 0;
        }
      }
    }

    .accordion-collapse {
      border: unset;
    }

    .accordion-body {
      padding: 15px 0 10px;

      .custom-sidebar-height {
        >li {
          display: grid;
          gap: calc(10px + 0.00375 * (100vw - 320px));
        }
      }

      .collection-brand-filter {
        padding-top: 0;
      }

      .search-box {
        position: relative;
        width: 100%;
        margin-bottom: 12px;

        &::after {
          content: "\f0d1";
          position: absolute;
          @include font;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
          border-left: 1px solid $white-dark;
          font-size: 15px;
          padding: 0 calc(13px + (18 - 13) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 600;
          height: 60%;
          display: flex;
          align-items: center;
          color: $grey;
        }

        .form-control {
          font-size: 14px;
          padding: calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));
          border: 1px solid $white-dark;
          position: relative;
          padding-right: calc(47px + (63 - 47) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      .search-not-found-box {
        background-color: $white;
        padding: 50px 0;
        text-align: center;

        @media (max-width: 991px) {
          background-color: $top-header;
        }

        h4 {
          margin: 0;
          font-weight: 600;
          font-size: 18px;
        }

        p {
          &:empty {
            display: none;
          }
        }
      }

      .shop-category-list,
      .category-list {
        display: grid;
        gap: 12px;

        >li {
          .sub-category-list {
            margin-left: 14px;
            margin-top: -1px;
            display: grid;
            gap: 12px;

            .custom-sidebar-height {
              max-height: unset;
            }
          }

          >a {
            margin: 0;
            font-size: calc(14px + 2 * (100vw - 320px) / 1600);
            font-weight: 500;
            line-height: 1;
            transition: all 0.1s ease-in-out;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            color: $grey;
          }
        }
      }

      .collection-filter-checkbox {
        margin: 0;
        padding: 0;
        min-height: unset;
        position: relative;

        .form-check-input {
          width: 21px;
          height: 21px;
          float: unset;
          margin: 0;
          cursor: pointer;
          position: relative;
          margin-right: 9px;
          border: unset;
          background: unset;
          filter: unset;

          &::before {
            content: "";
            position: absolute;
            width: 12px;
            height: 6px;
            transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
            transform: rotate(-45deg) scale(0);
            left: 4px;
            top: 6px;
            z-index: 1;
            border: 2px solid var(--theme-color);
            border-top-style: none;
            border-right-style: none;
          }

          &::after {
            content: "";
            position: absolute;
            width: 21px;
            height: 21px;
            top: 50%;
            transform: translate(-50%, -50%);
            left: 50%;
            background-color: $white;
            border: 2px solid #ececec;
            cursor: pointer;
          }

          &:checked {
            &::before {
              transform: rotate(-45deg) scale(1);
            }
          }

          &:checked,
          &:hover {
            ~.form-check-label {
              color: var(--theme-color);

              &::before {
                width: 100%;
              }

              >span {
                color: var(--theme-color);
              }
            }
          }
        }

        .form-check-label {
          margin: 0;
          font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 500;
          line-height: 1;
          transition: all 0.1s ease-in-out;
          position: relative;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 6px;
          color: $grey;

          >span {
            font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
            font-weight: 500;
          }
        }
      }
    }
  }
}

.product-sidebar-box {
  position: sticky;
  top: 120px;
  left: 0;

  .collection-filter {
    >div {
      +div {
        margin-top: 24px;
      }
    }
  }

  .collection-filter-block {
    position: unset;
    inset: unset;
    padding: 0;
    border: unset;

    .product-service {
      padding: 20px;
      border: 1px solid $white-dark;
    }

    &.accordion {
      border: 1px solid $white-dark;
      padding: 20px;

      .product-service {
        padding: 0;
      }
    }
  }

  .theme-card {
    .offer-slider {
      .media {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-bottom: 0 !important;

        @media (max-width: 1199px) {
          display: grid;
        }

        +.media {
          margin-top: 15px;
        }

        img {
          padding: 5px;
          height: 95px;
          width: 95px;
          background-color: $top-header;
          border: 1px solid $white-dark;
          margin: 0;

          @media (max-width: 1199px) {
            width: 100%;
            object-fit: contain;
          }
        }

        .media-body {
          max-width: calc(100% - 13px - 95px);

          @media (max-width: 1199px) {
            max-width: 100%;
          }

          a {
            h6 {
              text-overflow: ellipsis;
              white-space: nowrap;
              overflow: hidden;
            }
          }

          .rating {
            svg {
              padding: 0;
            }
          }
        }
      }
    }
  }
}

.collection-filter {
  .shop-left-sidebar {
    position: sticky;
    top: 120px;
    left: 0;

    @media (max-width: 991px) {
      position: relative;
      inset: unset;
    }
  }

  .theme-card {
    .offer-slider {
      img {
        padding: 15px 15px 15px 0;
      }
    }
  }

  .custom-nav-tab {
    gap: calc(11px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));

    .nav-item {
      width: 100%;
      height: calc(48px + (60 - 48) * ((100vw - 320px) / (1920 - 320)));
      background-color: $top-header;
      border-radius: 0;
      display: flex;
      overflow: hidden;
      border: 1px solid $white-dark;

      .nav-link {
        width: 100%;
        text-align: left;
        font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 500;
        color: #777777;
        border-radius: unset;
        background-color: transparent;
        position: relative;
        height: 100%;
        border: unset;

        &:hover(not) {
          img {
            width: 75px;
            height: 75px;
            transform: translateY(-50%) rotate(-4deg);
            right: -12px;
            opacity: 0.45;
          }
        }

        &:hover {
          img {
            width: 75px;
            height: 75px;
            transform: translateY(-50%) rotate(-4deg);
            right: -12px;
            opacity: 0.29;
          }
        }

        &.active {
          color: $white;
          background: var(--theme-color);
          font-size: 19px;
          font-weight: 600;
          border-color: transparent;

          img {
            top: 50%;
            transform: translateY(-50%);
            width: 90px;
            height: 90px;
            position: absolute;
            right: -10px;
            filter: invert(1);
            opacity: 0.4;
          }
        }

        img {
          top: 50%;
          transform: translateY(-50%);
          width: 70px;
          height: 70px;
          position: absolute;
          right: -10px;
          opacity: 0.1;
          transition: all 0.2s ease-in-out;
        }
      }
    }
  }
}

.collection-sidebar-banner {
  margin-top: 30px;

  img {
    width: 100%;
  }
}

.top-banner-wrapper {
  margin-bottom: calc(17px + (28 - 17) * ((100vw - 320px) / (1920 - 320)));

  .top-banner-content {
    h4 {
      font-weight: 600;
      color: lighten($black, 26.5%);
      margin-bottom: 15px;
    }

    h5 {
      font-size: 16px;
      font-weight: 600;
      color: lighten($black, 26.5%);
      letter-spacing: 1px;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    p {
      line-height: 1.5;
      color: lighten($black, 46.5%);
      margin-bottom: 0;
      font-size: 16px;
      letter-spacing: 0.05em;
    }
  }
}

.product-wrapper-grid {
  &.list-view {
    .product-wrap {
      .product-info {
        text-align: left;
        align-self: center;
        padding-left: 15px;
      }
    }

    .product-box {
      padding-bottom: 0;

      >* {
        >* {
          display: flex;
        }
      }

      .img-wrapper,
      .img-block {
        width: 25%;
      }

      .product-detail {
        padding-left: 15px;
        align-self: center;
        text-align: left !important;
        width: calc(100% - 25px);

        .rating {
          margin-top: 0;
        }

        p {
          display: block !important;
          margin-bottom: 5px;
          line-height: 23px;
          font-size: 16px;
        }

        h6 {
          font-weight: 700;
        }
      }
    }

    .basic-product {
      display: flex;
      align-items: center;
      gap: 25px;

      .img-wrapper {
        width: 30%;
        min-height: 210px;
        @include flex_common;
      }

      .product-detail {
        width: calc(70% - 25px);
        margin: 0;

        >div {
          border-bottom: none;
        }

        .offer-panel {
          display: none;
        }
      }

      @media (max-width: 576px) {
        gap: 10px;
        flex-direction: column;

        .img-wrapper {
          min-height: auto;
          width: 100%;
        }

        .product-detail {
          width: 100%;
        }
      }
    }
  }
}

.collection-product-wrapper {
  .product-top-filter {
    margin-bottom: 15px;
    padding: 12px 16px;
    background-color: $top-header;
    position: relative;
    border: 1px solid $white-dark;

    @media (max-width: 991px) {
      padding: 0;
      background-color: transparent;
      border: none;
    }

    .search-count,
    .sidebar-popup {
      text-transform: capitalize;
      display: flex;
      align-items: center;
      background: unset;
      background-color: $white;
      border: 1px solid $white-dark;
      margin-right: 18px;

      @media (max-width: 991px) {
        width: 100%;
        margin-right: 15px;
      }

      @media (max-width: 575px) {
        margin-right: 0;
        margin-bottom: calc(10px + 7 * (100vw - 320px) / 672);
      }

      h5 {
        margin-bottom: 0;
        font-size: calc(14px + 2 * (100vw - 320px) / 1600);
        width: 100%;
        gap: 8px;
        @include flex_common($dis: flex, $align: center, $justify: space-between);
        padding: calc(9px + (12 - 9) * ((100vw - 320px) / (1920 - 320))) calc(10px + 9 * (100vw - 320px) / 1600);
        white-space: nowrap;

        @media (max-width: 575px) {
          line-height: 20px;
        }
      }
    }

    .search-count {
      &:empty {
        display: none;
      }
    }

    .product-filter-content,
    .popup-filter {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;

      .collection-view {
        padding: 20px;
        width: 10%;

        ul {
          li {
            height: 100%;
            vertical-align: middle;
            cursor: pointer;

            &:first-child {
              margin-right: 14px;
            }

            i {
              font-size: 18px;
            }
          }
        }
      }

      .collection-grid-view {
        margin-left: auto;

        @media (max-width: 991px) {
          display: none;
        }

        ul {
          display: flex;
          align-items: center;
          gap: 9px;

          li {
            width: calc(39px + (42 - 39) * ((100vw - 991px) / (1920 - 991)));
            height: calc(39px + (42 - 39) * ((100vw - 991px) / (1920 - 991)));
            @include flex_common;
            background-color: $white;
            border: 1px solid $white-dark;
            cursor: pointer;

            &.active {
              background-color: var(--theme-color);
              border-color: transparent;

              img {
                filter: invert(1) brightness(100);
              }
            }

            img {
              height: 16px;
              cursor: pointer;
            }
          }
        }
      }

      .product-page-per-view,
      .product-page-filter {
        position: relative;
        width: 22%;

        .dropdown {
          .dropdown-toggle {
            border: 1px solid $white-dark;
            padding: calc(9px + (13 - 9) * ((100vw - 320px) / (1920 - 320))) calc(10px + 7 * (100vw - 320px) / 1600);
            position: relative;
            border-radius: 0;
            background-color: $white;
            color: #444;
            font-weight: 400;
            text-transform: none;
            width: 100%;
            gap: 4px;
            text-align: left;
            @include flex_common($dis: flex, $align: center, $justify: space-between);
            box-shadow: unset;

            &::after {
              content: "\ea4e";
              @include font;
              font-size: 19px;
              line-height: 1;
              vertical-align: unset;
              margin: 0;
              border: unset;
            }

            @media (max-width: 1199px) {
              width: auto;
            }

            @media (max-width: 991px) {
              width: 100%;
            }
          }

          .dropdown-menu {
            width: 100%;
            margin-top: 2px;
            border: 1px solid $white-dark;
            border-radius: 0;
            padding: 0;
            min-width: unset;
            max-height: 200px;
            overflow: auto;

            &::-webkit-scrollbar-track {
              border-radius: 0;
              background-color: rgba($color: var(--theme-color), $alpha: 0.14);
            }

            &::-webkit-scrollbar {
              width: 4px;
              height: 4px;
              background-color: #f5f5f5;
              border-radius: 0;
            }

            &::-webkit-scrollbar-thumb {
              border-radius: 0;
              background-color: var(--theme-color);
            }

            .dropdown-item {
              padding: 6px;
              font-weight: 500;
              color: #222;
              font-size: 14px;

              &:hover,
              &:active {
                background-color: var(--theme-color);
                color: $white;
              }
            }
          }
        }
      }

      .product-page-filter {
        margin-left: 15px;

        @media (max-width: 991px) {
          margin-left: 0;
        }

        &:before {
          right: 10px;
        }

        select {
          border-right: none;
        }
      }
    }

    .product-filter-content,
    .popup-filter {
      justify-content: unset;
      align-items: center;

      .dropdown-box-group {
        display: flex;
        align-items: center;

        .product-page-per-view,
        .product-page-filter {
          width: 100%;
        }

        @media (max-width: 575px) {
          flex-wrap: wrap;
        }
      }

      @media (max-width: 991px) {
        display: flex;
        flex-wrap: nowrap;
        gap: calc(10px + (17 - 10) * ((100vw - 320px) / (992 - 320)));
        padding: calc(9px + (12 - 9) * ((100vw - 320px) / (992 - 320))) calc(11px + (16 - 11) * ((100vw - 320px) / (992 - 320)));
        background-color: $top-header;
        border: 1px solid $white-dark;

        .dropdown-box-group {
          width: 100%;

          .product-page-per-view,
          .product-page-filter {
            width: 100%;
          }

          .product-page-filter {
            margin-left: 15px;
          }
        }
      }

      @media (max-width: 576px) {
        flex-wrap: wrap;

        .dropdown-box-group {
          .product-page-filter {
            margin: 0;
            margin-top: calc(10px + 7 * (100vw - 320px) / 672);
          }
        }
      }
    }

    .popup-filter {
      justify-content: unset;

      ::-webkit-scrollbar {
        width: 3px;
      }

      ::-webkit-scrollbar-track {
        background: $round-border;
      }

      ::-webkit-scrollbar-thumb {
        background: $grey5;

        &:hover {
          background: $grey2;
        }
      }

      @media (max-width: 991px) {
        display: flex;
        flex-wrap: nowrap;
        gap: calc(10px + 7 * (100vw - 320px) / 672);
        padding: calc(9px + 3 * (100vw - 320px) / 672) calc(11px + 5 * (100vw - 320px) / 672);
        background-color: $top-header;
      }

      @media (max-width: 576px) {
        flex-wrap: wrap;
      }

      .sidebar-popup {
        position: relative;
        cursor: pointer;

        a {
          font-size: 16px;
          color: $dark-font;
        }

        .collection-filter {
          background-color: $top-header;
          height: 600px;
          width: 320px;
          overflow-y: scroll;

          @media (max-width: 576px) {
            width: 300px;
          }

          .collection-filter-block {
            border: none;
          }

          .theme-card {
            padding: 0 30px;
          }

          .collection-sidebar-banner {
            padding: 0 30px;

            img {
              width: 100%;
            }
          }
        }

        .filter-panel-title {
          width: 268px;
        }
      }

      .open-popup {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        background-color: $white;
        z-index: 1;
        border: 1px solid $border-grey;
        box-shadow: 0 0 5px $round-border;

        @media (max-width: 991px) {
          position: fixed;
          top: 0;
          left: 0;
          width: auto;
          height: 100vh;
          z-index: 10;

          &.open {
            display: block;
          }

          .collection-filter {
            display: block;
            inset: unset;
            width: calc(300px + (350 - 300) * ((100vw - 320px) / (991 - 320)));
            height: unset;

            &.open {
              left: 0;
            }
          }
        }

        &.open {
          display: block;
        }

        .collection-filter-block {
          margin-bottom: 0;
        }
      }

      .product-page-per-view,
      .product-page-filter {
        width: 20%;

        select {
          padding-right: 45px;
          font-size: 16px;
        }

        &:before {
          right: 35px;
        }
      }

      .collection-view {
        width: 20%;
      }

      .product-page-filter {
        &:before {
          right: 25px !important;
        }
      }
    }
  }

  .product-wrapper-grid {
    .product-box {
      margin-top: 50px;

      .product-detail {
        p {
          display: none;
        }
      }
    }

    .product-five {
      flex: 0 0 20%;
      max-width: 20%;
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-inline: 15px;
    }

    .col-lg-2 {
      .product-box {
        .product-detail {
          h6 {
            font-size: 13px;
          }

          h4 {
            font-size: 18px;
          }

          .rating {
            i {
              padding-right: 0;
            }
          }
        }

        .img-wrapper {
          .lable-block {
            .lable3 {
              padding: 8px 4px;
              font-size: 12px;
            }
          }
        }
      }
    }
  }
}

.filter-main-btn {
  display: none;
  margin-bottom: calc(9px + (20 - 9) * ((100vw - 320px) / (1920 - 320)));
  background-color: var(--theme-color);
  padding: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320))) calc(11px + (22 - 11) * ((100vw - 320px) / (1920 - 320)));
  color: $white;
  font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid transparent;
  font-weight: 600;

  &:hover,
  &:first-child:active {
    border-color: var(--theme-color);
    color: var(--theme-color);
  }

  svg {
    width: unset;
    height: unset;
    margin-top: -6px;
  }
}

.collection-mobile-back {
  padding-block: 15px;
  border-bottom: 1px solid $white-dark;
  display: none;

  span {
    text-transform: uppercase;
    font-size: 16px;
    color: $dark-font;
    line-height: 33px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;

    svg {
      width: unset;
      stroke-width: 1px;
      height: unset;
      font-size: 22px;
    }
  }
}

.theme-pagination-block {
  @include flex_common;
  margin-top: calc(25px + (39 - 25) * ((100vw - 320px) / (1920 - 320)));
}

.page-link.disabled,
.disabled>.page-link {
  background-color: $white;
  cursor: not-allowed;
  border-color: $white-dark;
  padding: 0;
  width: calc(32px + (38 - 32) * ((100vw - 320px) / (1920 - 320)));
  height: calc(32px + (38 - 32) * ((100vw - 320px) / (1920 - 320)));
  @include flex_common;
}

.product-pagination {
  margin-top: calc(25px + (50 - 25) * ((100vw - 320px) / (1920 - 320)));

  .disabled {

    &::after,
    &::before {
      content: unset;
    }
  }

  .pagination {
    border-radius: 0;
    gap: 10px;

    @media (max-width: 991px) {
      justify-content: center;
    }

    li {
      &.disabled {
        opacity: 1 !important;

        .page-link {
          border-color: $white-dark;
          color: #777;
        }

        &.active {
          .page-link {
            color: $white;
            font-weight: 500;
            background-color: var(--theme-color);
            border-color: var(--theme-color);
          }
        }
      }

      &:not(:first-child) {
        .page-link {
          margin: 0;
        }
      }

      &:first-child,
      &:last-child {
        .page-link {
          border-radius: 0;
        }
      }

      a {
        @include flex_common;
        z-index: 0;
        border-top: 0;
        color: $grey;
        border: 1px solid $white-dark;
        cursor: pointer;
        padding: 0;
        border-radius: 0;
        width: calc(34px + (40 - 34) * ((100vw - 320px) / (1920 - 320)));
        height: calc(34px + (40 - 34) * ((100vw - 320px) / (1920 - 320)));
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        background-color: $white;

        svg {
          width: unset;
          height: unset;
        }

        &.active {
          color: $white;
          font-weight: 500;
          background-color: var(--theme-color);
          border-color: var(--theme-color);
        }
      }

      &.active {
        a {
          color: $white;
          font-weight: 500;
          background-color: var(--theme-color);
          border-color: var(--theme-color);
        }
      }
    }
  }

  .product-search-count-bottom {
    @include flex_common($dis: flex, $align: center, $justify: flex-end);
    height: 100%;

    @media (max-width: 991px) {
      display: block;
      margin-bottom: calc(8px + (15 - 8) * ((100vw - 320px) / (992 - 320)));
    }

    h5 {
      color: $grey;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      margin: 0;
    }
  }
}

.product-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;

  li {
    width: 38px;
    height: 38px;
    background-color: $top-header;
    border: 1px solid $white-dark;
    @include flex_common;

    &:hover {
      a {
        color: var(--theme-color);
      }
    }

    i {
      font-size: 20px;
      color: $dark-top;
    }
  }
}

.thumbnail-image-outside {
  position: sticky;
  top: 120px;
  left: 0;

  .product-page-details {
    position: unset;
    inset: unset;
  }

  .image-outside-thumbnail {
    margin-top: 32px;
  }
}

.bundle {
  margin-top: 10px;

  .bundle_img {
    display: flex;

    .img-box {
      position: relative;

      img {
        max-width: 115px;
        padding: 6px;
        background-color: $top-header;
        border: 1px solid $white-dark;
        border-radius: 6px;
      }

      +.img-box {
        &:before {
          content: "\ea13";
          @include font;
          padding: 0 7px;
          font-size: 22px;
        }
      }
    }

    .plus {
      display: flex;
      align-items: center;
      padding: 0 7px;
      font-size: 22px;
    }
  }

  .bundle-image-box {
    border-radius: 8px;
    overflow: hidden;

    .bundle-box {
      display: flex;
      align-items: center;
      gap: 15px;
      border: 1px solid $white-dark;
      padding: 12px 12px;
      background-color: $top-header;
      position: relative;
      text-align: left;

      +.bundle-box {
        border-top: 1px solid $white-dark;
      }

      .form-check {
        min-height: unset;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 12px;
        right: 12px;

        .form-check-input {
          float: unset;
          margin: 0;
          filter: unset;
        }
      }

      .bundle-image {
        width: 70px;
        height: 70px;
        background-color: $white;
        @include flex_common;

        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }

      .bundle-content {
        width: calc(100% - 15px - 70px);

        h3 {
          font-weight: 500;
          margin: 0;
          font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
          letter-spacing: 1.4px;
          margin-top: 9px;
          color: var(--theme-color);
        }

        .product-page-details {
          position: unset;
          inset: unset;
        }

        select {
          margin-left: 0;
          font-size: 14px;
          font-weight: 500;
          padding-block: 6px;
          color: $grey;
          border: none;
          margin-top: calc(6px + (11 - 6) * ((100vw - 320px) / (1920 - 320)));
          text-transform: capitalize;
          max-width: max-content;
        }

        h4 {
          font-size: 16px;
          font-weight: 500;
          letter-spacing: unset;
          text-transform: unset;
          margin-bottom: 0;
          white-space: nowrap;
          width: 86%;
          color: $dark-top;
          overflow: hidden;
          text-overflow: ellipsis;
        }

        .content-list {
          display: grid;
          list-style-type: disc;
          padding-left: 1.1rem;
          gap: 4px;
          margin-top: 16px;

          li {
            display: list-item;
            text-decoration: underline;
          }
        }

        .variation-box {
          .sub-title {
            display: none;
          }
        }
      }
    }
  }

  .bundle-title {
    margin-top: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.3;
    color: $dark-font;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  }

  .total-price {
    font-size: calc(20px + (22 - 20) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
  }

  .bundle-btn {
    text-transform: capitalize;
    padding: calc(9px + (13 - 9) * ((100vw - 320px) / (1920 - 320))) calc(18px + (23 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
  }

  .bundle_detail {
    margin-top: 15px;

    .price_product {
      color: $dark-font;
      padding-left: 3px;
      font-weight: 600;
    }
  }
}

.nft-collection-section {
  background-color: #1b1c21;
  overflow: hidden;
  padding: calc(40px + (110 - 40) * ((100vw - 320px) / (1920 - 320))) 0;

  .basic-product {
    .product-title {
      color: #fff;
    }

    .price {
      color: #fff;
    }

    del {
      color: #ddd;
    }

    .product-detail {
      h6 {
        color: #ddd;
      }
    }

    .add-cart-button {
      button {
        color: #ddd;
        background-color: #404040;
      }
    }

    &.theme-product-1 {
      border-color: #404040;

      .product-detail {
        >div {
          border-color: #404040;
        }

        .offer-panel {
          color: #ddd;
        }
      }
    }

    &.theme-product-2 {
      .product-title {
        color: #222;
      }

      .price {
        color: #222;
      }

      del {
        color: #777;
      }
    }

    &.theme-product-3 {
      border-color: #404040;
    }

    &.theme-product-6 {
      border-color: #404040;
    }

    &.theme-product-9 {
      border: none;
      overflow: hidden;

      .product-title {
        color: #222;
      }

      .rating-label {
        >span {
          color: #777;
        }
      }

      del {
        color: #777;
      }
    }
  }

  .product-left-title {
    h3 {
      color: $white;
      max-width: unset;
    }

    p {
      width: 90%;
      color: rgba($white, 0.54);
    }
  }
}

/*  collection page */
.collection {
  .collection-block {
    text-align: center;

    img,
    .bg-size {
      margin-bottom: 20px;
    }

    .collection-content {
      text-align: center;

      h3 {
        margin-bottom: 10px;
        color: $dark-font;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 0.05em;
      }

      h4 {
        color: $dark-font;
        margin-bottom: 10px;
        font-size: 16px;
      }

      p {
        line-height: 1.5;
      }

      .btn-solid,
      .btn-outline {
        padding: 10px 25px;
      }
    }
  }
}

.search-product {
  margin-bottom: -30px;

  >div {
    margin-bottom: 30px;
  }
}

.custom-2-grid {
  display: flex;
  gap: calc(15px + (24 - 15) * ((100vw - 320px) / (1920 - 320)));
  flex-wrap: wrap;

  >div {
    width: calc(50% - 12px);

    @media (max-width: 400px) {
      width: 100%;
    }
  }
}

/* faq  */
.faq-section {
  .faq-accordion {
    .accordion-item {
      border-radius: 0;
      border: 1px solid $white-dark;
      overflow: hidden;
      background-color: transparent;

      +.accordion-item {
        margin-top: 25px;
      }

      .accordion-header {
        padding: 0;
        border-bottom: 0;
        transition: all 0.3s ease;

        button {
          color: $font-color;
          font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
          padding: calc(11px + (18 - 11) * ((100vw - 320px) / (1920 - 320)));
          line-height: 1.4;
          font-weight: 500;
          text-transform: unset;
          z-index: 0;
          text-decoration: unset;
          box-shadow: unset;
          background-color: $top-header;
          border: unset;
          align-items: flex-start;
          letter-spacing: unset;
          justify-content: space-between;
          transition: all 0.3s ease;

          &:not(.collapsed) {
            font-weight: 600;
            color: var(--theme-color);
          }

          &::after {
            content: "\ea4e";
            @include font;
            width: unset;
            height: unset;
            margin: unset;
            background: unset;
            font-size: calc(22px + (27 - 22) * ((100vw - 320px) / (1920 - 320)));
            font-weight: 400;
            line-height: 1;
            color: #333333;
          }

          &:hover {
            color: var(--theme-color);
          }
        }
      }

      .card-body {
        padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320))) calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));

        p {
          margin-bottom: 0;
          font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
          color: $grey;
          line-height: 1.7;
          letter-spacing: unset;
          font-weight: 500;
        }
      }
    }
  }
}

/*  search */
.search-block {
  padding: 0;

  .form-header {
    .input-group {
      gap: 15px;

      svg {
        width: unset;
        height: unset;
        padding-right: 4px;
        font-size: 16px;
      }

      .btn {
        z-index: 0;
        display: flex;
        align-items: center;
        gap: 3px;
      }
    }
  }
}

/*  contacts */
.contact-page {
  .map-box {
    height: 420px;

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
  }

  .contact-title {
    position: sticky;
    top: 130px;
    left: 0;

    h2 {
      letter-spacing: unset;
      text-transform: none;
      margin: 0;
      line-height: 1.3;
    }

    p {
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      line-height: 1.7;
      width: 100%;
      font-weight: 500;
      margin-top: 10px;
      margin-bottom: 0;
    }

    .footer-social {
      margin-top: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
      display: flex;
      align-items: center;

      @media (max-width: 991px) {
        ul {
          margin: unset;
        }
      }
    }
  }

  .contact-right {
    ul {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: calc(17px + (23 - 17) * ((100vw - 320px) / (1920 - 320)));
      margin-top: calc(20px + (28 - 20) * ((100vw - 320px) / (1920 - 320)));

      @media (max-width: 1200px) {
        grid-template-columns: 1fr 1fr;
      }

      @media (max-width: 768px) {
        grid-template-columns: 1fr;
      }

      li {
        width: 100%;
        padding: 15px;
        background-color: $top-header;
        border: 1px solid $white-dark;
        border-radius: 0;
        display: flex;
        gap: 11px;

        .contact-icon {
          width: 50px;
          height: 50px;
          background-color: $white;
          @include flex_common;
          border-radius: 0;

          svg {
            width: unset;
            height: unset;
            font-size: 23px;
            color: var(--theme-color);
          }
        }

        .media-body {
          h6 {
            font-weight: 600;
            color: $dark-font;
            font-size: 18px;
            line-height: 1.4;
            margin-top: 0;
            margin-bottom: 0;
          }

          p {
            font-weight: 500;
            margin-bottom: 0;
            line-height: 1.5;
            font-size: 15px;
            margin-top: 3px;
          }
        }
      }
    }
  }

  .contact-form {
    background-color: $top-header;
    padding: calc(20px + (44 - 20) * ((100vw - 320px) / (1920 - 320))) calc(16px + (44 - 16) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;
    border: 1px solid $white-dark;

    .form-box {
      .form-control {
        border: unset;

        &::placeholder {
          color: #8a8a8a;
        }
      }

      label {
        color: #333333;
      }
    }
  }
}

/*  shopping cart */
.qty-box {
  .input-group {
    span {
      button {
        background: $white !important;
        border: 1px solid $white-dark;
        height: 100%;
        z-index: 0;

        &:first-child {
          &:active {
            border-color: $white-dark;
          }
        }

        svg {
          font-size: 16px !important;
        }
      }
    }

    .form-control {
      text-align: center;
      width: 80px;
      flex: unset;
    }

    button {
      background-color: transparent;
      border: 0;
      color: $grey;
      cursor: pointer;
      padding-left: 12px;
      height: 100%;
      font-size: 12px;
      font-weight: 900;
      line-height: 1;

      svg {
        font-weight: 900;
        color: $dark-font;
        width: unset;
        height: unset;
      }
    }

    .icon {
      padding-right: 0;
    }
  }
}

.wishlist-section {
  tbody {
    tr {
      &:last-child {
        td {
          border: unset !important;
        }
      }

      td {
        .icon-box {
          a {
            font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
            border: 1px solid $white-dark;
            width: calc(28px + (32 - 28) * ((100vw - 320px) / (1920 - 320)));
            height: calc(28px + (32 - 28) * ((100vw - 320px) / (1920 - 320)));
            border-radius: 0;
            background-color: $top-header;
            color: $grey;
            @include flex_common;
          }
        }

        .mobile-cart-content {
          @media (max-width: 767px) {
            .col {
              &:last-child {
                .td-color {
                  display: flex;
                  align-items: center;
                  gap: calc(7px + (11 - 7) * ((100vw - 320px) / (767 - 320)));

                  a {
                    font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (767 - 320)));
                    border: 1px solid $white-dark;
                    width: calc(28px + (32 - 28) * ((100vw - 320px) / (767 - 320)));
                    height: calc(28px + (32 - 28) * ((100vw - 320px) / (767 - 320)));
                    border-radius: 4px;
                    margin: 0 auto;
                    background-color: $top-header;
                    color: $grey;
                    @include flex_common;
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

.cart-section,
.wishlist-section {
  .table {
    tbody {
      +tbody {
        border-top: none;
      }
    }
  }

  .cart-buttons {
    padding-top: 35px;

    >div {
      &:last-child {
        text-align: right;
      }
    }

    a {
      background-color: var(--theme-color);
      color: $white;
      text-transform: none;
      font-weight: 600;
      font-size: calc(16px + 2 * (100vw - 320px) / 1600);
      line-height: 1.3;
      padding: calc(9px + 2 * (100vw - 320px) / 1600) 20px;
      border-radius: 0;
      border: 1px solid transparent;

      &:hover {
        border-color: var(--theme-color);
        background-color: $white;
        color: var(--theme-color);
      }
    }
  }

  .wishlist-buttons {
    padding-top: 35px;
    text-align: right;

    &:last-child {
      a {
        margin-left: 15px;
      }
    }
  }

  .cart-table {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid $white-dark;

    thead {
      th {
        font-weight: 600;
        color: $dark-font;
        font-size: calc(17px + (19 - 17) * ((100vw - 320px) / (1920 - 320)));
        border-top: 0;
        text-align: center;
        padding: 16px 12px;
        background-color: $top-header;
        border: unset !important;
      }
    }
  }

  tbody {
    h2 {
      margin-bottom: 0;
    }

    .remove-btn {
      font-size: calc(18px + 2 * (100vw - 320px) / 1600);
      border: 1px solid $white-dark;
      width: calc(28px + 4 * (100vw - 320px) / 1600);
      height: calc(28px + 4 * (100vw - 320px) / 1600);
      border-radius: 0;
      background-color: $top-header;
      color: $grey;
      @include flex_common;
      margin: 0 auto;
    }

    .table-price {
      h2 {
        color: $dark-font;
        font-weight: 600;
        font-size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
        @include flex_common;
        gap: 6px;
        white-space: nowrap;

        del {
          font-weight: 500;
          font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
          color: $grey;
        }
      }

      h6 {
        font-size: 18px;
        margin-block: 4px 0;
        font-weight: 600;
        color: var(--theme-color);
      }
    }

    .qty-box {
      .input-group {
        justify-content: center;
        flex-wrap: nowrap;

        .form-control {
          padding-block: 10px;
          border: 1px solid $white-dark;
          font-weight: 500;
        }

        button {
          border: 1px solid $white-dark;
          font-size: 16px;
          z-index: 0;

          i {
            font-weight: 500;
          }
        }
      }
    }

    tr {
      td {
        vertical-align: middle;
        color: $grey;
        border-top: 0;
        border-bottom: 1px solid $white-dark !important;
        text-align: center;

        &:nth-child(2) {
          width: 29rem;
        }

        a,
        p {
          color: $grey;
          font-weight: 500;
          font-size: calc(16px + (17 - 16) * ((100vw - 320px) / (1920 - 320)));
          text-transform: capitalize;
          margin-bottom: 0;

          img {
            height: 90px;
            width: 90px;
            object-fit: contain;
          }
        }

        .td-color {
          color: var(--theme-color);
        }

        h2 {
          color: var(--theme-color);
          font-size: calc(19px + 3 * (100vw - 320px) / 1600);
          font-weight: 500;
          letter-spacing: unset;
          text-transform: unset;

          del {
            font-weight: 500;
            color: $grey;
          }
        }

        .mobile-cart-content {
          display: none;
          justify-content: center;
          margin-top: 10px;
          flex-wrap: nowrap;

          .qty-box {
            border-radius: 5px;

            .input-group {
              .form-control {
                width: 48px;
                padding: 6px;
              }
            }
          }

          .col {
            align-self: center;
            margin-left: 10px;
            margin-right: 10px;

            @media (max-width: 768px) {
              margin-left: 5px;
              margin-right: 5px;
            }
          }
        }
      }
    }
  }

  tfoot {
    tr {
      th {
        padding-top: 35px;
        text-align: right;
      }

      td {
        padding-block: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
        border: none;
        text-align: center;
        color: $dark-font;
        font-size: 17px;
        font-weight: 500;
        white-space: nowrap;

        h2 {
          font-weight: 600;
          font-size: 24px;
          margin-bottom: 0;
        }

        &:first-child {
          text-transform: capitalize;
          font-weight: 500;
          font-size: 18px;
          color: $grey;
          text-align: right;
        }
      }
    }
  }
}

/*  blog-details */
.blog-detail-page {
  .blog-detail-contain {
    p {
      color: $grey;
      line-height: 1.6;
      margin: 0;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      font-weight: 500;

      +p {
        margin-top: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
      }
    }

    h3 {
      margin-top: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
      font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
      font-weight: 600;
      color: #222;
      margin-bottom: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));

      strong {
        font-weight: inherit;
      }
    }
  }

  .blog-detail {
    p {
      &:last-child {
        margin-bottom: 0;
      }
    }

    img {
      margin-bottom: 28px;
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    h3 {
      color: $dark-font;
      font-weight: 700;
      margin-bottom: calc(9px + 4 * (100vw - 320px) / 1600);
      letter-spacing: unset;
      font-size: calc(20px + (38 - 20) * ((100vw - 320px) / (1920 - 320)));
      line-height: 1.3;
    }

    .post-social {
      color: $grey;
      padding-bottom: 21px;

      li {
        font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 500;
        color: $grey;

        +li {
          padding-left: 11px;
          margin-left: 11px;
          border-left: 1px solid $white-dark;
        }
      }
    }
  }

  .blog-advance {
    >div {
      &:last-child {
        p {
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }

    img,
    .bg-size {
      margin-bottom: 25px;
      margin-top: 25px;
    }

    ul {
      list-style-type: decimal;
      list-style-position: inside;
      line-height: 2.5;
      font-size: 15px;

      li {
        display: list-item;
        font-weight: 700;
      }
    }

    p {
      line-height: 1.8;
    }
  }

  .comment-section {
    border-bottom: 1px solid $round-border;

    li {
      padding-top: 60px;
      padding-bottom: 60px;
      border-top: 1px solid $round-border;

      img {
        height: 65px;
        width: 65px;
        margin-right: 20px;
        border-radius: 100%;
      }

      h6 {
        color: $grey4;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 5px;

        span {
          font-size: 13px;
          font-weight: 500;
          text-transform: capitalize;
          color: $grey;
          margin-left: 20px;
        }
      }

      p {
        line-height: 1.8;
        margin-bottom: 0;
      }
    }
  }

  .blog-contact {
    h2 {
      margin-bottom: 30px;
      margin-top: -5px;
    }

    .theme-form {
      label {
        text-transform: capitalize;
        color: $font-color;
        font-size: 16px;
        font-weight: 700;
      }

      input,
      textarea {
        border-color: $round-border;
        font-size: 14px;
        padding: 17px 25px;
        margin-bottom: 30px;
      }
    }
  }
}

/*  blog-page */
.blog-page {
  .no-sidebar {
    .blog-box {
      .blog-image {
        height: calc(150px + (280 - 150) * ((100vw - 320px) / (1920 - 320)));
      }
    }
  }

  .blog-sidebar {
    h6 {
      margin-bottom: 0;
      line-height: 20px;
      color: $font-color;
      font-weight: 700;
    }

    p {
      line-height: 20px;
      margin-bottom: 0;
      color: $grey2;
    }

    h4 {
      color: $dark-font;
      text-transform: unset;
      font-weight: 600;
      margin-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
      line-height: 1.3;
      letter-spacing: unset;
      font-size: calc(17px + (21 - 17) * ((100vw - 320px) / (1920 - 320)));
      padding-bottom: 6px;
      border-bottom: 1px solid $white-dark;
    }

    .theme-card {
      position: relative;
      background-color: $top-header;
      border: 1px solid $white-dark;
      padding: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
      border-radius: 0;

      +.theme-card {
        margin-top: calc(24px + (45 - 24) * ((100vw - 320px) / (1920 - 320)));
      }

      .recent-blog {
        li {
          +li {
            margin-top: calc(21px + (30 - 21) * ((100vw - 320px) / (1920 - 320)));
          }

          .media {
            img {
              width: 100px;
              margin-right: 10px;
            }

            .media-body {
              a {
                h5 {
                  font-weight: 600;
                  line-height: 1.45;
                  -webkit-line-clamp: 2;
                  -webkit-box-orient: vertical;
                  display: -webkit-box;
                  overflow: hidden;
                  padding-bottom: 0;
                  letter-spacing: unset;
                }
              }
            }
          }

          .blog-box {
            align-items: unset;
            gap: 10px;
            border: unset;
            padding-bottom: 0;
            border-radius: 0;

            .blog-image {
              width: calc(90px + (100 - 90) * ((100vw - 320px) / (1920 - 320)));
              height: auto;
              margin: 0;

              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                margin: 0;
              }
            }

            .blog-content {
              width: calc(100% - calc(90px + (100 - 90) * ((100vw - 320px) / (1920 - 320))) - 10px);

              a {
                h5 {
                  padding-bottom: 0;
                  text-transform: unset;
                  margin: 0;
                  line-height: 1.4;
                  font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
                  font-weight: 500;
                }
              }

              h6 {
                line-height: 1.4;
                color: $grey;
                font-weight: 500;
                margin-bottom: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
                font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
              }
            }
          }
        }
      }

      .tags {
        display: flex;
        gap: 9px 12px;
        flex-wrap: wrap;

        li {
          padding: 6px calc(9px + (13 - 9) * ((100vw - 320px) / (1920 - 320)));
          transition: all 0.2s ease-in-out;
          background-color: $white;
          border: 1px solid $white-dark;

          a {
            font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
            color: $grey;
            text-transform: unset;
            font-weight: 500;
          }

          &:hover {
            background-color: var(--theme-color);
            border-color: var(--theme-color);

            a {
              color: $white;
            }
          }
        }
      }

      .popular-blog {
        li {
          .blog-date {
            background-color: var(--theme-color);
            height: 70px;
            width: 70px;
            margin: 0 15px 0 0;
            padding: 15px;

            span {
              display: block;
              text-align: center;
              color: $white;
              text-transform: uppercase;
            }
          }

          +li {
            margin-top: 30px;
          }

          p {
            margin-top: 10px;
          }
        }
      }
    }
  }

  .blog-media {
    margin-bottom: 30px;

    &:last-child {
      margin-bottom: 0;
    }

    .blog-right {
      height: 100%;
      @include flex_common;

      h6 {
        color: var(--theme-color);
        text-transform: uppercase;
        margin-bottom: 10px;
      }

      h4 {
        color: $font-color;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 15px;
      }

      p {
        line-height: 1.8;
        margin-bottom: 0;
        letter-spacing: 0.04em;
      }

      ul {
        color: $grey;
        margin-bottom: 15px;

        li {
          font-size: 14px;
          line-height: 1.5;

          +li {
            padding-left: 15px;
            margin-left: 15px;
            border-left: 1px solid $round-border;
          }

          i {
            padding-right: 3px;
          }
        }
      }
    }
  }

  /*  Grid Blog */
  .blog-box {
    overflow: hidden;
    position: relative;

    &:hover {
      .blog-image {
        img {
          transform: scale(1.12);
          overflow: hidden;
        }
      }

      .blog-detail {
        label {
          color: $white;

          &::before {
            opacity: 1;
          }
        }
      }
    }

    .blog-box-image {
      overflow: hidden;
      border-radius: 0;

      a {
        transition: all 0.2s ease-in-out;
      }
    }

    .blog-image {
      position: relative;
      overflow: hidden;
      margin-bottom: 15px;
      border-radius: 0;
      height: calc(140px + (180 - 140) * ((100vw - 320px) / (1920 - 320)));

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s, transform 1.25s cubic-bezier(0, 0, 0.44, 1.18);
      }

      label {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background-color: var(--theme-color);
        color: $white;
        border-radius: 5px;
        border: none;
        padding: 8px 10px;
        font-size: 12px;
        letter-spacing: 0.9px;
        box-shadow: 3px 3px 6px rgba($black, 0.2);
      }
    }

    .blog-contain {
      padding: 0;

      .blog-label {
        display: flex;
        flex-wrap: wrap;
        margin-block: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320))) calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)));
        align-items: center;

        svg {
          width: unset;
          height: unset;
        }

        >span {
          display: flex;
          align-items: center;
          gap: 5px;
          font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 500;
          color: $dark-font;

          +span {
            margin-left: 10px;
            padding-left: 10px;
            border-left: 1px solid $white-dark;
          }
        }
      }

      a {
        color: $dark-font;

        h3 {
          font-weight: 600;
          line-height: 1.5;
          text-transform: capitalize;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          display: -webkit-box;
          overflow: hidden;
          font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
          transition: all 0.2s ease-in-out;
          letter-spacing: unset;
          margin: 0;
          color: $dark-font;
        }
      }

      p {
        display: none;
      }

      .blog-button {
        border: none;
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 0;
        overflow: hidden;
        cursor: pointer;
        border-radius: 0;
        font-weight: 500;
        color: var(--theme-color);
        transition: all 0.2s ease-in-out;
        padding: 0;
        background-color: transparent;

        svg {
          width: unset;
          height: unset;
          margin-left: 4px;
          font-size: 20px;
          line-height: 1;
          transform: rotate(-45deg);
          margin-top: -2px;
        }
      }
    }
  }

  .blog-list {
    display: flex;
    align-items: center;
    border: 1px solid $white-dark;
    gap: 15px;
    border-radius: 0;
    padding: 0;

    @media (max-width: 575px) {
      display: block;
    }

    .blog-image {
      margin: 0;
      border-radius: 0;
      height: calc(240px + (280 - 240) * ((100vw - 575px) / (1920 - 575)));
      width: calc(230px + (340 - 230) * ((100vw - 575px) / (1920 - 575)));

      @media (max-width: 575px) {
        width: 100%;
      }
    }

    .blog-contain {
      width: calc(100% - calc(230px + (340 - 230) * ((100vw - 575px) / (1920 - 575))) - 15px);
      padding: 0 20px 0 0;

      @media (max-width: 575px) {
        width: 100%;
        padding: calc(12px + (20 - 12) * ((100vw - 320px) / (576 - 320)));
      }

      a {
        h3 {
          font-weight: 600;
          line-height: 1.5;
          text-transform: capitalize;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          display: -webkit-box;
          overflow: hidden;
          font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
          transition: all 0.2s ease-in-out;
          letter-spacing: unset;
          margin: 0;
          color: $dark-font;
        }
      }

      p {
        line-height: 1.6;
        color: $grey;
        margin-bottom: 0;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 500;
        margin-top: calc(11px + (15 - 11) * ((100vw - 320px) / (1920 - 320)));
      }

      .blog-label {
        display: flex;
        flex-wrap: wrap;
        margin-block: 4px 0;
        align-items: center;

        @media (max-width: 380px) {
          display: block;
        }

        >span {
          display: flex;
          align-items: center;
          gap: 5px;
          font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 500;
          color: $grey;

          +span {
            margin-left: 10px;
            padding-left: 10px;
            border-left: 1px solid $white-dark;

            @media (max-width: 380px) {
              margin-left: unset;
              padding-left: unset;
              border-left: unset;
              margin-top: 4px;
            }
          }
        }
      }

      .blog-button {
        border: none;
        display: inline-flex;
        align-items: center;
        position: relative;
        z-index: 0;
        overflow: hidden;
        border-radius: 0;
        font-weight: 500;
        padding: 8px calc(11px + (16 - 11) * ((100vw - 320px) / (1920 - 320)));
        background-color: var(--theme-color);
        transition: all 0.2s ease-in-out;
        margin-top: calc(9px + (14 - 9) * ((100vw - 320px) / (1920 - 320)));
        font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
        color: $white;

        svg {
          width: unset;
          height: unset;
          margin-left: 10px;
          font-size: 20px;
          line-height: 1;
          display: none;
        }

        &:hover {
          color: $white;

          &::after {
            opacity: 1;
          }
        }
      }
    }
  }

  .blog-detail {
    padding: calc(11px + (20 - 11) * ((100vw - 320px) / (1920 - 320)));
    margin-top: 0;

    h2 {
      font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
      line-height: 1.4;
    }

    label {
      font-size: 12px;
      padding: 7px 11px;
      border-radius: 50px;
      color: var(--theme-color);
      margin-bottom: calc(4px + (12 - 4) * ((100vw - 320px) / (1920 - 320)));
      position: relative;
      overflow: hidden;
      z-index: 0;
      transition: all 0.2s ease-in-out;

      &::before {
        top: 0;
        left: 0;
        background-color: var(--theme-color);
        opacity: 0.1;
        z-index: -1;
        transition: all 0.2s ease-in-out;
      }
    }

    a {
      display: block;
    }

    h3 {
      line-height: 1.4;
      margin-bottom: 5px;
      font-weight: 600;
    }

    h5 {
      font-size: 15px;
      margin-top: 10px;
      font-weight: 500;
    }

    .blog-list {
      margin-top: 15px;
      gap: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));

      span {
        margin-bottom: -5px;
        font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
      }

      .blog-social-icon {
        position: relative;

        .icon {
          position: absolute;
          top: 0;
          right: 0;
          display: flex;
          align-items: center;
          background-color: $white;
          transition: all 0.2s ease-in-out;
          opacity: 0;

          li {
            transition: all 0.2s ease-in-out;

            .fab {
              font-size: 14px;
            }
          }
        }

        &:hover {
          .icon {
            opacity: 1;
          }
        }
      }
    }
  }
}

.slider-nav {
  .slider-image {
    border: 1px solid $white-dark;
    background-color: $top-header;
    position: relative;
    overflow: hidden;
    height: calc(123px + (161 - 123) * ((100vw - 320px) / (1920 - 320)));

    button {
      position: absolute;
      width: 40px;
      height: 35px;
      @include flex_common;
      background-color: $white;
      border-radius: 5px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 18px;
      color: var(--theme-color);
      border: unset;

      svg {
        position: relative;
        inset: unset;
        transform: unset;
        width: unset;
        height: unset;
      }
    }

    span {
      position: absolute;
      width: 40px;
      height: 40px;
      @include flex_common;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background-color: $white;
      padding: 6px;

      svg {
        color: var(--theme-color);
        width: unset;
        height: unset;
      }
    }

    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    img {
      cursor: pointer;
      opacity: 0.6;
      width: 100%;
      object-fit: contain;
      height: 100%;
    }

    &.active {
      img {
        opacity: 1;
        border: unset;
      }
    }
  }

  .slick-current {
    .slider-image {
      img {
        opacity: 1;
      }
    }
  }
}

.image-scroll {
  div {
    >div {
      padding-bottom: 20px;

      &:last-child {
        padding: 0;
      }
    }
  }
}

.product-right {
  .trending-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;

    img {
      width: 30px;
    }

    h5 {
      margin-bottom: 0;
    }
  }

  .product-count {
    background-color: $top-header;
    padding: 10px 12px;
    margin-bottom: 20px;

    img {
      margin-right: 6px;
    }

    ul {
      margin-bottom: -4px;

      li {
        margin-bottom: 4px;

        &:first-child {
          margin-right: 14px;
        }
      }
    }
  }

  .security-img {
    width: 85%;
    max-width: 440px;
  }

  .rating {
    span {
      font-size: 20px;
      margin-right: 2px;
      color: #dd2c1d;
    }
  }

  p {
    margin-bottom: 0;
    line-height: 1.5em;
  }

  .shipping-info {
    li {
      display: block;
      font-size: 16px;
      color: $grey;
      line-height: 1.8;
    }
  }

  .border-product {
    padding-top: 25px;
    border-top: 1px dashed $round-border;
  }

  .delivery-info {
    li {
      font-size: 16px;
      color: $grey;
      line-height: 1.8;
    }
  }

  h2 {
    text-transform: uppercase;
    letter-spacing: unset;
    line-height: 1.3;
  }

  .price-detail {
    span {
      font-size: 16px;
      color: var(--theme-color);
    }
  }

  h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block: 15px 4px;
    color: var(--theme-color);
    font-weight: 600;
    letter-spacing: 0.01em;
    font-size: 26px;

    del {
      font-size: 16px;
    }
  }

  h4 {
    color: $dark-font;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;

    del {
      color: $grey;
    }

    span {
      padding-left: 5px;
      color: var(--theme-color);
    }
  }

  .product-buttons {
    margin-bottom: 20px;

    .btn-solid,
    .btn-outline {
      padding: 12px 45px;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    }

    a {
      &:last-child {
        margin-left: 10px;
      }
    }
  }

  .product-description {
    h6 {
      span {
        float: right;
      }
    }

    .qty-box {
      display: flex;
      align-items: center;

      .input-group {
        justify-content: unset;
        width: unset;

        .form-control {
          border-right: none;
        }
      }
    }
  }

  .product-icon {
    display: flex;

    .product-social {
      margin-top: 5px;

      li {
        padding-right: 30px;

        a {
          color: $font-color;
          transition: all 0.3s ease;

          i {
            font-size: 18px;
          }

          &:hover {
            color: var(--theme-color);
          }
        }

        &:last-child {
          padding-right: 0;
        }
      }
    }

    .wishlist-btn {
      background-color: transparent;
      border: none;

      i {
        border-left: 1px solid $round-border;
        font-size: 18px;
        padding-left: 10px;
        margin-left: 5px;
        transition: all 0.5s ease;
      }

      span {
        padding-left: 10px;
        font-size: 18px;
      }

      &:hover {
        i {
          color: var(--theme-color);
          transition: all 0.5s ease;
        }
      }
    }
  }

  .payment-card-bottom {
    margin-top: 10px;

    ul {
      li {
        padding-right: 10px;
      }
    }
  }

  &.product-form-box {
    border: 1px solid $white-dark;
    padding: calc(12px + (20 - 12) * ((100vw - 575px) / (1920 - 575)));
    border-radius: 0;

    @media (max-width: 767px) {
      text-align: unset;
    }

    @media (max-width: 575px) {
      border: unset;
      padding: 0;
    }

    .product-description {
      .qty-box {
        margin-bottom: 5px;

        .input-group {
          justify-content: center;
          width: 100%;
        }
      }
    }

    .product-buttons {
      margin-bottom: 0;
    }

    .product-buttons {
      margin-top: 0;
    }
  }

  .product-page-details {
    .main-title {
      text-transform: capitalize;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      margin-top: 10px;

      .divider {
        color: #ddd;
      }

      .rating-list {
        color: #ffbc37;
      }

      a {
        color: var(--theme-color);
        text-decoration: underline;
      }
    }

    .price-text {
      h3 {
        display: flex;
        align-items: center;
        gap: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
        margin-block: calc(9px + (17 - 9) * ((100vw - 320px) / (1920 - 320))) calc(2px + (4 - 2) * ((100vw - 320px) / (1920 - 320)));
        color: var(--theme-color);
        font-weight: 600;
        letter-spacing: 0.01em;
        font-size: calc(20px + (26 - 20) * ((100vw - 320px) / (1920 - 320)));

        .discounted-price {
          font-weight: 500;
          padding: 5px calc(12px + 0.0025 * (100vw - 320px));
          background-color: #ec89511c;
          color: var(--theme-color);
          display: inline-block;
          margin-bottom: 0;
          margin-left: 12px;
          font-size: 16px;

          del {
            font-size: 18px;
          }
        }
      }

      span {
        color: #aaa;
        display: block;
      }
    }

    .size-delivery-info {
      display: flex;
      align-items: center;
      font-size: 16px;
      border-top: 1px dashed #ddd;
      border-bottom: 1px dashed #ddd;
      padding-block: 12px;
      margin-block: 14px 20px;
      gap: 20px;

      a {
        color: #7d7d7d;
        position: relative;
        display: flex;
        align-items: center;

        span {
          position: relative;
          width: 1px;
          height: 26px;
          background-color: $white-dark;
          display: block;
          border-radius: 100%;
        }

        i {
          margin-right: 10px;
        }
      }
    }

    .product-offer {
      li {
        display: flex;
        gap: 20px;
        font-size: 14px;

        &:last-child {
          h5 {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
          }
        }

        h5 {
          margin-bottom: 17px;
          width: 85%;
          color: #7d7d7d;
          letter-spacing: 0.01em;

          span {
            font-weight: 600;
          }
        }

        img {
          width: 40px;
          height: 40px;
          border-radius: 100%;
        }
      }
    }

    .description-text {
      color: $grey;
      line-height: 1.6;
      font-size: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 16px;
      margin-top: 7px;
    }

    .progress {
      background-color: $light;
      height: 10px;
      border-radius: 14px;

      .progress-bar {
        background-image: linear-gradient(to left, #438600, #8fd747);
      }
    }

    .left-progressbar {
      margin-top: 20px;

      h6 {
        color: #7d7d7d;
      }
    }

    .buy-box {
      margin-top: 17px;
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 16px;

      a {
        color: #4c4c4c;
      }
    }

    .bordered-box {
      padding-top: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
      margin-top: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
      border-top: 1px dashed #ddd;
    }

    .dashed-border-box {
      padding: 22px 28px;
      border: 1px dashed #ddd;
      margin-bottom: 25px;
      display: flex;
      flex-direction: column;
      margin-top: calc(24px + (34 - 24) * ((100vw - 320px) / (1920 - 320)));

      h4 {
        margin-top: -30px;
        background-color: $white;
        padding-inline: 8px;
        width: max-content;

        @media (max-width: 575px) {
          margin-inline: auto;
        }
      }
    }

    .shipping-info {
      display: grid;
      line-height: 1.9;
      color: #5f5f5f;
      font-size: 16px;
      grid-template-columns: 1fr 1fr;
      gap: 0 6px;
      padding-left: 20px;
      margin-bottom: -7px;

      li {
        font-size: 16px;
        display: list-item;
        color: #7d7d7d;
      }
    }

    .qty-section {
      display: flex;
      align-items: center;
      gap: 10px;

      .qty-box {
        .input-group {
          background-color: $top-header;
          padding: 6px 6px;
          overflow: hidden;
          border: 1px solid $white-dark;

          input {
            background-color: $top-header;
            border: none;
            padding: 6px 5px;
            width: 90px;
          }

          button {
            background-color: $white !important;
            box-shadow: 0 0 8px #e8e8e8;
            border: none;
            padding: 5px 12px;
          }
        }
      }
    }

    .variation-box {
      display: flex;
      align-items: center;
      gap: 50px;
      margin-bottom: 20px;

      .sub-title {
        width: 60px;
        margin-bottom: 0;
      }
    }

    .wishlist-btn-group {
      display: flex;
      align-items: center;
      gap: 10px;

      button {
        padding: 0;
        width: 48px;
        height: 48px;
        border: 1px solid $white-dark;
        border-radius: 5px;
        background-color: $top-header;
        transition: none;
        font-size: 16px;
        line-height: 1;
        color: #6a6a6a;
      }
    }

    .sub-title {
      font-weight: 500;
      margin-bottom: 15px;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      letter-spacing: 0.01em;
    }

    .quantity-variant {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: $top-header;
      padding: 6px 6px;
      overflow: hidden;
      border: 1px solid $white-dark;
      margin: 0;

      &.active {
        background-color: white !important;
        box-shadow: 0 0 8px #e8e8e8;

        button {
          background-color: white !important;
        }
      }

      li {
        padding: 6px 10px;
        background-color: $top-header !important;

        button {
          border: none;
          font-size: 14px;
          font-weight: 500;
          background-color: $top-header;
          color: $dark-font;
        }
      }

      &.color {
        li {
          span {
            width: 20px;
            height: 20px;
            border-radius: 100%;
            display: block;
          }
        }
      }
    }

    .product-buttons {
      margin-top: 16px;
      display: flex;
      align-items: center;
      gap: 12px;

      .btn {
        padding: 13px 40px;

        &.btn-sm {
          padding: 13px 18px;
        }
      }

      .btn-animation {
        i {
          font-size: 15px;
        }
      }
    }

    .trending-text {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;

      img {
        width: 30px;
      }

      h5 {
        margin-bottom: 0;
      }
    }

    .top-title-panel {
      display: flex;
      justify-content: space-between;
    }

    &.detail-box {
      padding: 20px;
      border-radius: 8px;
      background-color: $top-header;

      .progress {
        background-color: $white;
      }

      .quantity-variant {
        background-color: white !important;

        li {
          background-color: white !important;

          button {
            background-color: $white;
          }

          &.active {
            background-color: $top-header !important;
            box-shadow: none;

            button {
              background-color: $top-header !important;
            }
          }
        }
      }

      .qty-section {
        .qty-box {
          .input-group {
            background-color: $white;

            input {
              background-color: $white;
            }

            button {
              background-color: $top-header !important;
              box-shadow: none;
            }
          }
        }
      }
    }
  }

  &.product-page-details {
    .shipping-info {
      grid-template-columns: 1fr 1fr;

      @media (max-width: 1399px) and (min-width: 1200px) {
        grid-template-columns: 1fr;
      }

      @media (max-width: 575px) {
        grid-template-columns: 1fr;
      }
    }

    .size-delivery-info {
      border-bottom: unset;
      padding-bottom: unset;
    }

    .sub-title {
      justify-content: center;
    }

    .dashed-border-box {
      img {
        width: 80%;
      }
    }
  }
}

.more-less-box {
  .more-text {
    max-height: 380px;
    overflow: hidden;
  }

  &.more {
    .more-text {
      max-height: unset;
      // overflow: hidden;
    }
  }

  .more-lest-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    svg {
      width: unset;
      height: unset;
      font-size: 19px;
      line-height: 1;
    }
  }
}

.product-description-box {
  &.product-page-details {
    .sub-title {
      justify-content: unset;

      @media (max-width: 767px) {
        justify-content: center;
      }
    }

    .description-text {
      display: none;
    }

    .accordion {
      margin-top: 15px;
    }
  }
}

.product-accordion {
  .btn-link {
    color: $dark-font;

    &:hover {
      text-decoration: none;
    }
  }

  .card {
    border: none;
  }

  .accordion {
    .accordion-item {
      border: unset;

      +.accordion-item {
        margin-top: 17px;
      }

      .accordion-header {
        padding: 0;
        border: unset;

        .accordion-button {
          z-index: 0;
          box-shadow: unset;
          line-height: 1.3;
          color: $dark-top;
          text-align: center;
          padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320))) calc(14px + (19 - 14) * ((100vw - 320px) / (1920 - 320)));
          text-decoration: unset;
          border: 1px solid $white-dark;
          font-weight: 500;
          background-color: $top-header;
          font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
          text-transform: unset;
          margin: 0;
          border-radius: 0;

          &::after {
            content: "\ea4e";
            @include font;
            width: unset;
            height: unset;
            background: unset;
            font-size: 22px;
            line-height: 1;
          }

          h5 {
            .btn {
              font-weight: 500;
              font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
              padding: 0;
              text-decoration: unset;
              text-transform: capitalize;
              border: unset;
            }
          }
        }
      }

      .accordion-collapse {
        &.card-body {
          padding: 0;
        }
      }

      .accordion-body {
        padding: 16px 6px 0;

        p {
          line-height: 1.7;
          color: #626262;
        }

        .shipping-info {
          grid-template-columns: 1fr 1fr;

          @media (max-width: 480px) {
            grid-template-columns: 1fr;
          }
        }

        >* {
          &:first-child {
            .bordered-box {
              padding: 0;
              margin: 0;
              border: unset;
            }
          }
        }
      }
    }

    .bordered-box {
      padding-top: 0;
      margin-top: 0;
      border-top: 0;

      +.bordered-box {
        padding-top: calc(15px + 10 * (100vw - 320px) / 1600);
        margin-top: calc(15px + 10 * (100vw - 320px) / 1600);
        border-top: 1px dashed #ddd;
      }
    }
  }

  .card-body {
    width: 100%;
    height: auto;
    padding: 16px 6px 0;
  }

  .card-header {
    padding: 5px 8px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.125);
    background-color: rgba(127, 127, 127, 0.03);
  }
}

.product-related {
  h2 {
    text-transform: capitalize;
    font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
    color: $dark-font;
    padding-bottom: 20px;
    border-bottom: 1px solid $white-dark;
    margin-bottom: 20px;
  }
}

.rating {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: calc(0px + 2 * (100vw - 320px) / 1600);

  i {
    font-size: calc(14px + 0.0025 * (100vw - 320px));
    margin-right: calc(0px + 0.00125 * (100vw - 320px));
    line-height: 1;
    color: #dd2c1d;

    &.fill {
      color: $star-yellow;
    }
  }

  span {
    margin: 0;
  }

  svg {
    width: unset;
    height: unset;
    font-size: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    color: #dd2c1d;

    &.fill {
      color: $star-yellow;
    }
  }
}

.outer-border {
  border: 1px solid $white-dark;
  overflow: hidden;
}

.tab-product {
  .nav-material {
    &.nav-tabs {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;

      &.tab-style {
        .nav-link {
          padding: 8px 10px;
        }
      }

      .nav-item {
        .nav-link {
          color: #212121;
          text-align: center;
          padding: 0 15px 20px 15px;
          text-transform: uppercase;
          border: 0;
          font-weight: 500;
          font-size: 18px;
        }

        .material-border {
          border-bottom: 2px solid var(--theme-color);
          opacity: 0;
        }
      }

      .nav-link.active {
        color: var(--theme-color);

        &~.material-border {
          transition: all 0.3s ease;
          opacity: 1;
        }
      }
    }
  }

  .theme-form {
    input {
      border-color: $round-border;
      font-size: 15px;
      padding: 15px 25px;
      margin-bottom: 15px;
      height: inherit;
      text-align: left;
    }

    .btn-solid,
    .btn-outline {
      margin: 0 auto;
    }

    textarea {
      border-color: $round-border;
      font-size: 15px;
      padding: 17px 25px;
      margin-bottom: 15px;
      height: inherit;
    }
  }

  .tab-content {
    &.nav-material {
      padding: calc(11px + (15 - 11) * ((100vw - 320px) / (1920 - 320)));

      p {
        line-height: 1.5;
        letter-spacing: 0.03em;
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }

  &.product-details-contain {
    padding-top: calc(22px + (48 - 22) * ((100vw - 320px) / (1920 - 320)));

    >.container {
      padding: 0;

      >.row {
        --bs-gutter-y: 0;
        --bs-gutter-x: 0;
        border: 1px solid $white-dark;
        overflow: hidden;
      }
    }

    .nav-tabs {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      padding: calc(11px + (15 - 11) * ((100vw - 320px) / (1920 - 320)));
      gap: calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
      border-bottom: 1px solid $white-dark;
      overflow: auto;
      background-color: $top-header;

      .nav-item {
        .nav-link {
          color: $dark-top;
          text-align: center;
          padding: calc(8px + 2 * (100vw - 320px) / 1600) calc(16px + 9 * (100vw - 320px) / 1600);
          border: 1px solid $white-dark;
          font-weight: 500;
          background-color: $white;
          font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
          text-transform: unset;
          margin: 0;
          white-space: nowrap;
          border-radius: 0;
          cursor: pointer;

          &.active {
            color: var(--theme-color);
            font-weight: 600;
            background-color: rgb(236, 137, 81, 0.07);
            border-color: rgba(236, 137, 81, 0.5882352941);
          }
        }

        .material-border {
          display: none;
        }
      }
    }

    .tab-content {
      .tab-pane {
        .no-data-added {
          background-color: transparent;
        }
      }
    }
  }

  .product-tab-description {
    p {
      &:last-child {
        margin-bottom: 0;
      }

      strong {
        font-weight: 600;
        color: #222;
      }
    }

    .part {
      .inner-title {
        font-weight: 600;
        text-transform: capitalize;
      }

      p {
        &:last-child {
          margin-bottom: 0;
        }

        strong {
          font-weight: 600;
          color: #222;
        }
      }
    }

    .ckeditor-content {
      p {
        strong {
          font-weight: 600;
          color: #222;
        }
      }
    }
  }

  .title {
    padding-right: 45px;
    color: var(--theme-color);
    padding-bottom: 20px;
  }

  .product-box {
    position: relative;
    margin: 5px;

    &:hover {
      box-shadow: 0 0 12px 0 $round-border;
    }

    .img-block {
      min-height: unset;
    }

    .cart-info {
      position: absolute;
      padding: 10px 0;
      top: 25%;
      right: 15px;
      width: 40px;
      margin-right: 0;

      i {
        padding-right: 0;
      }

      a,
      button {
        color: $font-color;
        transition: all 0.3s ease;
        background-color: $white;
        height: 35px;
        width: 35px;
        margin: 7px 0;
        border-radius: 100%;
        @include flex_common($dis: inline-flex, $align: center, $justify: center);
        border: 0;
        box-shadow: 0 0 12px 0 $round-border;

        :hover {
          transition: all 0.3s ease;
          color: var(--theme-color);
        }
      }
    }

    a {
      color: #0072bb;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .product-details {
      position: relative;

      h6 {
        color: #333333;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: capitalize;
      }

      .price {
        padding-bottom: 10px;
        font-size: 16px;
        color: var(--theme-color);
      }
    }
  }
}

.product-load-more {
  .col-grid-box {
    display: none;
  }
}

.collection-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #222;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  cursor: pointer;

  &.show {
    opacity: 0.3;
    visibility: visible;
  }
}

.collection-wrapper {
  .collection-filter {
    position: sticky;
    top: 120px;
    left: 0;

    @media (max-width: 991px) {
      position: fixed;
      height: 100vh;
      top: 0;
      left: -350px;

      &.show {
        left: 0;
      }
    }

    .collection-filter-block {
      position: relative;
      inset: unset;
    }
  }
}

.load-more-sec {
  margin-top: 40px;
  text-align: center;

  a {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    background-color: $top-header;
    width: 100%;
    color: var(--theme-color);

    &:empty {
      display: none;
    }
  }
}

.four-image-sec {
  height: 100%;
  @include flex_common;
  background-color: $top-header;
  overflow: hidden;

  video {
    height: 320px;
    object-fit: cover;
  }
}

.top-filter {
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 0;
  width: 100%;
  display: none;

  @media (max-width: 991px) {
    position: fixed;
    left: 0;
    top: 0;
    width: calc(300px + (350 - 300) * ((100vw - 320px) / (991 - 320)));
    height: 100vh;
    background-color: $white;
    z-index: 9;
    overflow: auto;

    .collection-filter {
      position: relative !important;
      inset: unset;
      width: unset;
      height: unset;
      background-color: transparent;
      z-index: 0;
      box-shadow: unset;
    }
  }

  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #888;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  .collection-filter-block {
    @media (max-width: 991px) {
      width: 100%;
    }

    .accordion-item {
      @media (max-width: 991px) {
        margin: 0;
        padding: 0;
      }

      +.accordion-item {
        margin-top: 0;
        padding-top: 0;
        border-top: unset;

        @media (max-width: 991px) {
          margin-top: 13px;
          padding-top: 13px;
          border-top: 1px solid $white-dark;
        }
      }

      &:nth-child(n + 5) {
        margin-top: 13px;
        padding-top: 13px;
        border-top: 1px solid $white-dark;
      }
    }
  }

  .button_bottom {
    padding-bottom: 20px;
  }
}

.filter-bottom-title {
  position: relative;
  cursor: pointer;

  &:after {
    content: "\ea4e";
    @include font;
    font-size: 19px;
    color: #444;
  }
}

.sticky-bottom-cart {
  position: fixed;
  bottom: -200px;
  width: 100%;
  z-index: 8;
  background-color: $white;
  padding: 10px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  left: 50%;
  transform: translateX(-50%) scale(0.95);

  @media (max-width: 576px) {
    width: calc(100% - 24px);
  }

  .qty-box {
    .input-group {
      justify-content: center;
    }
  }

  .cart-content {
    @include flex_common($dis: flex, $align: center, $justify: space-between);

    .btn-solid {
      @media (max-width: 991px) {
        padding: 9px 19px;
      }
    }

    .middle-value {
      display: flex;
      gap: 20px;
      align-items: center;

      .qty-box {
        input {
          background-color: $top-header;
          border-color: $white-dark;
        }

        .input-group {
          span {
            button {
              background: $top-header !important;
              border-color: $white-dark;
            }
          }
        }
      }
    }
  }

  .product-image {
    display: flex;
    align-items: center;

    img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      object-position: top;
      background-color: $top-header;
    }

    .content {
      margin-left: 12px;

      h5,
      h6 {
        margin-bottom: 0;
      }

      h5 {
        font-size: 18px;
        font-weight: 500;
      }

      h6 {
        font-size: 15px;
        color: $dark-font;

        del {
          margin-left: 7px;
        }

        span {
          color: var(--theme-color);
          margin-left: 5px;
        }
      }
    }
  }

  .product-right {
    position: relative;
    inset: unset;

    @media (max-width: 1199px) {
      margin: 0;
    }
  }

  .selection-section {
    display: flex;
    align-items: center;
    margin: 0 auto;
    text-align: center;

    @media (max-width: 767px) {
      width: 145px;
      margin: 0;
    }

    h4 {
      margin-bottom: 0;
      margin-right: 10px;
      font-weight: 500;

      @media (max-width: 1199px) {
        display: none;
      }
    }

    .variation-box {
      display: flex;
      align-items: center;
      gap: 0;

      h4 {
        margin-bottom: 0;
      }
    }

    .form-control {
      background-color: $top-header;
      border: 1px solid $white-dark;
      text-transform: uppercase;
      font-size: 1rem;
      padding: 0.375rem 2.25rem 0.375rem 0.75rem;
      max-width: 7.8rem;

      &:focus {
        box-shadow: none;
      }

      @media (max-width: 575px) {
        width: max-content;
      }
    }
  }

  .add-btn {
    .ring-animation {
      @media (max-width: 1399px) {
        display: none !important;
      }

      svg {
        font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
        margin-top: calc(-3px + (-7 - -3) * ((100vw - 320px) / (1920 - 320)));
      }
    }
  }
}

.stickyCart {
  .sticky-bottom-cart {
    bottom: 20px;
    transition: all 0.5s ease;
    transform: translateX(-50%) scale(1);
  }

  .recently-purchase {
    &.show {
      bottom: 125px;
    }
  }
}

/*  Quick-view  */
.quick-view {
  width: 100%;
  max-width: 1080px;
  max-height: 600px;
  position: relative;
}

/*  Check-out page */
.checkout-page {
  .checkout-title {
    margin-bottom: 25px;
    border-bottom: 1px solid $white-dark;

    h3 {
      color: $dark-font;
      font-weight: 700;
    }
  }

  .order-btn {
    width: 100%;
    margin-top: calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(10px + (13 - 10) * ((100vw - 320px) / (1920 - 320)));
    color: $white;
    font-weight: 600;
    letter-spacing: unset;
    text-transform: unset;
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    height: auto;
    border: 1px solid transparent;

    &:hover {
      border-color: var(--theme-color);
      background-color: transparent;
      color: var(--theme-color);
    }
  }

  .promo-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;

    a {
      font-size: 15px;
      cursor: pointer;
      color: #222;
    }
  }

  .checkout-form {
    .custom-select-box {
      .form-control {
        height: 100%;
        padding: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320))) calc(13px + (19 - 13) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 500;
        border-radius: 0;
        border-color: $white-dark;
        background-color: $white;
        font-size: 14px;

        &.form-select {
          cursor: pointer;
        }
      }
    }

    .checkout-details {
      position: sticky;
      top: 120px;
      left: 0;
      background-color: $top-header;
      padding: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320))) calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
      border: 1px solid $white-dark;
      border-radius: 0;

      .coupon-box {
        padding: 10px;
        border: 1px solid $white-dark;
        background-color: $white;

        .coupon-content {
          margin-top: 0px;

          .coupon-apply {
            padding-top: 9px;
          }
        }
      }

      .card-name {
        display: block;

        h6 {
          line-height: 1.4;
          font-weight: 600;
        }
      }

      .promo-code-box {
        margin-bottom: 10px;
        margin-top: 14px;

        h5 {
          font-weight: 500;
          font-size: calc(15px + 1 * (100vw - 320px) / 1600);
          color: $dark-font;
          line-height: 1.3;
          margin: 0;
        }

        >a {
          font-size: 15px;
          cursor: pointer;
          color: var(--theme-color);
        }

        .coupon-input-box {
          flex-wrap: nowrap;
          gap: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320)));
          display: flex;
        }

        .form-control {
          height: auto;
          padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600);
          font-weight: 500;
          border-radius: 0;
          border: 1px solid $white-dark;
          font-size: 14px;
        }

        .apply-button {
          white-space: nowrap;
          height: 100%;
          border: 1px solid var(--theme-color);
          border-radius: 0;
          font-weight: 600;
          color: var(--theme-color);
          letter-spacing: unset;
          text-transform: none;
          background-color: transparent;

          &:hover {
            background-color: var(--theme-color);
            color: $white;
          }
        }

        .invalid-feedback {
          font-size: 14px;
          letter-spacing: unset;
          font-weight: 500;
        }
      }

      .order-box {
        margin: 0;

        .title-box {
          padding-bottom: 8px;

          h4 {
            font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
            font-weight: 600;
            letter-spacing: unset;
            color: $dark-font;
            line-height: 1.3;
            margin: 0;
          }

          p {
            font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
            line-height: 1.5;
            font-weight: 500;
            margin: 4px 0 0;
          }
        }
      }

      .offer-apply-box {
        display: flex;
        gap: 9px;
        margin-top: 25px;
        position: relative;
        border-radius: 0;
        padding: 8px 13px;
        overflow: hidden;
        border: 1px dashed #198754;
        background-color: rgba(25, 135, 84, 0.18);

        img {
          width: 28px;
          height: 28px;
        }

        h4 {
          font-size: 16px !important;
        }

        p {
          margin: 3px 0 0 !important;
          font-size: 14px !important;
        }

        .close-coupon {
          position: absolute;
          top: 8px;
          right: 8px;
          font-size: 14px;
          line-height: 1;
          color: #198754;
          font-weight: 500;
        }
      }
    }

    .check-out {
      .form-group {
        &:last-child {
          margin-bottom: -5px;

          label {
            margin-bottom: -5px;
          }
        }
      }
    }

    .form-group {
      position: relative;
      margin-bottom: 25px;

      h3 {
        color: $grey4;
        font-weight: 700;
        margin-bottom: 30px;
        margin-top: 30px;
      }

      .field-label {
        line-height: 24px;
        text-transform: capitalize;
        color: #333333;
        margin-bottom: 10px;
        font-weight: 700;

        span {
          font-size: 16px;
          color: $dark-font;
          font-weight: 600;
        }
      }

      label {
        color: $grey;
      }
    }

    select,
    textarea {
      width: 100%;
      padding: 0 22px;
      height: 45px;
      border: 1px solid $round-border;
    }

    .no-data-added,
    .tab-category {
      position: sticky;
      top: 105px;
    }
  }

  .check-box {
    line-height: 24px;
    font-size: 14px;
    font-weight: normal;
    padding-top: 5px;

    label {
      position: relative;
      top: -1px;
      font-weight: normal;
      padding: 0;
      font-size: 16px;
      cursor: pointer;
      color: $font-color;
    }
  }

  .lower-content {
    margin-top: 30px;

    .order-column {
      margin-bottom: 40px;
    }
  }

  .checkout-form-section {
    display: grid;
    gap: calc(20px + 0.0125 * (100vw - 320px));

    .checkout-title1 {
      h2 {
        font-weight: 600;
        font-size: calc(18px + 2 * (100vw - 320px) / 1600);
        letter-spacing: unset;
        text-transform: unset;
        margin: 0;
        line-height: 1.3;
        border-bottom: 1px solid #ededed;
        margin-bottom: 20px;
        padding-bottom: 8px;
      }
    }

    .checkout-form,
    .country-input {
      .country-input {
        .custom-select-box {
          height: calc(40px + (47 - 40) * ((100vw - 320px) / (1920 - 320)));

          input {
            cursor: pointer;
            background-color: $white;
          }
        }
      }

      .country-input-box {
        .form-box {
          .form-control {
            padding-left: calc(108px + (128 - 108) * ((100vw - 320px) / (1920 - 320)));
          }
        }
      }

      .form-box {
        position: relative;

        .form-label {
          font-weight: 500;
          font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
          margin-bottom: 4px;
          color: $grey;
        }

        .form-control {
          padding: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320))) calc(13px + (19 - 13) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 500;
          border-radius: 0;
          background-color: $white;
          font-size: calc(14px + (14 - 14) * ((100vw - 320px) / (1920 - 320)));

          &::-webkit-inner-spin-button {
            display: none;
          }
        }
      }

      .form-checkbox {
        display: flex;
        align-items: center;
        gap: 10px;

        .form-check-input {
          width: 21px;
          height: 21px;
          background: unset;
          background-color: transparent;
          box-shadow: unset;
          border: unset;
          filter: unset;
          position: relative;
          margin: 0;
          vertical-align: unset;

          &::before {
            content: "";
            position: absolute;
            width: 12px;
            height: 6px;
            transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
            transform: rotate(-45deg) scale(0);
            left: 4px;
            top: 5px;
            z-index: 1;
            border: 2px solid var(--theme-color);
            border-top-style: none;
            border-right-style: none;
          }

          &::after {
            content: "";
            position: absolute;
            width: 21px;
            height: 21px;
            top: 50%;
            transform: translate(-50%, -50%);
            left: 50%;
            background-color: $white;
            border: 2px solid #ececec;
            cursor: pointer;
          }

          &:checked {
            &::before {
              transform: rotate(-45deg) scale(1);
            }
          }
        }
      }

      .form-check-label {
        color: #4a5568;
        font-weight: 500;
        font-size: calc(15px + 1 * (100vw - 320px) / 1600);
        margin: 0;
        line-height: 1;
      }
    }

    .delivery-option,
    .payment-option {
      height: 100%;
      padding: calc(17px + 9 * (100vw - 320px) / 1600);
      background-color: $white;
      height: 100%;
      border-radius: 0;

      .custom-form-check {
        min-height: unset;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 5px;

        .form-check-input {
          width: calc(15px + 0.00125 * (100vw - 320px));
          height: calc(15px + 0.00125 * (100vw - 320px));
          margin: 0;
          float: unset;
          margin-top: 4px;
          background-color: unset;
          position: relative;
          filter: unset;
          border: unset;

          &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background-color: $white;
            border-radius: 100%;
            transition: all 0.3s ease-in-out;
            border: 1px solid $white-dark;
          }

          &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 11px;
            height: 11px;
            background-color: var(--theme-color);
            transition: all 0.3s ease-in-out;
            border-radius: 100%;
          }

          &:checked {
            background-color: transparent;
            border-color: transparent;

            &::before {
              border-color: var(--theme-color);
            }

            &::after {
              transform: translate(-50%, -50%) scale(1);
            }

            ~label {
              color: $dark-font;
            }
          }
        }

        label {
          cursor: pointer;
          font-size: calc(15px + 2 * (100vw - 320px) / 1600);
          padding-left: 12px;
          font-weight: 500;
          margin-bottom: 0;
        }
      }
    }

    .checkbox-main-box {
      border-radius: 0;
      padding: calc(14px + 15 * (100vw - 320px) / 1600);
      background-color: $top-header;
      border: 1px solid $white-dark;
      position: relative;
    }
  }

  .future-option {
    padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    background-color: $white;

    .delivery-items {
      h4 {
        margin-bottom: 16px;
        color: $dark-font;
        font-weight: 500;
      }
    }

    ul {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: calc(10px + (23 - 10) * ((100vw - 320px) / (1920 - 320)));

      @media (max-width: 1399px) {
        grid-template-columns: 1fr 1fr;
      }

      @media (max-width: 991px) {
        grid-template-columns: 1fr 1fr 1fr;
      }

      @media (max-width: 767px) {
        grid-template-columns: 1fr 1fr;
      }

      @media (max-width: 480px) {
        grid-template-columns: 1fr;
      }

      li {
        &.active {
          a {
            color: $white;
            background-color: var(--theme-color);
          }
        }

        a {
          background-color: #f8f8f8;
          @include flex_common;
          height: 100%;
          text-align: center;
          color: $black;
          padding: 12px 8px;
          font-weight: 500;
        }
      }
    }
  }
}

.order-box {
  position: relative;
  margin-bottom: 50px;

  .box-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;

    .loader-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      inset: unset;
      background-color: $top-header;
    }
  }

  .title-box {
    position: relative;
    padding-bottom: 25px;
    color: $grey4;
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 20px;

    i {
      font-weight: 400;
    }

    span {
      position: relative;
      text-align: right;
      line-height: 1.2em;
    }
  }

  .qty {
    position: relative;

    li {
      position: relative;
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 15px;
      color: $grey4;
      line-height: 20px;
      margin-bottom: 18px;

      .cart-image {
        width: 60px;
      }

      &:last-child {
        margin: 0;
      }

      .cart-content {
        width: calc(100% - 60px - 11px);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 9px;

        h4 {
          line-height: 1.3;
          font-weight: 500;
          font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
          margin-bottom: 4px;
          letter-spacing: unset;
          text-transform: unset;
        }

        h5 {
          font-weight: 500;
          margin: 0;
          font-size: calc(16px + (17 - 16) * ((100vw - 320px) / (1920 - 320)));
          line-height: 1.3;
        }
      }

      span {
        font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
        text-align: right;
        line-height: 1.3;
        color: $dark-font;
        font-weight: 600;
      }
    }
  }

  .sub-total {
    position: relative;

    li {
      position: relative;
      display: flex;
      gap: 9px;
      font-size: 16px;
      font-weight: 600;
      color: $grey;
      line-height: 1.3;
      justify-content: space-between;
      width: 100%;

      +li {
        margin-top: 14px;
      }

      &.border-cls {
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 0;

        .form-check-label {
          font-size: 14px;
          font-weight: 500;
        }
      }

      .count {
        text-align: right;
        position: relative;
        font-size: 17px;
        line-height: 20px;
        color: var(--theme-color);
        font-weight: 500;
      }

      h4 {
        font-size: 16px;
        font-weight: 600;
        color: $grey;
        line-height: 1.3;
        letter-spacing: unset;
        margin: 0;

        +h4 {
          text-align: left;
        }
      }

      .txt-primary {
        color: var(--theme-color);
      }

      .check-it {
        margin-left: 14px;
        margin-right: 0;
        width: 20px;
        height: 20px;
        border: unset;
        position: relative;
        filter: unset;

        &::before {
          content: "";
          position: absolute;
          width: 12px;
          height: 6px;
          transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
          transform: rotate(-45deg) scale(0);
          left: 4px;
          top: 4px;
          z-index: 1;
          border: 2px solid var(--theme-color);
          border-top-style: none;
          border-right-style: none;
        }

        &::after {
          content: "";
          position: absolute;
          width: 20px;
          height: 20px;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          background-color: $white;
          border: 2px solid #ececec;
          cursor: pointer;
        }

        &:checked {
          &::before {
            transform: rotate(-45deg) scale(1);
          }
        }
      }
    }

    .shopping-option {
      label {
        position: relative;
        font-size: 16px;
        line-height: 32px;
        padding-left: 10px;
        color: $grey6;
      }
    }

    .shipping {
      width: 35%;
      float: right;
    }
  }

  .total {
    position: relative;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid $white-dark;

    li {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
      font-weight: 600;
      color: $font-color;
      line-height: 1.3;
      font-size: 18px;

      +li {
        margin-top: 8px;
      }

      .count {
        position: relative;
        font-size: 18px;
        text-align: right;
        line-height: 1.3;
        color: var(--theme-color);
        font-weight: 600;
      }

      &:last-child {
        font-size: calc(18px + (21 - 18) * ((100vw - 320px) / (1920 - 320)));

        .count {
          font-size: calc(18px + (21 - 18) * ((100vw - 320px) / (1920 - 320)));
        }
      }
    }
  }
}

.checkout-section-2 {
  .left-sidebar-checkout {
    .empty-box {
      h2 {
        text-align: center;
        font-size: 26px;
        font-weight: 500;
        margin: 0;
        padding-block: 24px;
        color: #9b9b9b;
        text-transform: capitalize;
      }
    }

    .checkout-detail-box {
      >ul {
        display: flex;
        flex-wrap: wrap;
        gap: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));

        >li {
          position: relative;
          width: 100%;

          &:last-child {
            .checkout-box {
              &::before {
                content: none;
              }
            }
          }

          .checkout-box {
            padding: calc(14px + (29 - 14) * ((100vw - 320px) / (1920 - 320)));
            background-color: $top-header;
            border-radius: 0;
            border: 1px solid $white-dark;
            position: relative;

            .payment-method {
              ul {
                display: flex;
                align-items: center;
                gap: 15px;

                li {
                  width: auto;
                  @include flex_common;
                  border: 1px solid transparent;
                  background-color: $white;
                  padding: 15px 40px;
                  border-radius: 20px;
                  text-align: center;
                  cursor: pointer;

                  i {
                    font-size: 28px;
                    color: #898989;
                    line-height: 1;
                  }

                  h5 {
                    color: #898989;
                  }

                  &.active {
                    border-color: var(--theme-color);
                    color: var(--theme-color);

                    i {
                      color: var(--theme-color);
                    }
                  }
                }
              }
            }

            .form-select {
              background-color: $white;
              border-color: $white-dark;
              line-height: 1.8;
            }

            @media (max-width: 576px) {
              margin-left: 0;
            }

            .checkout-title {
              border-bottom: 1px solid #ededed;
              margin-bottom: 20px;
              padding-bottom: 12px;
              @include flex_common($dis: flex, $align: center, $justify: space-between);

              h4 {
                font-weight: 600;
                font-size: calc(18px + 2 * (100vw - 320px) / 1600);
                letter-spacing: unset;
                text-transform: unset;
                margin: 0;
                line-height: 1.3;
              }

              a {
                cursor: pointer;
              }
            }

            .checkout-detail {
              .delivery-address-box {
                border-radius: 0;
                padding: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
                background-color: $white;
                height: 100%;

                >div {
                  display: flex;
                  position: relative;
                  cursor: pointer;

                  .label {
                    position: absolute;
                    top: 0;
                    right: 0;
                    background-color: var(--theme-color);
                    padding: 2px 8px;
                    border-radius: 4px;
                    color: $white;
                    font-size: 12px;
                    letter-spacing: 0.8px;

                    label {
                      margin-bottom: 0;
                      line-height: 1.7;
                    }
                  }

                  .form-check {
                    min-height: unset;
                    padding: 0;
                    margin: 0;

                    .form-check-input {
                      width: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
                      height: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
                      margin-top: 2px;
                      float: unset;
                      margin-left: 0;
                      background-color: unset;
                      position: relative;
                      filter: unset;
                      margin: 0;
                      border: unset;

                      &::before {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 16px;
                        height: 16px;
                        background-color: $white;
                        border-radius: 100%;
                        transition: all 0.3s ease-in-out;
                        border: 1px solid $white-dark;
                      }

                      &::after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%) scale(0);
                        width: 11px;
                        height: 11px;
                        background-color: var(--theme-color);
                        transition: all 0.3s ease-in-out;
                        border-radius: 100%;
                      }

                      &:checked {
                        background-color: transparent;
                        border-color: transparent;

                        &::before {
                          border-color: var(--theme-color);
                        }

                        &::after {
                          transform: translate(-50%, -50%) scale(1);
                        }
                      }

                      &:checked[type="radio"] {
                        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
                      }

                      &:focus {
                        box-shadow: none;
                        border-color: var(--theme-color);
                      }
                    }
                  }

                  .delivery-address-detail {
                    display: flex;
                    flex-wrap: wrap;
                    gap: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
                    margin-left: 10px;
                    width: calc(85% + (75 - 85) * ((100vw - 320px) / (1920 - 320)));

                    li {
                      display: block;
                      width: 100%;
                    }

                    h4 {
                      font-weight: 600;
                      margin: 0;
                      text-transform: none;
                      letter-spacing: unset;
                      line-height: 1.3;
                    }

                    p,
                    h6 {
                      line-height: 1.4;
                      margin-bottom: 0;
                      font-weight: 400;
                      color: $dark-font;
                      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

                      span {
                        margin-right: 4px;
                        font-weight: 500;
                        color: $dark-font;
                      }
                    }
                  }
                }
              }

              .add-address {
                @include flex_common;
                padding: 30px;
                height: 100%;
                text-align: center;
                cursor: pointer;
                background-color: $white;
                box-shadow: 0 0 9px rgba($black, 0.07);
                border-radius: 8px;
              }

              .delivery-option,
              .payment-option {
                padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));
                background-color: $white;
                border-radius: 0;
                height: 100%;

                .select-option {
                  @media (max-width: 1460px) {
                    margin-top: 6px;
                  }
                }

                .date-box {
                  position: relative;

                  i {
                    top: 50%;
                    transform: translateY(-50%);
                    position: absolute;
                    right: 17px;
                    font-size: 18px;
                    color: #4a5568;
                  }
                }

                .delivery-category,
                .payment-category {
                  display: flex;
                  height: 100%;

                  @media (max-width: 767px) {
                    display: block;
                  }

                  .form-check {
                    min-height: unset;
                    padding: 0;
                    margin: 0;

                    .form-check-input {
                      width: calc(15px + 2 * (100vw - 320px) / 1600);
                      height: calc(15px + 2 * (100vw - 320px) / 1600);
                      margin: 2px 0 0 0;
                      float: unset;
                      background-color: unset;
                      filter: unset;
                      position: relative;
                      margin-top: 5px;
                      border: unset;

                      &::before {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 16px;
                        height: 16px;
                        background-color: $white;
                        border-radius: 100%;
                        transition: all 0.3s ease-in-out;
                        border: 1px solid $white-dark;
                      }

                      &::after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%) scale(0);
                        width: 11px;
                        height: 11px;
                        background-color: var(--theme-color);
                        transition: all 0.3s ease-in-out;
                        border-radius: 100%;
                      }

                      &:checked {
                        background-color: transparent;
                        border-color: transparent;

                        &::before {
                          border-color: var(--theme-color);
                        }

                        &::after {
                          transform: translate(-50%, -50%) scale(1);
                        }
                      }

                      &:focus {
                        box-shadow: none;
                        border-color: var(--theme-color);
                      }
                    }
                  }
                }

                .custom-form-check {
                  display: flex;
                  margin-bottom: 0;
                  min-height: auto;

                  .form-check-label {
                    cursor: pointer;
                    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
                    padding-left: 12px;
                    font-weight: 500;
                    margin-bottom: 0;
                    width: calc(100% - calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320))));
                  }
                }

                .delivery-date {
                  font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
                  font-weight: 500;
                  border: 1px solid $white-dark;
                  background-color: $white;
                  display: flex;
                  align-items: center;
                  color: #4a5568;
                  width: 100%;
                  padding: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));

                  input {
                    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
                    font-weight: 500;
                    border: none;
                    background-color: $white;
                    display: flex;
                    align-items: center;
                    color: #4a5568;
                    width: 100%;
                  }
                }

                .delivery-time {
                  display: flex;
                  align-items: center;
                  height: 100%;

                  .dropdown-toggle {
                    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
                    font-weight: 500;
                    border: 1px solid $white-dark;
                    background-color: $white;
                    display: flex;
                    align-items: center;
                    color: #4a5568;

                    i {
                      -webkit-text-stroke: 1px #4a5568;
                      color: transparent;
                      font-size: 18px;
                      margin-right: 10px;
                    }

                    &::after {
                      content: none;
                    }

                    &::before {
                      content: "\f107";
                      position: absolute;
                      top: 50%;
                      transform: translateY(-50%);
                      right: 20px;
                      font-family: "Font Awesome 6 Free";
                      font-weight: 900;
                    }
                  }

                  .dropdown-menu {
                    border: 1px solid transparent;
                    box-shadow: 0 6px 5px rgba($black, 0.1);

                    li {
                      a {
                        &:active {
                          color: $black;
                          text-decoration: none;
                          background-color: $white-dark;
                        }
                      }

                      +li {
                        margin-top: 5px;
                      }
                    }
                  }
                }
              }

              .future-box {
                display: none;

                &.show {
                  display: block;
                }

                .future-option {
                  padding: calc(17px + (26 - 17) * ((100vw - 320px) / (1920 - 320)));

                  .delivery-items {
                    align-items: center;
                    height: 100%;

                    h4 {
                      margin-bottom: 16px;
                      color: $dark-font;
                      font-weight: 500;
                    }

                    ul {
                      width: 100%;
                      gap: 23px;
                      display: grid;

                      @media (max-width: 460px) {
                        margin-inline: 0;
                      }
                    }
                  }
                }
              }

              .payment-button {
                padding: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
                font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
                font-weight: 500;
              }

              .payment-method {
                .custom-form-check {
                  label {
                    font-weight: 500;
                    font-size: 17px;
                  }
                }
              }

              .credit-card-box {
                .credit-detail {
                  position: relative;
                }
              }

              .credit-info {
                label {
                  font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
                  font-weight: 500;
                }
              }

              .payment-option {
                padding: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
                border-radius: 0;
                position: relative;

                .form-check {
                  .form-check-input {
                    margin-top: 0;
                  }

                  label {
                    font-weight: 500;
                    font-size: 18px;
                    padding-left: 10px;
                  }
                }

                img {
                  top: 50%;
                  transform: translateY(-50%);
                  position: absolute;
                  right: 20px;
                  width: 60px;
                }
              }

              .custom-accordion {
                display: flex;
                flex-wrap: wrap;
                gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
                align-items: center;

                .accordion-item {
                  border: none;
                  border-radius: 6px;
                  overflow: hidden;
                  display: block;
                  width: 100%;
                  background-color: $top-header;
                  border-radius: 5px;

                  .accordion-header {
                    .accordion-button {
                      color: #4a5568;
                      position: relative;
                      padding: 0;
                      background-color: $top-header;

                      &::after {
                        content: none;
                      }

                      &::before {
                        font-family: "Font Awesome 6 Free";
                        font-weight: 900;
                        position: absolute;
                        content: "\f107";
                        top: 50%;
                        transform: translateY(-50%);
                        right: 30px;
                        transition: transform 0.2s ease-in-out;
                      }

                      &:not(.collapsed) {
                        color: $dark-font;
                        background-color: transparent;
                        box-shadow: none;

                        &::before {
                          top: 20%;
                          transform: rotate(-180deg) translateY(-50%);
                        }
                      }

                      .form-check {
                        display: flex;
                        align-items: center;
                        width: 100%;

                        .form-check-label {
                          font-weight: 500;
                          color: $dark-font;
                          display: flex;
                          align-items: center;
                          width: 100%;
                          font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
                          padding: 16px 20px;
                          margin-bottom: 0;

                          @media (max-width: 480px) {
                            margin-top: 5px;
                          }

                          .form-check-input {
                            margin-right: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
                          }
                        }
                      }
                    }
                  }

                  .accordion-collapse {
                    .accordion-body {
                      padding-top: 0;

                      .cod-review {
                        margin: 0;
                        line-height: 1.5;
                        color: #4a5568;
                        font-size: 16px;

                        a {
                          &:hover {
                            color: var(--theme-color);
                          }
                        }
                      }

                      .custom-form-check {
                        margin-bottom: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
                        display: flex;
                        align-items: center;

                        label {
                          display: flex;
                          align-items: center;
                          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
                        }

                        input {
                          margin-right: 10px;
                        }
                      }
                    }
                  }
                }
              }

              .custom-select {
                position: absolute;
                left: 1px;
                height: 49px;
                bottom: 1px;
                border-radius: 6px;

                .select2-container {
                  height: 100%;
                }

                .selection {
                  height: 100%;

                  .select2-selection {
                    height: 100% !important;
                    min-width: unset;
                    background-color: transparent !important;
                    width: 110px !important;
                    border: unset !important;
                    border-right: 1px solid #efefef !important;

                    .select2-selection__rendered {
                      display: flex;
                      align-items: center;
                      background-color: transparent !important;
                    }
                  }
                }
              }

              .phone-field,
              .form-input-box {
                input {
                  border: 1px solid $grey3;
                }

                .form-label {
                  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
                  color: $dark-font;
                  margin-bottom: 4px;
                }
              }

              .account-checkbox {
                min-height: unset;
                padding: 0;
                margin: 0;
                gap: 5px;
                display: flex;
                align-items: center;

                .checkbox_animated {
                  float: unset;
                  margin: 0;
                  width: 23px;
                  height: 23px;
                  border: unset;
                  background: unset;
                  box-shadow: unset;

                  &:after {
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    right: unset;
                    width: 23px;
                    height: 23px;
                  }

                  &:before {
                    left: 7px;
                    top: 7px;
                    width: 10px;
                    height: 6px;
                  }
                }

                .form-check-label {
                  line-height: 1.4;
                  margin-bottom: 0;
                  font-weight: 400;
                  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
                }
              }
            }
          }
        }
      }
    }
  }

  .checkout-right-box {
    position: sticky;
    top: 110px;
    left: 0;

    .checkout-details {
      position: unset;
      inset: unset;

      +.checkout-details {
        margin-top: 20px;
      }
    }
  }
}

/*  Dashboard page */
.dashboard {
  .box-head {
    h2 {
      font-size: 22px;
      margin: 20px 0 0;
      text-transform: capitalize;
      color: #333;
    }
  }

  .box {
    a {
      color: var(--theme-color);
    }

    h6 {
      margin-bottom: 0;
    }

    .box-title {
      border-bottom: 1px solid $round-border;
      display: inline-block;
      margin-bottom: 5px;
      padding: 12px 0;
      position: relative;
      width: 100%;

      h3 {
        font-size: 16px;
        margin: 0;
        text-transform: capitalize;
        color: #333;
      }

      >a {
        position: absolute;
        right: 0;
        top: 12px;
        color: var(--theme-color);
      }
    }

    address {
      margin-bottom: 0;
    }
  }
}

.box-content {
  padding-left: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
  display: grid;
  gap: 8px;

  li {
    display: list-item;
    list-style: disc;

    &::marker {
      color: $grey;
      font-size: 13px;
      line-height: 1;
    }
  }

  h6 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
  }

  a {
    color: var(--theme-color);
  }
}

.custom-badge {
  padding: 6px 10px;
  font-size: 12px;
}

.tracking-panel {
  ul {
    @include flex_common($dis: flex, $align: center, $justify: space-between);
    width: 100%;
    position: relative;
    gap: 15px;
    padding-right: 20px;
    overflow-y: hidden;
    overflow-x: auto;

    li {
      position: relative;
      width: 100%;
      background-color: $top-header;
      border-radius: 0;
      padding: calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320))) 0 calc(13px + (17 - 13) * ((100vw - 320px) / (1920 - 320))) calc(21px + (25 - 21) * ((100vw - 320px) / (1920 - 320)));

      &:after {
        opacity: 1;
        content: "";
        position: absolute;
        top: 0;
        right: -16px;
        width: 0;
        height: 0;
        border-top: 38px solid transparent;
        border-bottom: 38px solid transparent;
        border-left: 17px solid $top-header;
        transition: border-color 0.2s ease;
      }

      &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-top: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
        border-bottom: calc(28px + (40 - 28) * ((100vw - 320px) / (1920 - 320))) solid transparent;
        border-left: 17px solid $white;
        transition: border-color 0.2s ease;
      }

      &.active {
        background-color: #fdf3ed;

        &:after {
          border-left: 17px solid #fdf3ed;
        }
      }

      &.cancelled-box {
        background-color: #fbe9eb;

        &:after {
          border-left: 17px solid #fbe9eb;
        }
      }

      &:first-child {
        &::before {
          display: none;
        }
      }
    }
  }

  .panel-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0;

    .icon {
      width: calc(30px + (45 - 30) * ((100vw - 320px) / (1920 - 320)));
    }

    .status {
      margin-top: 0;
      font-size: 17px;
      display: flex;
      flex-direction: column;
      font-weight: 600;
      white-space: nowrap;
    }

    span {
      white-space: nowrap;
    }
  }
}

/*  compare  */
.compare-section {
  .compare-part {
    position: relative;

    .close-btn {
      background-color: $top-header;
      font-size: 18px;
      position: absolute;
      line-height: 1;
      top: 7px;
      color: #424242;
      font-weight: 400;
      right: 7px;
      border-radius: 0;
      width: 28px;
      height: 28px;
      padding: 0;
      border: 1px solid $white-dark;
    }

    .img-section {
      padding: 25px 15px 15px;
      text-align: center;
      border-right: 1px solid $white-dark;

      img,
      .bg-size {
        width: 50%;
        margin: 0 auto;
      }

      a {
        h5 {
          margin-bottom: 5px;
          text-transform: capitalize;
          margin-top: 10px;
          font-weight: 600;
          color: black;
        }
      }

      h5 {
        margin-bottom: 0;
        line-height: 1.2;
        color: rgba(black, 0.7);
      }
    }

    .detail-part {
      border-right: 1px solid $white-dark;

      .title-detail {
        background-color: $top-header;
        text-align: center;
        padding: 8px 0;
        border-top: 1px solid $white-dark;
        border-bottom: 1px solid $white-dark;

        h5 {
          margin-bottom: 0;
          text-transform: uppercase;
          font-weight: 600;
        }
      }

      .inner-detail {
        padding: 15px;
        text-align: center;

        p {
          margin-bottom: 0;
          line-height: 1.4;
          letter-spacing: unset;
          font-weight: 500;
          font-size: 16px;
        }

        >span {
          font-size: 14px;
          font-weight: 500;
          color: $grey;
          margin-left: 5px;
        }

        .compare-rating {
          @include flex_common;
        }
      }
    }

    .btn-part {
      text-align: center;
      padding: 15px;
      border-top: 1px solid $white-dark;

      .btn-solid,
      .btn-outline {
        padding: 5px 10px;
      }
    }
  }

  .compare-box {
    border: 1px solid $white-dark;

    .slick-slider {
      &.slick-slider {
        margin: 0;
      }

      .slick-list {
        margin: 0;

        .slick-slide {
          >div {
            margin: 0;
          }
        }
      }
    }
  }
}

/*  vendor pages */
.vendor-cover {
  .bg-size {
    height: 350px;
  }
}

.vendor-profile {
  margin-top: -70px;

  .profile-left {
    display: flex;
    padding: 20px;
    background-color: $top-header;
    border: 1px solid $white-dark;
    border-radius: 0;

    .profile-image {
      text-align: center;
      width: 20%;
      @include flex_common;

      a {
        background-color: $white;
        width: calc(64px + (88 - 64) * ((100vw - 320px) / (1920 - 320)));
        height: calc(64px + (88 - 64) * ((100vw - 320px) / (1920 - 320)));
        margin: 0 auto calc(8px + (16 - 8) * ((100vw - 320px) / (1920 - 320)));
        padding: 14px;
        @include flex_common;

        >* {
          margin-bottom: 0;
          font-size: calc(37px + (60 - 37) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      h3 {
        font-weight: 600;
        margin-bottom: 0;
        font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
        color: $dark-font;
        letter-spacing: unset;
        line-height: 1.3;
      }

      h6 {
        margin-bottom: 0;
        margin-top: 0;
        letter-spacing: unset;
        text-transform: unset;
        font-weight: 500;
      }

      .rating {
        >* {
          >span {
            line-height: 1;
          }
        }
      }
    }

    .profile-detail {
      border-left: 1px solid rgba(34, 38, 42, 0.12);
      padding-left: 20px;
      margin-left: 20px;
      width: 60%;
      display: flex;
      align-items: center;

      h6 {
        margin-bottom: 0;
        margin-top: 0;
        letter-spacing: 0.05em;
        text-transform: capitalize;
      }

      p {
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 400;

        +p {
          margin-top: 10px;
        }
      }
    }

    .vendor-contact {
      border-left: 1px solid rgba(34, 38, 42, 0.12);
      padding-left: 20px;
      margin-left: 20px;
      width: 20%;
      @include flex_common;
      text-align: center;

      .footer-social {
        margin: 0;

        ul {
          margin-top: 0;
          margin-bottom: 12px;
          padding-bottom: 9px;
          justify-content: center;
          border-bottom: 1px solid rgba(34, 38, 42, 0.12);
          display: flex;

          *:empty {
            display: none;
          }
        }

        svg {
          width: unset;
          height: unset;
          color: #989898;
        }

        li {
          padding: 0 5px;
        }
      }

      h6 {
        text-transform: capitalize;
        color: $black;
        font-weight: 600;
        margin-bottom: 8px;
        font-size: 16px;
      }

      .vendor-details {
        display: grid;
        gap: 7px;

        li {
          @include flex_common;
          gap: 7px;

          svg {
            width: unset;
            height: unset;
            font-size: 20px;
            line-height: 1;
            color: $grey;
          }

          h5,
          a {
            margin: 0;
            font-weight: 500;
            line-height: 1;
            color: #464646;
          }
        }
      }
    }

    +.profile-left {
      margin-top: 40px;
    }
  }

  .page-link {
    border-color: $grey3;
    background-color: $grey-lighter;

    &:hover {
      background-color: #f1f1f1;
    }
  }
}

.become-vendor {
  background-color: $top-header;
  overflow: hidden;

  h4 {
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.3;
  }

  .step-bg {
    position: relative;

    &:before {
      content: "";
      position: absolute;
      left: -0;
      right: -0;
      height: 100%;
      display: block;
      background: url("../../images/vendor/step-arrow.png") no-repeat center center;
    }

    .row {
      margin-inline: -50px;

      >div {
        padding-inline: 50px;

        &:nth-child(1),
        &:nth-child(3) {
          margin-bottom: 30px;
        }

        &:nth-child(2) {
          margin-top: 30px;
        }
      }
    }

    h4 {
      margin-bottom: 10px;
      text-transform: unset;
      letter-spacing: unset;
    }

    .step-box {
      position: relative;
      padding: 26px 23px;
      transition: all 0.3s ease;
      background-color: $white;
      text-align: center;
      border-radius: 0;
      border: 1px solid $white-dark;
      @include flex_common;
      width: 100%;
      height: 100%;

      .steps {
        position: relative;
        width: 80px;
        height: 80px;
        background: $top-header;
        margin: 0 auto 25px auto;
        color: var(--theme-color);
        text-align: center;
        font-weight: 500;
        border-radius: 0;
        @include flex_common;
        font-size: calc(28px + 12 * (100vw - 320px) / 1600);
      }

      p {
        line-height: 1.7;
        margin-bottom: 0;
        font-weight: 400;
      }
    }
  }
}

.start-selling {
  h4 {
    margin-bottom: 10px;
    text-transform: unset;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 600;
  }

  p {
    line-height: 1.7;
    letter-spacing: unset;
    margin-bottom: 0;
    font-weight: 400;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  }

  .btn {
    margin-top: 20px;
  }
}

/*  dashboard */
.dashboard-section {
  .dashboard-sidebar {
    position: sticky;
    top: 130px;
    z-index: 1;
    padding: 30px 0 15px 0;
    background-color: $top-header;
    border: 1px solid $white-dark;
    border-radius: 0;

    @media (max-width: 991px) {
      position: fixed;
      top: 0;
      left: -350px;
      width: calc(300px + (320 - 300) * ((100vw - 320px) / (992 - 320)));
      height: 100vh;
      overflow: hidden auto;
      padding-top: 0;
      border: unset;
      transition: all 0.25s ease-in-out;
      border-radius: 0;
      z-index: 11;
      background-color: $white;

      &.open {
        left: 0;
      }
    }

    .back-btn {
      display: none;

      @media (max-width: 991px) {
        padding: 15px 18px;
        display: flex;
        border: unset;
        align-items: center;
        gap: 5px;
        border-bottom: 1px solid $white-dark;
        width: 100%;
        position: sticky;
        top: 0;
        left: 0;
        background-color: $white;
        z-index: 2;

        svg {
          width: unset;
          height: unset;
          font-size: 20px;
          line-height: 1;
        }

        span {
          font-weight: 500;
          font-size: 16px;
        }
      }
    }

    .profile-top {
      padding: 0 16px;
      display: flex;
      gap: 13px;
      align-items: center;
      padding-bottom: 15px;
      margin-bottom: 15px;
      border-bottom: 1px solid $white-dark;

      @media (max-width: 991px) {
        margin-bottom: calc(10px + (20 - 10) * ((100vw - 320px) / (991 - 320)));
        background-color: $top-header;
        padding: 15px;
      }

      .profile-top-box {
        width: 56px;
        height: 56px;
        position: relative;
      }

      .user-icon-2 {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        width: 20px;
        height: 20px;
        background-color: $white;
        border: 1px solid $white-dark;
        @include flex_common;
        color: #777;
        cursor: pointer;
        overflow: hidden;

        &.close-icon {
          top: 0;
        }

        input[type="file"] {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 0;
          cursor: pointer;
        }

        i {
          line-height: 1;
        }
      }

      .profile-image {
        margin: 0 auto;
        text-align: center;
        z-index: 1;
        position: relative;
        width: 56px;
        height: 56px;
        border-radius: 0;
        overflow: hidden;

        &:hover {
          .user-icon {
            opacity: 1;
          }
        }

        .user-icon {
          opacity: 0;
          position: absolute;
          top: 50%;
          left: 50%;
          transition: opacity 0.15s ease-in-out;
          transform: translate(-50%, -50%);
          width: 100%;
          height: 100%;
          background-color: rgba(34, 34, 34, 0.631);
          border: 1px solid rgba(207, 207, 207, 0.4);
          border-radius: 0;
          @include flex_common;
          color: $white;
          cursor: pointer;
          overflow: hidden;
          font-size: 24px;

          input[type="file"] {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            cursor: pointer;
          }

          i {
            line-height: 1;
          }

          @media (max-width: 991px) {
            opacity: 1;
            height: auto;
            border-radius: 0;
            inset: unset;
            bottom: 0;
            transform: unset;
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            padding-block: 5px;
            border: unset;
            background-color: rgba(34, 34, 34, 0.8);
          }
        }

        .user-round {
          height: 56px;
          width: 56px;
          object-fit: contain;
          background-color: $white;
          @include flex_common;
          position: relative;
          margin: 0 auto;

          h4 {
            font-size: 34px;
            margin: 0;
            font-weight: 600;
          }
        }

        img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          background-color: $grey-lighter;
          box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
        }

        .cover-icon {
          width: 30px;
          height: 30px;
          @include flex_common;
          position: absolute;
          bottom: 0;
          left: 55%;
          z-index: 1;
          background-color: $white;
          border-radius: 100%;
          color: $grey;

          i {
            position: relative;

            input {
              position: absolute;
              top: 0;
              right: 0;
              left: 0;
              opacity: 0;
              width: 35px;
            }
          }
        }

        .user-name {
          background-color: $white;
          width: 100%;
          height: 100%;
          @include flex_common;
          font-size: 32px;
          font-weight: 500;
          border: 1px solid $white-dark;
          margin: 0;
        }
      }

      .profile-detail {
        width: calc(100% - 56px - 13px);

        h5 {
          text-transform: capitalize;
          font-weight: 600;
          margin-bottom: 0;
        }

        h6 {
          color: $grey;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
          margin-bottom: 0;
        }
      }
    }

    .faq-tab {
      .nav-tabs {
        box-shadow: none;
        padding: 0;
        background-color: $top-header;
      }
    }
  }

  .counter-section {
    padding: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
    background-color: $top-header;
    border: 1px solid $white-dark;
    border-radius: 0;

    .counter-box {
      background-color: $white;
      padding: 18px;
      display: flex;
      align-items: center;
      border-left: 3px solid var(--theme-color);
      border-radius: 0;

      img {
        height: 50px;
        width: auto;
        margin-right: 20px;
      }

      h3 {
        font-weight: 600;
        color: var(--theme-color);
        margin-bottom: 4px;
        font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
        letter-spacing: unset;
      }

      h5 {
        margin-bottom: 0;
        font-weight: 500;
        color: $grey;
        line-height: 1.3;
      }
    }
  }

  .show-btn {
    background-color: var(--theme-color);
    border-radius: 0;
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320))) calc(12px + (19 - 12) * ((100vw - 320px) / (1920 - 320)));
    text-transform: unset;
    font-weight: 600;
    color: $white;
    margin-bottom: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
    display: none;
    border: 1px solid var(--theme-color);

    &:first-child:active,
    &.active {
      border: 1px solid var(--theme-color);
      background-color: transparent;
      color: var(--theme-color);
    }

    @media (max-width: 991px) {
      display: block;
    }
  }

  .faq-content {
    .card {
      border: 1px solid $white-dark;
      background-color: $top-header;
      border-radius: 0;
    }

    .dashboard-table {
      border: unset;
      background-color: transparent;

      .card-body {
        padding: 0;
      }

      .user-download-table {
        .dropdown {
          .dropdown-toggle {
            background-color: #f8f8f8;
            border: 1px solid #eee;
            padding: 12px 18px;
            font-weight: 500;
            color: #222;

            &::after {
              content: "\ea4e";
              @include font;
              margin: 0;
              vertical-align: unset;
              border: unset;
              font-size: 18px;
              line-height: 1;
              font-weight: normal;
            }
          }
        }

        thead {
          tr {
            th {
              background-color: #f8f8f8;
              text-align: center;
              padding: 14px 10px;
              font-size: 18px;
              font-weight: 600;
              border-bottom: 1px solid #eee;
            }
          }
        }

        tbody {
          td {
            text-align: center;
            vertical-align: middle;
            padding: 14px 10px;
            border-color: #eee;
          }

          tr {
            &:last-child {
              td {
                border-bottom: unset;
              }
            }
          }

          .table-name {
            width: 55%;
            text-align: center;
            font-weight: 500;
            font-size: 16px;
          }

          .table-image {
            width: auto;
            height: 100px;
          }
        }
      }
    }

    .download-detail {
      padding: 12px calc(15px + 7 * (100vw - 320px) / 1600);
      border: 1px solid $white-dark;
      background-color: $top-header;
      border-radius: 0;
      margin-bottom: 20px;

      form {
        .input-group {
          gap: 13px;

          .form-control {
            padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600);
            font-weight: 500;
            border-radius: 0 !important;
            border: 1px solid $white-dark;
            font-size: 14px;
          }

          button {
            padding: 12px 24px;
            font-weight: 600;
            border-radius: 0 !important;
            letter-spacing: unset;
            background-color: var(--theme-color);
            border: 1px solid var(--theme-color);
            color: $white;

            &:hover {
              background-color: $white;
              color: var(--theme-color);
            }
          }
        }
      }
    }
  }

  .wallet-table {
    .table-responsive {
      border: 1px solid $white-dark;
      border-radius: 0;
    }

    .order-table {
      border: unset;
      margin: 0;
      border-radius: 0;

      thead {
        th {
          font-size: 16px;
          font-weight: 600;
          padding: calc(9px + (14 - 9) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      th,
      td {
        max-width: 220px;
        min-width: 160px;
        padding: 15px;
        color: $dark-top;
        border-bottom: 1px solid $white-dark;
        font-weight: 500;
        text-align: center;
        vertical-align: middle;
        background-color: transparent;

        h6 {
          color: $dark-font;
          font-weight: 500;
          margin: 0;
          line-height: 1.3;
          font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      tr {
        &:last-child {
          td {
            border-bottom: unset;
          }
        }

        a {
          color: $dark-font;

          &.btn-solid {
            color: #fff;

            &:hover {
              color: var(--theme-color);
            }
          }
        }
      }

      .product-image {
        text-align: center !important;

        img {
          width: 70px;
          max-width: 100%;
          height: auto;
        }

        h6 {
          font-size: 15px;
          font-weight: 500;
          margin: 0;
        }

        a {
          color: $dark-font;
        }
      }
    }
  }

  .product-table {
    tr {

      th,
      td {
        &:first-child {
          text-align: center;
        }
      }
    }
  }

  .title-header {
    h5 {
      margin: 0;
      font-weight: 600;
      font-size: 20px;
      line-height: 1.4;
      display: flex;
      align-items: center;

      a {
        line-height: 1;
      }

      svg {
        width: unset;
        height: unset;
        color: $dark-font;
        margin-right: 5px;
      }
    }

    .right-option {
      a {
        width: 100%;
        background-color: var(--theme-color);
        color: $white;
        text-transform: none;
        font-weight: 600;
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        line-height: 1.3;
        padding: 8px 20px;
        border-radius: 0;

        &:hover {
          border: 1px solid var(--theme-color);
          background-color: $white;
          color: var(--theme-color) !important;
        }

        i {
          font-weight: 500;
        }
      }
    }
  }

  .dashboard-table {
    h3 {
      text-transform: capitalize;
      font-size: 17px;
      color: $dark-font;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .product-pagination {
      margin-top: 24px;

      .theme-pagination-block {
        padding: 0;
        background-color: transparent;
        justify-content: center;
      }
    }
  }

  .top-sec {
    display: flex;
    align-items: center;
    margin-bottom: calc(13px + (22 - 13) * ((100vw - 320px) / (1920 - 320)));

    &-2 {
      border-top: 1px solid $white-dark;
      margin-top: 34px;
      padding-top: 29px;
    }

    h3 {
      text-transform: capitalize;
      color: $dark-font;
      font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
      margin-bottom: 0;
      font-weight: 600;
    }

    .btn {
      margin-left: auto;
      text-transform: capitalize;
      padding: calc(5px + (7 - 5) * ((100vw - 320px) / (1920 - 320))) calc(7px + (14 - 7) * ((100vw - 320px) / (1920 - 320)));

      &:active {
        border-color: var(--theme-color);
        color: #fff;
      }

      &:hover {
        border-color: var(--theme-color);

        &:active {
          color: var(--theme-color);
        }
      }

      svg {
        width: unset;
        height: unset;
        font-size: 17px;
        stroke-width: 1px;
      }
    }
  }

  .themeform-auth {
    .form-label {
      font-weight: 500;
      color: $grey;
      margin: 0;
    }

    .form-control {
      height: auto;
      padding: calc(10px + 2 * (100vw - 320px) / 1600) calc(13px + 6 * (100vw - 320px) / 1600);
      font-weight: 500;
      border-radius: 0;
      border: 1px solid $white-dark;
      font-size: 14px;
    }
  }

  .dashboard-box {
    .dashboard-title {
      margin-bottom: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
      display: flex;
      align-items: center;

      h4 {
        text-transform: capitalize;
        font-weight: 700;
        margin-bottom: 0;
      }

      span {
        margin-left: 30px;
        padding: 2px 16px;
        border-radius: 2px;
        text-transform: capitalize;
        color: var(--theme-color);
        cursor: pointer;
      }
    }

    .dashboard-detail {
      ul {
        li {
          display: block;
          margin-bottom: 10px;

          .details {
            display: flex;

            h6 {
              text-transform: capitalize;
              margin-bottom: 0;
            }

            span {
              margin-left: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
              border-radius: 2px;
              text-transform: capitalize;
              color: var(--theme-color);
              cursor: pointer;
            }

            .left {
              width: 150px;
              margin-right: 15px;

              h6 {
                color: #4e4e4e;
              }
            }

            .right {
              display: flex;
              align-items: center;

              h6 {
                font-weight: 500;
              }
            }
          }

          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }
  }

  .radio_animated {
    position: relative;
    margin: 4px 1rem 0 0;
    cursor: pointer;

    &:before {
      transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
      transform: scale(0, 0);
      content: "";
      position: absolute;
      top: 0;
      left: 0.125rem;
      z-index: 1;
      width: 0.75rem;
      height: 0.75rem;
      background: var(--theme-color);
      border-radius: 50%;
    }

    &:after {
      content: "";
      position: absolute;
      top: -0.25rem;
      left: -0.125rem;
      width: 1.25rem;
      height: 1.25rem;
      background: $white;
      border: 2px solid $top-header;
      border-radius: 50%;
    }

    &:checked:before {
      transform: scale(1, 1);
    }
  }

  .apexcharts-toolbar {
    z-index: 1;
  }
}

.user-dashboard-section {
  .box {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.7;
  }

  h6 {
    margin-bottom: 0;
    font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    line-height: 1.3;
  }

  .welcome-msg {
    margin-bottom: 20px;

    h4 {
      font-size: 20px;
      font-weight: 700;
      color: $dark-font;
    }

    p {
      line-height: 1.6;
      letter-spacing: unset;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    }
  }

  .box-head {
    h4 {
      font-size: 18px;
      margin: 34px 0 14px;
      text-transform: capitalize;
      color: #333;
      font-weight: 600;
    }
  }

  .box {
    a {
      color: var(--theme-color);
    }

    h6 {
      margin-bottom: 0;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.3;
    }

    .box-title {
      display: flex;
      align-items: center;
      margin-bottom: 5px;
      padding: 12px;
      position: relative;
      width: 100%;
      background-color: $white;
      border-radius: 8px;

      h3 {
        font-size: 16px;
        margin: 0;
        text-transform: capitalize;
        color: #333;
        line-height: 1.3;
        font-weight: 500;
      }

      >a {
        margin-left: auto;
        color: var(--theme-color);
      }
    }

    address {
      margin-bottom: 0;
    }
  }

  .faq-content {
    height: 100%;

    .tab-content {
      height: 100%;

      .tab-pane {
        height: 100%;
        position: relative;

        .no-data-added,
        .tab-category {
          height: 100%;
        }

        .box-loader {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 999;

          .loader-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            inset: unset;
            background-color: $top-header;
          }
        }
      }

      .card-body {
        padding: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320))) calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
        border-radius: 0;

        .tab-pane {
          height: 100%;
          position: relative;
        }

        .order-title {
          font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
          padding-bottom: 11px;
          margin-bottom: 16px;
          letter-spacing: unset;
          font-weight: 600;
          color: $dark-font;
          border-bottom: 1px solid #dee2e6;
        }

        .customer-detail {
          ul {
            li {
              label {
                font-weight: 600;
                font-size: 16px;
                margin: 0 0 6px;
              }

              h4 {
                margin: 0;
                font-size: 15px;
                letter-spacing: unset;
                font-weight: 500;
                text-transform: unset;
                line-height: 1.3;
                color: $grey;
              }
            }
          }
        }

        .tracking-total {
          ul {
            display: grid;
            gap: 6px;

            li {
              @include flex_common($dis: flex, $align: center, $justify: space-between);
              font-size: 16px;
              font-weight: 500;

              &:nth-child(3) {
                font-weight: 600;
              }

              &:last-child {
                padding-top: 8px;
                margin-top: 2px;
                border-top: 1px solid #dee2e6;
                font-weight: 600;
                font-size: 18px;
              }
            }
          }
        }
      }
    }

    .tab-pane {
      .card-body {
        padding: calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320))) calc(15px + (22 - 15) * ((100vw - 320px) / (1920 - 320)));
        border-radius: 0;

        .order-title {
          font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
          padding-bottom: 11px;
          margin-bottom: 16px;
          letter-spacing: unset;
          font-weight: 600;
          color: $dark-font;
          border-bottom: 1px solid #dee2e6;
        }

        .customer-detail {
          ul {
            li {
              label {
                font-weight: 600;
                font-size: 16px;
                margin: 0 0 6px;
              }

              h4 {
                margin: 0;
                font-size: 15px;
                letter-spacing: unset;
                font-weight: 500;
                text-transform: unset;
                line-height: 1.3;
                color: $grey;
              }
            }
          }
        }

        .tracking-total {
          ul {
            display: grid;
            gap: 6px;

            li {
              display: flex;
              align-items: center;
              justify-content: space-between;
              font-size: 16px;
              font-weight: 500;

              &:nth-child(3) {
                font-weight: 600;
              }

              &:last-child {
                padding-top: 8px;
                margin-top: 2px;
                border-top: 1px solid #dee2e6;
                font-weight: 600;
                font-size: 18px;
              }
            }
          }
        }
      }
    }
  }

  .wallet-point-box {
    display: flex;
    align-items: center;
    gap: 13px;

    .total-image {
      width: 69px;
      height: 69px;
      background-color: $white;
      @include flex_common;
      padding: 10px;

      img {
        width: 100%;
        height: 100%;
      }
    }

    .total-detail {
      width: calc(100% - 69px - 13px);
      @include flex_common($dis: flex, $align: center, $justify: space-between);

      .point-ratio {
        background-color: $white;
        padding: 15px 18px;

        .counter {
          text-transform: none;
          letter-spacing: unset;
          font-size: 18px;
          margin: 0;
          color: $dark-top;
          font-weight: 600;
        }
      }

      .total-box {
        h5 {
          margin: 0;
          font-weight: 500;
          color: $grey;
        }

        h3 {
          margin: 0;
          margin-top: 3px;
          font-size: 19px;
          text-transform: none;
          letter-spacing: normal;
          font-weight: 600;
          color: $dark-top;
        }
      }
    }
  }

  .edit-link {
    color: var(--theme-color);
    margin-left: 10px;
    text-transform: capitalize;
  }

  .address-book-section {
    .select-box {
      .address-box {
        padding: 15px;
        background-color: $white;
        transition: all 0.5s ease;

        .top {
          h6 {
            text-transform: capitalize;
            color: $dark-font;
            font-weight: 600;
            font-size: 14px;

            span {
              float: right;
              background-color: var(--theme-color);
              color: $white;
              padding: 2px 15px;
              font-size: 80%;
              border-radius: 0;
            }
          }
        }

        .middle {
          margin-top: 15px;

          .address {
            p {
              margin-bottom: 5px;
              color: rgba(0, 0, 0, 0.7);
              line-height: 1.2;
            }
          }

          .number {
            margin-top: 15px;

            p {
              color: rgba(0, 0, 0, 0.7);
              text-transform: capitalize;
            }
          }
        }

        .card-number {
          margin-top: 15px;

          h6,
          h5 {
            margin-bottom: 0;
          }
        }

        .name-validity {
          margin-top: 10px;
          display: flex;
          align-items: center;

          h6 {
            text-transform: capitalize;
          }

          h5,
          h6 {
            margin-bottom: 0;
          }

          .right {
            margin-left: auto;
          }
        }

        .bank-logo {
          display: flex;
          align-items: center;

          img {
            height: 22px;
          }

          .network-logo {
            margin-left: auto;
            width: 50px;
            height: auto;
          }
        }

        .address {
          p {
            font-size: 14px;
            font-weight: 500;
            color: $grey;
          }
        }

        .bottom {
          border-top: 1px solid $white-dark;
          @include flex_common($dis: flex, $align: center, $justify: space-between);
          padding-top: 14px;
          margin-top: 10px;

          .bottom_btn {
            width: 47.5%;
            text-transform: capitalize;
            font-weight: 600;
            padding: 8px 4px;
            border-radius: 0;
            background-color: rgba(248, 248, 248, 1);
            color: $dark-font;
            border: unset;
          }
        }
      }
    }

    .select-box.active {
      .address-box {
        transition: all 0.5s ease;
      }
    }
  }

  &.dashboard-section {
    .dashboard-table {
      .table {
        thead {
          th {
            font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
            background-color: $top-header;
          }
        }
      }
    }
  }

  .order-table {
    thead {
      tr {
        th {
          background-color: transparent;
        }
      }
    }
  }
}

.faq-tab {
  .nav-tabs {
    display: block;
    border-bottom: none;
    background-color: $white;
    padding: 10px 0;

    .nav-item {
      display: block;
      margin-bottom: 0;

      @media (max-width: 991px) {
        width: 100%;
      }

      .nav-link {
        text-transform: capitalize;
        color: $dark-top;
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        border: none;
        transition: all 0.2s ease-in-out;
        border-radius: 0;
        background-color: $top-header;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        font-weight: 500;

        @media (max-width: 991px) {
          background-color: $white;
          padding-block: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320)));
        }

        svg {
          width: calc(36px + 4 * (100vw - 320px) / 1600);
          height: calc(36px + 4 * (100vw - 320px) / 1600);
          @include flex_common;
          background-color: $white;
          padding: 9px;
          border-radius: 0;
          transition: all 0.2s ease-in-out;
          margin: 0 !important;
          border: 1px solid transparent;
          font-size: calc(16px + (19 - 16) * ((100vw - 320px) / (1920 - 320)));

          @media (max-width: 991px) {
            background-color: $top-header;
          }
        }

        &.active {
          border: none;
          border-radius: 0;
          color: var(--theme-color);

          svg {
            background-color: var(--theme-color);
            color: $white;
          }
        }

        &:hover {
          border: none;
          color: var(--theme-color);

          svg {
            border: 1px solid var(--theme-color);
          }
        }
      }
    }

    .logout-cls {
      border-top: 1px solid $white-dark;
      margin-top: 6px;
      padding-top: 14px;
      padding-inline: 19px;

      .loagout-btn {
        width: 100%;
        background-color: var(--theme-color);
        color: $white;
        text-transform: none;
        font-weight: 500;
        font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
        line-height: 1.3;
        padding: calc(9px + (11 - 9) * ((100vw - 320px) / (1920 - 320)));
        border-radius: 0;
      }
    }
  }
}

/*  User Dashboard */
.notification-list {
  display: grid;
  gap: 13px;

  li {
    display: block;
    border-radius: 0;
    border: 1px solid $white-dark;
    background-color: $white;
    padding: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320))) calc(12px + (18 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-left: calc(33px + (46 - 33) * ((100vw - 320px) / (1920 - 320)));
    position: relative;

    &::after {
      content: "";
      position: absolute;
      left: calc(18px + (30 - 18) * ((100vw - 320px) / (1920 - 320)));
      top: 31px;
      width: 5px;
      height: 5px;
      background-color: #8e8e8e;
      border-radius: 100%;
    }

    +li {
      border-top: 1px solid $white-dark;
    }

    &.unread {
      position: relative;
      background-color: transparent;
      z-index: 0;
      border: 1px solid var(--theme-color);

      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--theme-color);
        opacity: 0.09;
        z-index: -1;
      }

      h4 {
        color: var(--theme-color);
        font-weight: 600;
      }

      h5 {
        color: $dark-font;
      }

      &::after {
        background-color: var(--theme-color);
      }
    }
  }

  h4 {
    font-weight: 500;
    color: $dark-font;
    letter-spacing: unset;
    text-transform: none;
    line-height: 1.5;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  }

  h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: $grey;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.3;
  }
}

.sticky-product-height {
  height: auto;
  @include flex_common;
  background-color: $top-header;
  border: 1px solid $white-dark;
  overflow: hidden;

  +.sticky-product-height {
    margin-top: 30px;
  }

  video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  img {
    object-fit: contain;
    height: 100%;
    width: 100%;
  }
}

.review-title-2 {
  border-top: 1px solid $white-dark;
  margin-top: 18px;
  padding-top: 18px;

  h4 {
    font-weight: 600;
    text-transform: none;
    letter-spacing: unset;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  p {
    letter-spacing: unset;
    font-weight: 500;
    line-height: 1.4;
  }

  button {
    text-transform: capitalize;
    padding: calc(11px + 2 * (100vw - 320px) / 1600) calc(11px + 12 * (100vw - 320px) / 1600);
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    background-color: var(--theme-color);
    color: $white;
    margin-top: 17px;
    border-radius: 0;
    border: 1px solid transparent;

    &:hover,
    &:first-child:active {
      border-color: var(--theme-color);
      color: var(--theme-color);
      background-color: transparent;
    }
  }
}

/**=====================
  New Product box and details page
==========================**/
.quantity-variant {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: $top-header;
  padding: 6px 6px;
  overflow: hidden;
  border: 1px solid $white-dark;
  width: max-content;
  margin-bottom: 0;

  li {
    padding: 6px 10px;
    background-color: $top-header !important;

    &.active {
      background-color: white !important;
      box-shadow: 0 0 8px #e8e8e8;

      button {
        background-color: white !important;
        color: var(--theme-color);
      }
    }

    button {
      border: none;
      font-size: 14px;
      font-weight: 500;
      background-color: $top-header;
      color: $dark-font;
      padding: 0 6px;
      transition: unset;
    }
  }

  .disabled {
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: default;
    opacity: 0.6 !important;
    pointer-events: none;

    &::after,
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      background-color: #ff7272;
      width: 100%;
      height: 1px;
      cursor: default;
      user-select: none;
      z-index: 1;
    }

    &:after {
      transform: translateY(-50%) rotate(-45deg);
    }

    &:before {
      transform: translateY(-50%) rotate(45deg);
    }
  }

  &.radio {
    .disabled {

      &::before,
      &::after {
        content: unset;
      }
    }
  }

  &.color {
    li {
      span {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        display: block;
      }
    }
  }

  &.circle {
    li {
      border-radius: 100% !important;
      width: auto !important;
      height: auto !important;
      @include flex_common;
      padding: 0;

      button {
        width: calc(36px + (40 - 36) * ((100vw - 320px) / (1920 - 320)));
        height: calc(36px + (40 - 36) * ((100vw - 320px) / (1920 - 320)));
        padding: 0;
        border-radius: 100%;
      }
    }
  }
}

.variation-box {
  display: flex;
  align-items: center;
  gap: calc(26px + (50 - 26) * ((100vw - 767px) / (1920 - 767)));

  +.variation-box {
    margin-top: 14px;
  }

  @media (max-width: 767px) {
    display: block;

    .image-box {
      justify-content: center;
    }
  }

  .sub-title {
    width: 70px;
    display: block;
    margin-bottom: 0 !important;
    line-height: 1.3;

    @media (max-width: 767px) {
      width: auto;
      margin-bottom: 9px;
    }
  }

  .radio {
    background-color: transparent;
    border: unset;
    padding: 0;

    .form-check {
      padding: 0;
      margin: 0;
      min-height: unset;
      display: flex;
      align-items: center;
      gap: 10px;

      .form-check-input {
        margin: 0;
        float: unset;
      }

      .form-check-label {
        margin: 0;
        font-size: 18px;
        font-weight: 500;
      }
    }
  }
}

.product-page-details {
  position: sticky;
  top: 120px;
  left: 0;

  @media (max-width: 767px) {
    text-align: center;
  }

  .select-dropdown {
    background-color: $top-header;
    border: 1px solid $white-dark;
    border-radius: 0;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    padding-block: 11px;
    padding-left: 17px;
    width: 100%;
  }

  .main-title {
    text-transform: capitalize;
    line-height: 1.2;
    font-size: calc(22px + (32 - 22) * ((100vw - 320px) / (1920 - 320)));
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));

    @media (max-width: 767px) {
      justify-content: center;
    }

    .divider {
      color: #ddd;
    }

    .rating-list {
      color: #ffbc37;
    }

    a {
      color: var(--theme-color);
      text-decoration: underline;
    }
  }

  .price-text {
    h3 {
      display: flex;
      align-items: center;
      gap: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
      margin-block: calc(9px + (17 - 9) * ((100vw - 320px) / (1920 - 320))) calc(2px + (4 - 2) * ((100vw - 320px) / (1920 - 320)));
      color: var(--theme-color);
      font-weight: 600;
      letter-spacing: 0.01em;
      flex-wrap: wrap;
      font-size: calc(20px + (26 - 20) * ((100vw - 320px) / (1920 - 320)));

      @media (max-width: 767px) {
        justify-content: center;
      }

      .discounted-price {
        font-weight: 500;
        padding: 5px calc(12px + 0.0025 * (100vw - 320px));
        background-color: #ec89511c;
        color: var(--theme-color);
        display: inline-block;
        margin-bottom: 0;
        margin-left: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

        del {
          font-size: 18px;
        }
      }
    }

    span {
      color: #aaa;
      display: block;
    }
  }

  .size-delivery-info {
    display: flex;
    align-items: center;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
    padding-block: 12px;
    margin-block: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320))) calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
    gap: 9px calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    flex-wrap: wrap;

    @media (max-width: 767px) {
      justify-content: center;
    }

    span {
      &:empty {
        display: none;
      }
    }

    a {
      color: #7d7d7d;
      position: relative;
      display: flex;
      align-items: center;

      span {
        position: relative;
        width: 1px;
        height: 26px;
        background-color: $white-dark;
        display: block;
        border-radius: 100%;
      }

      svg {
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        width: unset;
        height: unset;
        margin-right: 10px;
      }
    }
  }

  .product-offer {
    display: grid;
    gap: 9px;

    li {
      display: flex;
      gap: 9px;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      color: #626262;

      @media (max-width: 767px) {
        justify-content: center;
      }

      &:last-child {
        h5 {
          border-bottom: none;
          padding-bottom: 0;
          margin-bottom: 0;
        }
      }

      h5 {
        margin-bottom: 17px;
        width: 85%;
        color: #7d7d7d;
        letter-spacing: 0.01em;

        span {
          font-weight: 600;
        }
      }

      img {
        width: 40px;
        height: 40px;
        border-radius: 100%;
      }

      svg {
        font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
        line-height: 1;
        width: unset;
        height: unset;
      }
    }
  }

  .description-text {
    color: #626262;
    text-align: unset;
    line-height: 1.5;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(6px + (9 - 6) * ((100vw - 320px) / (1920 - 320)));
  }

  .progress {
    background-color: $top-header;
    height: 8px;

    .progress-bar {
      background-image: linear-gradient(to right, #8fd747, #6eb427, #438600);
    }
  }

  .left-progressbar {
    margin-top: 13px;

    h6 {
      color: $grey;
      text-transform: capitalize;
    }
  }

  .buy-box {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;

    a {
      color: #4c4c4c;
    }
  }

  .compare-box {
    margin-top: 17px;
    display: flex;
    align-items: center;
    gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320))) calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
    flex-wrap: wrap;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

    @media (max-width: 767px) {
      justify-content: center;
    }

    a {
      color: #626262;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px;

      svg {
        width: unset;
        height: unset;
      }
    }
  }

  .bordered-box {
    padding-top: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
    margin-top: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
    border-top: 1px dashed #ddd;
  }

  .dashed-border-box {
    padding: 22px calc(10px + (28 - 10) * ((100vw - 320px) / (1920 - 320)));
    border: 1px dashed #ddd;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    margin-top: calc(24px + (34 - 24) * ((100vw - 320px) / (1920 - 320)));

    &:empty {
      display: none;
    }

    h4 {
      margin-top: -30px;
      background-color: $white;
      padding-inline: 8px;
      width: max-content;

      @media (max-width: 767px) {
        margin-inline: auto;
      }
    }

    img {
      width: 60%;

      @media (max-width: 767px) {
        margin-inline: auto;
      }

      @media (max-width: 1399px) and (min-width: 992px) {
        width: 70%;
      }

      @media (max-width: 767px) {
        width: 70%;
      }

      @media (max-width: 575px) {
        margin: 0 auto;
        width: 90%;
      }
    }
  }

  .shipping-info {
    display: grid;
    line-height: 1.9;
    color: #5f5f5f;
    font-size: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 0 6px;
    padding-left: 20px;
    margin-bottom: -7px;
    text-align: left;

    @media (max-width: 480px) {
      grid-template-columns: 1fr;
    }

    li {
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      display: list-item;
      color: #626262;
    }
  }

  .qty-section {
    display: flex;
    align-items: center;
    gap: 10px;

    .qty-box {
      .input-group {
        background-color: $top-header;
        padding: 6px 6px;
        overflow: hidden;
        border: 1px solid $white-dark;

        @media (max-width: 480px) {
          width: calc(156px + (180 - 156) * ((100vw - 576px) / (1920 - 576)));
          flex-wrap: nowrap;
        }

        input {
          background-color: $top-header;
          border: none;
          padding: 6px 5px;
          width: calc(62px + (90 - 62) * ((100vw - 576px) / (1920 - 576)));

          @media (max-width: 480px) {
            width: 100%;
          }
        }

        button {
          background-color: $white !important;
          font-weight: normal;
          box-shadow: 0 0 8px #e8e8e8;
          border: none;
          padding: 5px calc(5px + (9 - 5) * ((100vw - 576px) / (1920 - 576)));
          line-height: 1;

          svg {
            font-size: 21px !important;
            font-weight: 400;
          }
        }
      }
    }
  }

  .wishlist-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;

    button {
      padding: 0;
      width: 48px;
      height: 48px;
      border: 1px solid $white-dark;
      border-radius: 5px;
      background-color: $top-header;
      transition: none;
      font-size: 16px;
      line-height: 1;
      color: #6a6a6a;
    }
  }

  .image-box {
    display: flex;
    align-items: center;
    gap: 10px;

    @media (max-width: 575px) {
      justify-content: center;
    }

    li {
      border: 1px solid $white-dark;
      border-radius: 0;
      padding: 3px;

      &.active {
        border: 1px solid var(--theme-color);
      }

      &.disabled {
        overflow: hidden;
        position: relative;

        &::after,
        &::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          background-color: #ff7272;
          width: 100%;
          height: 1px;
          cursor: default;
          user-select: none;
          z-index: 1;
        }

        &:after {
          transform: translateY(-50%) rotate(-45deg) scale(1.2);
        }

        &:before {
          transform: translateY(-50%) rotate(45deg) scale(1.2);
        }
      }

      img {
        width: 65px;
        border-radius: 0;
        cursor: pointer;
        height: 65px;
        padding: 0;
        overflow: hidden;
        object-fit: cover;
      }
    }
  }

  .image_price {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    overflow: hidden;

    @media (max-width: 767px) {
      justify-content: center;
    }

    li {
      border: 1px solid $white-dark;
      border-radius: 7px;
      width: 100px !important;
      padding: 0;
      overflow: hidden;

      &.active {
        border-color: var(--theme-color);
        background-color: $white;
      }

      img {
        width: 100%;
        cursor: pointer;
        height: 82px;
        padding: 0;
        overflow: hidden;
        object-fit: cover;
        border-radius: 4px;
        margin-bottom: 4px;
      }

      h4 {
        font-size: 12px;
        letter-spacing: unset;
        line-height: 1.3;
        margin: 0;
        padding-inline: 4px;
        color: $grey;
        text-transform: unset;
        padding: 4px;
        font-weight: 500;
      }

      h5 {
        font-size: 12px;
        letter-spacing: unset;
        line-height: 1.3;
        margin: 0;
        padding-inline: 4px;
        color: $dark-font;
        text-transform: unset;
        font-weight: 500;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
      }
    }
  }

  .sub-title {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.01em;
    margin: 0 0 15px;

    @media (max-width: 767px) {
      justify-content: center;
      margin-bottom: 9px !important;
    }
  }

  .product-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    @media (max-width: 767px) {
      justify-content: center;
    }

    .product-buy-btn-group {
      gap: 12px;
      display: flex;
      align-items: center;

      @media (max-width: 480px) {
        width: 100%;

        >* {
          width: 100%;

          button {
            width: 100%;
          }
        }
      }
    }

    .btn {
      padding: 13px 40px;

      &.btn-sm {
        padding: 13px 18px;
      }
    }

    .btn-animation {
      i {
        font-size: 15px;
      }
    }
  }

  .buy-button {
    padding: calc(11px + (13 - 11) * ((100vw - 320px) / (1920 - 320))) calc(17px + (33 - 17) * ((100vw - 320px) / (1920 - 320))) !important;
    font-size: calc(15px + (17 - 15) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    text-transform: unset;
    letter-spacing: unset;
    border: 1px solid var(--theme-color) !important;

    svg {
      font-size: 20px !important;
      font-weight: 500;

      @media (max-width: 480px) {
        display: none;
      }
    }
  }

  .trending-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;

    @media (max-width: 768px) {
      justify-content: center;
    }

    img {
      width: 30px;
    }

    h5 {
      letter-spacing: 0;
      margin-bottom: 0;
    }
  }

  .top-title-panel {
    display: flex;
    justify-content: space-between;
  }

  .product-title {
    h4 {
      font-size: 18px;
      letter-spacing: unset;
      text-transform: none;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 8px;
      margin-top: 13px;
      padding-bottom: 9px;
      border-bottom: 1px dashed #ddd;
    }
  }

  &.detail-box {
    padding: 20px;
    border-radius: 8px;
    background-color: $top-header;

    .progress {
      background-color: $white;
    }

    .quantity-variant {
      background-color: $white !important;

      li {
        background-color: $white !important;

        button {
          background-color: $white;
        }

        &.active {
          background-color: $top-header !important;
          box-shadow: none;

          button {
            background-color: $top-header !important;
          }
        }
      }
    }

    .qty-section {
      .qty-box {
        .input-group {
          background-color: $white;

          input {
            background-color: $white;
          }

          button {
            background-color: $top-header !important;
            box-shadow: none;
          }
        }
      }
    }
  }

  &.product-form-box {
    text-align: center;
    border: 1px solid $white-dark;
    padding: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    border-radius: 0;

    .variation-box {
      display: block;

      .sub-title {
        width: 100%;
        margin-bottom: 9px !important;
      }
    }

    .product-buttons {
      margin-top: 15px;
    }

    .variation-box {
      .image-box {
        justify-content: center;
      }
    }

    .product-buttons {
      justify-content: center;
    }

    .buy-box {
      gap: 9px calc(12px + 8 * (100vw - 320px) / 1600);
      justify-content: center;
    }

    .dashed-border-box {
      .sub-title {
        margin-inline: auto;
      }

      img {
        margin-inline: auto;
        width: 90%;
      }
    }

    .timer {
      text-align: left;
      z-index: 0;
      background-color: transparent;
      position: relative;
      max-width: 315px;
      width: 100%;
      @include flex_common;
      margin: 0 auto;

      &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--theme-color);
        opacity: 0.09;
        z-index: -1;
      }

      p {
        color: $dark-font;
        display: flex;
        gap: 18px;

        span {
          width: 50px;
          display: inline-block;
          text-align: center;
          position: relative;

          .padding-l {
            position: absolute;
            top: 4px;
            transform: unset;
            width: auto;
            right: -11px;
          }
        }
      }
    }
  }

  .timer {
    text-align: left;
    z-index: 0;
    background-color: transparent;
    position: relative;
    max-width: 315px;
    width: 100%;
    @include flex_common;

    @media (max-width: 767px) {
      margin-inline: auto;
    }

    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--theme-color);
      opacity: 0.09;
      z-index: -1;
    }

    p {
      color: $dark-font;
      display: flex;
      gap: 18px;

      span {
        width: 50px;
        display: inline-block;
        text-align: center;
        position: relative;

        .padding-l {
          position: absolute;
          top: 4px;
          transform: unset;
          width: auto;
          right: -11px;
        }
      }
    }
  }

  &.product-right-box {
    .variation-box {
      .sub-title {
        justify-content: center;
      }
    }
  }
}

.product-label {
  background-color: #fdf2ec;
  position: absolute;
  top: 15px;
  z-index: 1;
  left: 15px;
  padding: 5px 12px;
  color: var(--theme-color);
  font-weight: 500;
  font-size: 15px;
}

.vertical-tab {
  >.container {
    padding: 0;
  }

  &.tab-product,
  .product-full-tab {
    .nav-material {
      &.nav-tabs {
        border-bottom: none;
        height: 100%;
        background-color: $top-header;
        padding: 20px;

        @media (max-width: 1199px) {
          flex-wrap: nowrap;
          gap: 15px;
          justify-content: flex-start;
          padding: 15px;
          overflow: auto;
        }

        li {
          width: 100%;
          display: block;

          @media (max-width: 1199px) {
            width: max-content;
            display: inline-block;
          }
        }

        .nav-item {
          .nav-link {
            color: $dark-top;
            text-align: center;
            padding: calc(8px + 2 * (100vw - 320px) / 1600) calc(16px + 9 * (100vw - 320px) / 1600);
            border: 1px solid $white-dark;
            font-weight: 500;
            background-color: $white;
            font-size: calc(14px + 4 * (100vw - 320px) / 1600);
            text-transform: unset;
            margin: 0;
            border-radius: 0;
            display: block;
            cursor: pointer;
            width: 100%;
            margin-bottom: 14px !important;
            position: relative;

            @media (max-width: 1199px) {
              margin-bottom: 0 !important;
            }

            &.active {
              background-color: var(--theme-color);
              color: $white;
              border-color: var(--theme-color);
            }
          }
        }
      }
    }
  }
}

.sticky-top-custom {
  position: sticky;
  top: 120px;
  z-index: 1;

  .thumbnail-image-slider {
    position: unset;
    inset: unset;
  }
}

/* Clock config */
.clock {
  border: 2px solid #212529;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  box-sizing: border-box;

  &:before {
    border-radius: 3px;
    content: "";
    position: absolute;
    transform-origin: 1px 1px;
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0;
    height: 2px;
    width: (20px / 2.5);
    background: #212529;
    animation-name: clock;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: backward;
    animation-timing-function: linear;
  }

  &:after {
    border-radius: 3px;
    content: "";
    position: absolute;
    transform-origin: 1px 1px;
    transform: translateX(-1px);
    top: 7px;
    left: 7px;
    margin: 0;
    height: 2px;
    width: (20px / 3.8);
    background: #212529;
    animation-name: clock;
    animation-duration: 2s * 12;
    animation-iteration-count: infinite;
    animation-direction: backward;
    animation-timing-function: linear;
  }
}

/*  product style */
.six-items {
  .basic-product {
    .img-wrapper {
      height: 190px;
    }
  }
}

.basic-product {
  position: relative;
  transition: all 0.5s ease;

  &.sold-out {
    .img-wrapper {

      img,
      .bg-size {
        filter: grayscale(100);
        pointer-events: none;
      }

      .trending-label {
        filter: none;
      }
    }
  }

  .timer {
    border: none;
    position: absolute;
    bottom: 30px;
    z-index: 1;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);

    span {
      .padding-l {
        position: absolute;
      }
    }

    p {
      @include flex_common($dis: flex, $align: center, $justify: space-between);
      width: 100%;
      text-align: center;
    }
  }

  .product-right {
    .form-select {
      background-color: $top-header;
      border: 1px solid $white-dark;
      margin-top: 15px;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      font-weight: 500;
      color: #333;
      padding: calc(5px + (9 - 5) * ((100vw - 320px) / (1920 - 320))) calc(30px + (36 - 30) * ((100vw - 320px) / (1920 - 320))) calc(5px + (9 - 5) * ((100vw - 320px) / (1920 - 320))) calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320)));
      width: max-content;
      max-width: 100%;
    }
  }

  .price {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    color: $dark-font;
    font-weight: 500;
    margin-bottom: 0;
    transition: all 0.5s ease;
    gap: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    .discounted-price {
      font-weight: 500;
      color: var(--theme-color);
      display: inline-block;
      margin-bottom: 0;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    }
  }

  .product-title {
    line-height: 1;
    transition: all 0.5s ease;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    color: $dark-font;
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
  }

  .img-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 0;
    @include flex_common;
    background-color: $top-header;

    >app-image-variant {
      height: 100%;
    }

    .zoom {
      overflow: hidden;
      width: 100%;
      height: 100%;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .addto-cart-bottom {
      position: absolute;
      bottom: -54px;
      left: 50%;
      width: calc(80% - calc(10px + (40 - 10) * ((100vw - 320px) / (1920 - 320))));
      background-color: $white;
      border: none;
      padding: calc(5px + (9 - 5) * ((100vw - 320px) / (1920 - 320)));
      @include flex_common;
      gap: 10px;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      font-weight: 500;
      box-shadow: 0px 5px 12px 0px rgba(155, 155, 155, 0.05);
      transition: all 0.5s ease;
      text-transform: capitalize;
      transform: translateX(-50%);

      @media (max-width: 767px) {
        width: 85%;
        bottom: 16px;
      }

      @media (max-width: 576px) {
        bottom: 10px;
      }

      &.active {
        color: var(--theme-color);

        .icon {
          &:before {
            content: "\f11f";
          }
        }
      }
    }

    .quick-option {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 30px;
      height: 30px;
      @include flex_common;
      border-radius: 100%;
      transform: translate(-50%, -50%) scale(0);
      background-color: $white;
      color: var(--theme-color);
      transition: all 0.5s ease;
      z-index: 1;

      >a {
        line-height: 1;
        @include flex_common;

        svg {
          width: unset;
          height: unset;
        }
      }
    }

    .trending-label {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;

      li {
        background-color: var(--theme-color);
        color: $white-dark;
        padding: 3px 8px;
        font-weight: 500;
        margin-bottom: 0;
        font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
        z-index: 1;
        width: max-content;

        &:nth-child(2) {
          background-color: $white;
          color: var(--theme-color);
        }

        &:nth-child(3) {
          background-color: #585858;
          color: $white;
        }

        &.out_of_stock {
          background-color: #d02f47;
        }
      }
    }

    .trending-label-product11 {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: var(--theme-color);
      color: $white;
      padding: calc(2px + (4 - 2) * ((100vw - 320px) / (1920 - 320))) calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));
      font-weight: 500;
      margin-bottom: 0;
      font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
      z-index: 1;
    }

    .rotate-label {
      position: absolute;
      top: 30px;
      left: 0;
      background-color: var(--theme-color);
      color: $white-dark;
      padding: 11px 6px;
      border-radius: 0;
      font-weight: 600;
      margin-bottom: 0;
      font-size: 12px;
      writing-mode: tb;
      transform: rotate(180deg);
    }

    .rating-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background-color: $white;
      padding: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320))) calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
      display: flex;
      align-items: center;
      gap: 5px;
      color: #595959;
      font-weight: 500;
      height: auto;

      svg {
        width: unset;
        height: unset;
        color: #ffa200;
        margin-top: -2px;
      }
    }

    .unit-label {
      margin-bottom: 0;
      background-color: $white;
      padding: 4px 14px;
      position: absolute;
      bottom: 0;
      font-weight: 400;
      font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
      left: 0;
    }
  }

  .brand-w-color {
    @include flex_common($dis: flex, $align: center, $justify: space-between);

    a,
    .color-panel ul {
      margin-bottom: 5px;
    }
  }

  .cart-info {
    position: absolute;
    bottom: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    right: 12px;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    gap: 8px;

    @media (max-width: 767px) {
      opacity: 1;
      right: 8px;
      gap: 4px;
    }

    button,
    a {
      width: calc(25px + (35 - 25) * ((100vw - 320px) / (1920 - 320)));
      height: calc(25px + (35 - 25) * ((100vw - 320px) / (1920 - 320)));
      border-radius: 100%;
      background-color: $white;
      border: unset;
      cursor: pointer;
      @include flex_common;
      box-shadow: 0px 5px 12px 0px rgba(155, 155, 155, 0.05);

      @media (max-width: 767px) {
        animation: none !important;
      }

      &:first-child {
        &:active {
          background-color: $white;
          color: var(--theme-color);

          i {
            color: #222;
          }
        }
      }

      &.active {
        i {
          color: var(--theme-color) !important;

          &::before {
            content: "\f11f";
          }
        }

        .ri-heart-line {
          &::before {
            content: "\ee0e";
          }
        }
      }

      span {
        display: none;
      }

      &.theme-color {

        i,
        svg {
          color: var(--theme-color);
        }
      }
    }

    .active {

      i,
      svg {
        color: var(--theme-color);

        &::before {
          content: "\f11f";
        }
      }

      .ri-heart-line {
        &::before {
          content: "\ee0e";
        }
      }
    }

    i,
    svg {
      color: #848484;
      font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
      display: block;

      &:hover {
        color: var(--theme-color);
      }
    }

    .addto-cart-bottom {
      position: relative;
      inset: unset;
      transform: unset;
      width: calc(25px + (35 - 25) * ((100vw - 320px) / (1920 - 320)));
      height: calc(25px + (35 - 25) * ((100vw - 320px) / (1920 - 320)));
      @include flex_common;
      padding: 0;
    }
  }

  .product-detail {
    margin-top: 15px;

    select {
      background-color: #f8f8f8;
      border: 1px solid #eeeeee;
      cursor: pointer;
      margin-top: 15px;
      font-size: calc(14px + 2 * (100vw - 320px) / 1600);
      font-weight: 500;
      color: #333;
      padding: calc(5px + 4 * (100vw - 320px) / 1600) calc(30px + 6 * (100vw - 320px) / 1600) calc(5px + 4 * (100vw - 320px) / 1600) calc(10px + 6 * (100vw - 320px) / 1600);
      width: max-content;
      max-width: 100%;
    }

    .digital-price {
      margin-top: 13px;
      display: flex;
      align-items: center;
      gap: 11px;

      .form-check {
        min-height: unset;
        padding: 0;
        margin: 0;
        align-items: center;
        gap: 4px;

        .form-check-input {
          float: unset;
          margin: 0;
        }

        .form-check-label {
          margin: 0;
          line-height: 1;
        }
      }
    }

    h6 {
      display: block;
      overflow: hidden;
      line-height: calc(19px + (24 - 19) * ((100vw - 320px) / (1920 - 320)));
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      width: 100%;

      a {
        color: #777777;
      }

      @media (max-width: 576px) {
        margin-bottom: 0;
      }
    }
  }

  .ribbon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
    transition: all 0.5s ease;

    span {
      font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
      font-weight: bold;
      color: $white-dark;
      text-transform: capitalize;
      text-align: center;
      line-height: calc(20px + (25 - 20) * ((100vw - 320px) / (1920 - 320)));
      transform: rotate(-45deg);
      width: 105px;
      display: block;
      background: var(--theme-color);
      position: absolute;
      top: 19px;
      left: -21px;
    }
  }

  .ribbon-round {
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    text-align: center;
    z-index: 0;
    width: fit-content;
    position: absolute;
    z-index: 1;
    top: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    left: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    padding: calc(7px + (10 - 7) * ((100vw - 320px) / (1920 - 320)));
    font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    color: $white;

    &:after {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background: radial-gradient(35% 35%, rgba(0, 0, 0, 0) 96%, rgba(0, 0, 0, 0) 97% 99%, rgba(0, 0, 0, 0)) var(--theme-color);
      clip-path: polygon(100% 50%, 88.04% 62.36%, 90.45% 79.39%, 73.51% 82.36%, 65.45% 97.55%, 50% 90%, 34.55% 97.55%, 26.49% 82.36%, 9.55% 79.39%, 11.96% 62.36%, 0% 50%, 11.96% 37.64%, 9.55% 20.61%, 26.49% 17.64%, 34.55% 2.45%, 50% 10%, 65.45% 2.45%, 73.51% 17.64%, 90.45% 20.61%, 88.04% 37.64%);
      animation: animName 20s linear infinite;
    }
  }

  .ribbon-outer {
    --f: 0.5em;
    --r: 0.8em;
    font-size: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: $white-dark;
    position: absolute;
    top: 12px;
    left: calc(-1 * var(--f));
    padding-inline: 10px;
    line-height: 1.8;
    background: var(--theme-color);
    border-bottom: var(--f) solid #0005;
    border-right: var(--r) solid #0000;
    clip-path: polygon(0 0, 0 calc(100% - var(--f)), var(--f) 100%, var(--f) calc(100% - var(--f)), 100% calc(100% - var(--f)), calc(100% - var(--r)) calc(50% - var(--f) / 2), 100% 0);
    z-index: 1;
  }

  .add-cart-button {
    margin-top: 10px;

    @media (max-width: 767px) {
      margin-top: 4px;
    }

    button {
      width: 100%;
      display: block;
      padding: 10px 10px;
      text-align: center;
      text-transform: unset;
      border: none;
      color: #888;
      font-size: 16px;
      font-weight: 500;
      background-color: $light;

      i,
      svg {
        display: none;
      }
    }
  }

  .hover-action {
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 767px) {
      gap: 4px;
    }
  }

  .rating-w-count {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
  }

  .addtocart_btn {
    width: max-content;
    margin: 0 auto;
    position: relative;

    .add-button {
      background-color: transparent;
      text-align: center;
      font-size: 16px;
      width: max-content;
      padding: 9px 49px;
      transition: all 0.5s ease;
      cursor: pointer;
      border: 1px solid var(--theme-color);
      margin-top: 15px;
      color: var(--theme-color);
      position: relative;

      &:before {
        -webkit-transition: 0.5s all ease;
        transition: 0.5s all ease;
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        opacity: 0;
        content: "";
        background-color: var(--theme-color);
        z-index: -2;
      }

      &:hover,
      &:focus {
        background-color: var(--theme-color) !important;
        color: $white !important;

        i {
          color: $white !important;
        }

        &:before {
          transition: 0.5s all ease;
          left: 0;
          right: 0;
          opacity: 1;
        }
      }
    }

    .qty-box {
      position: absolute;
      bottom: 0;
      display: none;
      width: 100%;

      .input-group {
        padding: 4px;
        display: flex;
        flex-wrap: unset;
        align-items: center;
        border-radius: 0;
        border: 1px solid $white-dark;
        background-color: $white;

        .form-control {
          width: calc(100% - 66px);
          border: none;
          background-color: transparent;
          padding-block: 0;

          &:focus {
            border-color: $grey3;
            box-shadow: none;
          }
        }

        button {
          height: 33px;
          padding: 0px;
          border: 1px solid $white-dark;
          width: 33px;
          background-color: $top-header;

          svg {
            color: $dark-font;
            font-weight: 500;
            font-size: 15px;
            width: unset;
            height: unset;
          }
        }
      }

      &.open {
        display: block;
      }
    }
  }

  .product-action {
    border-top: 1px solid $white-dark;
    padding-top: 14px;
    @include flex_common($dis: flex, $align: center, $justify: space-between);
    margin-top: 10px;

    a {
      font-size: 20px;
      color: var(--theme-color);
    }

    button {
      border: none;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 8px 14px;
      color: $dark-font;
      background-color: $top-header;
      transition: all 0.5s ease;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0.01em;
    }
  }

  .color-panel {
    display: flex;
    align-items: center;
    gap: 6px;

    ul {
      display: flex;
      align-items: center;
      gap: calc(0px + (4 - 0) * ((100vw - 320px) / (1920 - 320)));

      li {
        display: inline-block;
        height: 20px;
        width: 20px;
        border-radius: 100%;
        cursor: pointer;
        transition: all 0.1s ease;
        vertical-align: middle;

        +li {
          margin-left: calc(2px + 3 * (100vw - 320px) / 1600);
        }
      }
    }

    .color {
      li {
        width: 15px;
        height: 15px;
      }
    }

    .image {
      li {
        width: unset;
        height: unset;

        &.active {
          a {
            img {
              border-color: var(--theme-color);
            }
          }
        }

        a {
          img {
            width: calc(20px + 15 * (100vw - 320px) / 1600);
            height: calc(25px + 15 * (100vw - 320px) / 1600);
            margin: 0;
            padding: 2px;
            object-fit: cover;
            border: 1px solid #dddddd;
            cursor: pointer;
          }
        }
      }
    }

    .general-variant {
      &.color {
        gap: calc(0px + 0.0025 * (100vw - 320px));
        margin-top: 0;
        flex-wrap: nowrap;

        li {
          width: 15px;
          height: 15px;
          outline: unset;
          border: unset;

          &.active {
            outline: unset;
            border: unset;
          }
        }
      }
    }

    &.color-lg {
      .color {
        li {
          width: 20px;
          height: 20px;
        }
      }
    }
  }

  .general-variant {
    &.image {
      li {
        width: unset;
        height: unset;

        &.active {
          a {
            img {
              border-color: var(--theme-color);
            }
          }
        }

        a {
          img {
            width: calc(20px + 15 * (100vw - 320px) / 1600);
            height: calc(25px + 15 * (100vw - 320px) / 1600);
            margin: 0;
            padding: 2px;
            object-fit: cover;
            border: 1px solid #dddddd;
            cursor: pointer;
          }
        }
      }
    }

    &.circle {
      display: flex;
      flex-wrap: wrap;
      gap: calc(5px + 4 * (100vw - 320px) / 1600);
      margin-top: 10px;
      margin-left: 1px;

      li {
        width: unset;
        height: unset;
        background-color: transparent;
        display: block;
        border-radius: unset;
        outline: none;
        cursor: pointer;
        border: none;

        &.active {
          button {
            outline: 1px solid var(--theme-color);
            border: 3px solid $white;
          }
        }

        &.disabled {
          opacity: 0.4;
          cursor: not-allowed;
        }

        button {
          width: calc(28px + 7 * (100vw - 320px) / 1600);
          height: calc(28px + 7 * (100vw - 320px) / 1600);
          background-color: $top-header;
          @include flex_common;
          transition: unset;
          font-weight: 400;
          border-radius: 0;
          outline: 1px solid transparent;
          cursor: pointer;
          border: 3px solid $white;

          &:hover {
            color: $dark-font;
          }
        }
      }
    }

    &.color {
      display: flex;
      flex-wrap: wrap;
      gap: calc(5px + 5 * (100vw - 320px) / 1600);
      margin-top: 10px;
      margin-left: 1px;

      li {
        width: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
        height: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
        background-color: transparent;
        display: block;
        border-radius: 100%;
        outline: 1px solid transparent;
        cursor: pointer;
        border: 3px solid $white;

        &.active {
          outline: 1px solid var(--theme-color);
          border: 3px solid $white;
        }

        &.disabled {
          opacity: 0.4;
          cursor: not-allowed;
        }
      }
    }

    &.thumbnail {
      position: absolute;
      bottom: 10px;
      display: flex;
      flex-direction: column;
      left: 10px;
      gap: 10px;
      margin: 0;

      .image {
        margin-bottom: 0;
      }

      li {
        border-radius: 100%;
        overflow: hidden;
        border: 1px solid $white;
        display: block;

        +li {
          margin-top: 7px;
        }

        button,
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          padding: 0;
          margin: 0;
        }

        &.active {
          border-color: var(--theme-color);
        }
      }
    }
  }

  .addto-cart-bottom {
    .btn {
      padding: 0;
      background-color: transparent;
      border: unset;
      color: #222;
      font-weight: 500;
    }
  }

  &:hover {
    .cart-info {
      opacity: 1;
      transition: all 0.5s ease;

      .hover-action {
        li {
          &:nth-child(1) {
            a {
              animation: fadeInRight 500ms ease-in-out;
            }
          }

          &:nth-child(2) {
            a {
              animation: fadeInRight 700ms ease-in-out;
            }
          }

          &:nth-child(3) {
            a {
              animation: fadeInRight 1000ms ease-in-out;
            }
          }
        }
      }
    }

    .product-action {
      button {
        color: var(--theme-color);
      }
    }

    .img-wrapper {
      .quick-option {
        transform: translate(-50%, -50%) scale(1);
      }

      .addto-cart-bottom {
        bottom: 16px;

        @media (max-width: 576px) {
          bottom: 10px;
        }
      }
    }
  }

  &.theme-product-1 {
    border: 1px solid $white-dark;
    overflow: hidden;
    padding: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));

    .product-detail {
      margin-top: 0;
      padding: 0;

      .offer-panel {
        padding: 10px 0 0;
        margin-top: 0;
        color: $dark-font;
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
        display: flex;
        align-items: center;
        gap: 15px;
        white-space: nowrap;
        position: relative;
        transition: 0.4s ease;

        li {
          +li {
            opacity: 0;
            visibility: hidden;
          }
        }

        .offer-icon {
          color: var(--theme-color);
          animation: animName 2s linear infinite;
          display: inline-block;
        }
      }

      >div {
        padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320))) 0;
        border-bottom: 1px solid $white-dark;
      }
    }

    .cart-info {
      top: 10px;
      bottom: unset;
      opacity: 1;
      right: 10px;

      button,
      a {
        width: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        border: none;

        i,
        svg {
          color: var(--theme-color);
          font-weight: normal;
          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      button {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }
      }

      :not(.btn-check)+.btn:active {
        background-color: $white;
      }

      a {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }

        &.wishlist-icon {
          opacity: 1;
        }
      }
    }

    .hover-action {
      margin-top: 0;

      li {
        &:empty {
          display: none;
        }

        button {
          transition: unset;
        }
      }
    }

    &:hover {
      .product-detail {
        .offer-panel {
          animation: marquee-discount 8s linear infinite;

          li {
            +li {
              opacity: 1;
              visibility: visible;
            }
          }
        }
      }

      .cart-info {
        .hover-action {
          li {
            &:first-child {
              a {
                animation: fadeInDown 700ms ease-in-out;
              }
            }

            &:nth-child(2) {
              a {
                animation: fadeInDown 1000ms ease-in-out;
              }
            }
          }
        }

        .wishlist-icon {
          animation: none;
        }

        button {
          animation: fadeInDown 500ms ease-in-out;
          opacity: 1;
        }

        a {
          opacity: 1;

          &:nth-child(3) {
            animation: fadeInDown 700ms ease-in-out;
          }

          &:nth-child(4) {
            animation: fadeInDown 1000ms ease-in-out;
          }
        }
      }

      .hover-action {
        li {
          button {
            animation: fadeInDown 300ms ease-in-out;
          }

          &:nth-child(2) {
            a {
              animation: fadeInDown 500ms ease-in-out;
              opacity: 1;
            }
          }

          &:nth-child(3) {
            a {
              animation: fadeInDown 700ms ease-in-out;
              opacity: 1;
            }
          }

          &:nth-child(4) {
            a {
              animation: fadeInDown 1000ms ease-in-out;
              opacity: 1;
            }
          }
        }
      }
    }
  }

  &.theme-product-2 {
    padding: calc(10px + (18 - 10) * ((100vw - 320px) / (1920 - 320)));
    background-color: $white;
    position: relative;
    border: 1px solid $white-dark;
    border-radius: 0;

    .rating {
      margin-top: calc(3px + (8 - 3) * ((100vw - 320px) / (1920 - 320)));
      margin-bottom: calc(0px + (3 - 0) * ((100vw - 320px) / (1920 - 320)));
    }

    .product-title {
      width: 88%;

      @media (max-width: 767px) {
        width: 76%;
      }
    }

    .product-detail {
      margin-bottom: 5px;

      .details {
        li {
          font-size: 14px;
          font-weight: 400;
          color: $grey;
          line-height: 24px;

          +li {
            margin-left: 12px;
          }
        }
      }

      .add-wish {
        position: absolute;
        right: calc(10px + (18 - 10) * ((100vw - 320px) / (1920 - 320)));
        top: calc(10px + (18 - 10) * ((100vw - 320px) / (1920 - 320)));
        background-color: #f1f1f1;
        border-radius: 100%;
        width: calc(24px + (28 - 24) * ((100vw - 320px) / (1920 - 320)));
        height: calc(24px + (28 - 24) * ((100vw - 320px) / (1920 - 320)));
        @include flex_common;

        a {
          line-height: 0;
          cursor: pointer;

          i {
            color: var(--theme-color);
          }
        }
      }
    }

    .bottom-detail {
      display: flex;
      align-items: center;
      margin-top: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
      padding-bottom: 0;

      .btn {
        margin-left: auto;
      }

      .color-panel {
        margin-bottom: 10px;
      }
    }

    .cart-detail {
      margin-top: 10px;
      @include flex_common;
      border-top: 1px solid $white-dark;
      padding-top: 12px;
      margin-bottom: -5px;
      font-size: 16px;

      @media (max-width: 576px) {
        display: none;
      }

      >li {
        padding: 0 10px;

        a,
        button {
          color: rgba(black, 0.5);
          text-transform: capitalize;
          display: flex;
          align-items: center;
        }

        svg,
        i {
          width: unset;
          height: unset;
          margin-right: 6px;
        }

        button {
          background-color: transparent;
          border: none;
          font-size: 16px;
          padding: 0;
          font-weight: normal;
        }

        +li {
          border-left: 1px solid $white-dark;
        }
      }
    }

    .img-wrapper {
      position: relative;
      text-align: center;

      &:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(white, 0.77);
        opacity: 0;
        transition: all 0.5s ease;
      }

      .quick-view-part {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);
        background-color: var(--theme-color);
        border-radius: 100%;
        width: 28px;
        height: 28px;
        @include flex_common;
        z-index: 1;
        box-shadow: 0px 1px 2px #a9a9a9;
        transition: all 0.5s ease;

        a {
          line-height: 0;
          color: $white;

          svg {
            width: 16px;
            height: 16px;
          }
        }
      }
    }

    &:hover {
      .img-wrapper {
        &:after {
          opacity: 1;
          transition: all 0.5s ease;
        }

        .quick-view-part {
          transform: translate(-50%, -50%) scale(1);
          transition: all 0.5s ease;
        }
      }
    }
  }

  &.theme-product-3 {
    padding: calc(7px + (12 - 7) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid $white-dark;
    border-radius: 0;

    .hover-action {
      margin-top: 0;

      li {
        &:empty {
          display: none;
        }
      }
    }

    .product-title {
      margin-bottom: 6px;
    }

    .cart-info {
      top: 10px;
      bottom: unset;
      opacity: 1;
      right: 10px;

      button,
      a {
        width: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        border: none;

        i {
          color: var(--theme-color);
          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      button {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }
      }

      a {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }

        &.wishlist-icon {
          opacity: 1;
        }
      }
    }

    &:hover {
      .cart-info {
        .wishlist-icon {
          animation: none;
        }

        a {
          opacity: 1;
        }

        .hover-action {
          li {
            &:nth-child(1) {
              a {
                animation: fadeInDown 700ms ease-in-out;
              }
            }

            &:nth-child(2) {
              a {
                animation: fadeInDown 1000ms ease-in-out;
              }
            }
          }
        }
      }
    }
  }

  &.theme-product-4 {
    .color-panel {
      position: absolute;
      bottom: 10px;
      left: 10px;

      select {
        display: none;
      }
    }

    .price {
      del {
        margin-left: auto;

        @media (max-width: 768px) {
          margin-left: 0;
        }
      }

      .discounted-price {
        font-weight: 500;
        padding: 5px 6px;
        color: var(--theme-color);
        display: inline-block;
        margin-bottom: 0;
        margin-left: 0;
        position: relative;
        font-size: 14px;

        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: var(--theme-color);
          opacity: 0.1;
        }
      }
    }

    .cart-info {
      top: 10px;
      bottom: unset;
      opacity: 1;
      right: 10px;

      button,
      a {
        width: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        border: none;

        i,
        svg {
          font-weight: normal;
          color: var(--theme-color);
          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      button {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }
      }

      a {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }

        &.wishlist-icon {
          opacity: 1;
        }
      }

      .wishlist-icon {
        a {
          opacity: 1;
        }
      }
    }

    .add-cart-btn {
      @media (max-width: 768px) {
        margin-top: 8px;
      }
    }

    .hover-action {
      li {
        &:empty {
          display: none;
        }
      }
    }

    &:hover {
      .cart-info {
        .wishlist-icon {
          animation: none;
        }

        button {
          animation: fadeInDown 500ms ease-in-out;
          opacity: 1;
        }

        .hover-action {
          li {
            &:first-child {
              a {
                animation: fadeInDown 900ms ease-in-out;
                opacity: 1;
              }
            }

            &:nth-child(2) {
              a {
                animation: fadeInDown 1300ms ease-in-out;
                opacity: 1;
              }
            }

            &:nth-child(3) {
              a {
                animation: fadeInDown 700ms ease-in-out;
                opacity: 1;
              }
            }

            &:nth-child(4) {
              a {
                animation: fadeInDown 1000ms ease-in-out;
                opacity: 1;
              }
            }
          }
        }
      }
    }
  }

  &.theme-product-5 {
    .img-wrapper {
      border-radius: 0;
    }

    .cart-info {
      background-color: $white;
      right: -40px;
      bottom: unset;
      top: 0;
      gap: 0;
      padding: 4px;

      button,
      a {
        border: none;
        border-radius: 0;
        padding: 0;
        font-weight: unset;
      }

      .hover-action {
        margin-top: 0;
        gap: 0;
      }
    }

    &:hover {
      .cart-info {
        right: 0;

        button,
        a {
          animation: none;
        }

        .hover-action {
          li {
            a {
              animation: none;
            }
          }
        }
      }
    }
  }

  &.theme-product-6 {
    padding: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
    border: 1px solid $white-dark;

    .hover-action {
      flex-direction: row;
      gap: 0;
      margin-top: 0;

      li {
        a {
          animation: none !important;
        }
      }
    }

    .product-detail {
      * {
        text-align: center;
        justify-content: center;
      }
    }

    .addtocart_btn {
      .add-button {
        padding: calc(7px + (9 - 7) * ((100vw - 320px) / (1920 - 320))) calc(19px + (29 - 19) * ((100vw - 320px) / (1920 - 320)));
        font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
      }
    }

    .img-wrapper {
      background-color: $top-header;
    }

    .product-title {
      margin-bottom: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    }

    .cart-info {
      flex-direction: row;
      left: 50%;
      right: unset;
      transform: translate(-50%, -50%) scale(0.7);
      bottom: unset;
      top: 50%;
      background-color: $white;
      gap: 0;
      padding: 2px 5px;

      @media (max-width: 767px) {
        display: none;
      }

      button,
      a {
        border: none;
      }

      a {
        position: relative;
        background-color: transparent;
        box-shadow: none;

        +a {
          &::after {
            content: "";
            position: absolute;
            width: 1px;
            height: 54%;
            top: 50%;
            left: 0;
            background-color: $white-dark;
            transform: translateY(-50%);
          }
        }
      }
    }

    &:hover {
      .cart-info {
        transform: translate(-50%, -50%) scale(1);

        a {
          animation: none;
        }
      }
    }
  }

  &.theme-product-7 {
    background-color: $white;
    border: 1px solid $white-dark;
    margin-bottom: 1px;

    .product-action {
      @media (max-width: 460px) {
        display: none;
      }
    }

    .rating {
      i {
        font-size: 15px;
        margin-right: 0;
      }
    }

    .product-title {
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
      color: $grey;
      margin-bottom: 10px !important;
    }

    .product-detail {
      margin-top: 0;
      padding: 14px;
      position: relative;
      padding-bottom: 14px !important;
    }

    .img-wrapper {
      margin: 10px 10px 0 10px;

      .bg-size {
        transition: all 0.5s ease;
      }

      &::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(black, 0.2);
        z-index: 1;
      }
    }

    .price {
      font-size: 16px;
      margin-bottom: 4px;
    }

    &:hover {
      .img-wrapper {
        .bg-size {
          transform: scale(1.2);
        }

        &::before {
          content: "";
        }
      }
    }
  }

  &.theme-product-8 {
    background-color: $white;
    border: 1px solid $white-dark;
    margin-bottom: 1px;

    .hover-action {
      margin-top: 0;

      li {
        &:empty {
          display: none;
        }
      }
    }

    .product-title {
      margin-bottom: 12px;
    }

    .add-round-btn {
      position: absolute;
      right: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
      bottom: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
      background-color: var(--theme-color);
      color: $white;
      border-radius: 100%;
      width: calc(24px + (38 - 24) * ((100vw - 320px) / (1920 - 320)));
      height: calc(24px + (38 - 24) * ((100vw - 320px) / (1920 - 320)));
      @include flex_common;
      border: none;
      font-weight: normal;
      font-size: calc(13px + (18 - 13) * ((100vw - 320px) / (1920 - 320)));

      .ri-shopping-cart-line {
        &::before {
          content: "\f11f";
        }
      }
    }

    .product-detail {
      margin-top: 0;
      padding: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320))) !important;
      position: relative;

      .add-round-btn {
        .ri-shopping-cart-line {
          &:before {
            content: "\f120";
          }
        }

        span {
          display: none;
        }

        &.active {
          .ri-shopping-cart-line {
            &:before {
              content: "\f11f";
            }
          }
        }
      }
    }

    .rating-w-count {
      margin-top: 10px;
    }

    .img-wrapper {
      .bg-size {
        transition: all 0.5s ease;
      }
    }

    .cart-info {
      top: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));
      bottom: unset;
      opacity: 1;
      right: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));

      button,
      a {
        width: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        border: none;

        i,
        svg {
          color: var(--theme-color);
          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      button {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }
      }

      a {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }

        &.wishlist-icon {
          opacity: 1;
        }
      }
    }

    .wishlist-icon {
      a {
        opacity: 1;
      }
    }

    &:hover {
      .cart-info {
        .wishlist-icon {
          animation: none;
        }

        a {
          opacity: 1;

          &:nth-child(2) {
            animation: fadeInDown 500ms ease-in-out;
          }

          &:nth-child(3) {
            animation: fadeInDown 700ms ease-in-out;
          }
        }

        .hover-action {
          li {
            &:nth-child(3) {
              a {
                animation: fadeInDown 700ms ease-in-out;
              }
            }

            &:nth-child(4) {
              a {
                animation: fadeInDown 1000ms ease-in-out;
              }
            }
          }
        }
      }

      .img-wrapper {
        .bg-size {
          transform: scale(1.2);
        }
      }
    }
  }

  &.theme-product-9 {
    background-color: $top-header;
    border: 1px solid $white-dark;

    .img-wrapper {
      background-color: $white;
    }

    .hover-action {
      margin-top: 0;

      li {
        &:empty {
          display: none;
        }
      }
    }

    .product-detail {
      margin-top: 0;
      padding: calc(8px + (15 - 8) * ((100vw - 320px) / (1920 - 320))) !important;
    }

    .bottom-details {
      @include flex_common($dis: flex, $align: flex-end, $justify: space-between);
      margin-top: 10px;
    }

    .rating-label {
      display: flex;
      align-items: center;
      gap: 6px;

      span {
        color: #aaa;
        line-height: 1;

        &.review-count {
          @media (max-width: 480px) {
            display: none;
          }
        }
      }

      >div {
        background-color: var(--theme-color);
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 4px calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
        border-radius: 13px;
        color: $white;
        font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));

        span {
          color: $white;
        }
      }
    }

    .discount-value {
      padding-top: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
      border-top: 1px solid $white-dark;
      margin-top: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
      color: $dark-font;
      font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));

      .offer-icon {
        color: #767676;
        animation: animName 2s linear infinite;
        display: inline-block;
      }
    }

    .price-vertical {
      text-align: right;

      h4 {
        margin-bottom: 0;
        font-weight: 500;
      }
    }

    .cart-info {
      top: 10px;
      bottom: unset;
      opacity: 1;
      right: 10px;

      button,
      a {
        width: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        height: calc(26px + (32 - 26) * ((100vw - 320px) / (1920 - 320)));
        border: none;
        background-color: $top-header;

        i {
          color: var(--theme-color);
          font-size: calc(14px + (17 - 14) * ((100vw - 320px) / (1920 - 320)));
        }
      }

      button {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }
      }

      a {
        opacity: 0;

        @media (max-width: 767px) {
          opacity: 1;
        }

        &.wishlist-icon {
          opacity: 1;
        }
      }
    }

    &:hover {
      .cart-info {
        .wishlist-icon {
          animation: none;
        }

        button {
          animation: fadeInDown 500ms ease-in-out;
          opacity: 1;
        }

        a {
          opacity: 1;
        }

        .hover-action {
          li {
            &:nth-child(3) {
              a {
                animation: fadeInDown 700ms ease-in-out;
              }
            }

            &:nth-child(4) {
              a {
                animation: fadeInDown 1000ms ease-in-out;
              }
            }
          }
        }
      }
    }
  }

  &.theme-product-10 {
    .cart-info {
      bottom: unset;
      top: 12px;

      @media (max-width: 767px) {
        top: 10px;
      }
    }

    &:hover {
      .cart-info {
        a {
          &:first-child {
            animation: fadeInRight 300ms ease-in-out;
          }
        }
      }
    }
  }

  &.theme-product-11 {
    padding: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
    overflow: hidden;
    border: 1px solid $white-dark;

    .img-wrapper {
      .bg-size {
        transition: all 0.5s ease;
      }
    }

    .product-detail {
      text-align: center;
      overflow: hidden;
      margin-top: 10px;

      * {
        justify-content: center;
      }
    }

    .cart-info {
      top: 12px;
      bottom: unset;
    }

    .abs-product {
      position: absolute;
      bottom: -62%;
      width: calc(100% - 20px);
      background-color: $white;
      padding: 10px;
      transition: all 0.5s ease;
      display: flex;
      flex-direction: column;
      gap: 8px;

      @media (max-width: 768px) {
        position: relative;
        width: 100%;
        padding: 0;

        .product-title {
          display: none;
        }

        .price {
          display: none;
        }
      }

      .add-cart-btn {
        margin-top: 0;
      }

      .digital-price {
        flex-wrap: wrap;
      }

      select {
        font-size: 14px;
      }

      .add-cart-btn {
        i {
          display: none;
        }
      }

      .general-variant {
        &.image {
          @include flex_common;
        }

        &.circle {
          margin: 0;
          justify-content: center;
        }
      }
    }

    &:hover {
      .abs-product {
        bottom: 0;
      }
    }
  }
}

.flip {
  position: relative;
  overflow: hidden;
  z-index: 0;

  .front {
    opacity: 1;
    transition: all 0.5s ease;
    background-color: $top-header;
  }

  .back {
    background-color: $top-header;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    transform: translateX;
  }
}

.bg_cls {
  .basic-product {
    &.theme-product-11 {
      background-color: $white;
    }
  }

  .service-block1 {
    background-color: $white;
  }
}

.no-data-added,
.tab-category {
  text-align: center;
  padding: 60px 0;

  img {
    width: 35%;
    margin-bottom: calc(15px + (26 - 15) * ((100vw - 320px) / (1920 - 320)));
    max-width: 270px;
  }

  h4 {
    font-weight: 500;
    font-size: calc(19px + (25 - 19) * ((100vw - 320px) / (1920 - 320)));
    color: $dark-top;
    letter-spacing: unset;
    text-transform: none;
    margin-bottom: 0;
  }

  &.collection-no-data {
    padding: 120px 0;

    img {
      width: 30%;

      @media (max-width: 1366px) {
        width: 42%;
      }

      @media (max-width: 767px) {
        width: 60%;
      }

      @media (max-width: 480px) {
        width: 80%;
      }
    }

    p {
      width: 44%;

      @media (max-width: 1206px) {
        width: 53%;
      }

      @media (max-width: 1100px) {
        width: 64%;
      }

      @media (max-width: 575px) {
        width: 80%;
      }

      @media (max-width: 480px) {
        width: 100%;
      }
    }
  }

  p {
    width: 100%;
    margin: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320))) auto 0;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
    color: $grey;
  }

  &.category-no-data {
    img {
      width: 64%;
    }
  }

  &.no-shipping {
    img {
      width: 32%;

      @media (max-width: 991px) {
        width: 42%;
      }

      @media (max-width: 576px) {
        width: 50%;
      }

      @media (max-width: 420px) {
        width: 80%;
      }
    }
  }
}

.tab-category {
  padding: 10px !important;

  h4 {
    font-size: 20px !important;
  }
}

.empty-cart {
  text-align: center;

  *:empty {
    display: none;
  }

  img {
    width: 65%;
    margin: 0 auto 23px;
  }

  h4 {
    margin: 0;
    line-height: 1.5;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    font-size: 18px;
  }
}

/**=====================
     Seller Grid Scss
==========================**/
.seller-grid-box {
  background-color: $top-header;
  padding: calc(12px + 13 * (100vw - 320px) / 1600);
  border-radius: 0;
  position: relative;
  border: 1px solid $white-dark;
  display: block;

  .grid-image {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;

    .image {
      width: 74px;
      height: 74px;
      padding: 10px;
      border-radius: 0;
      background-color: $white;
      @include flex_common;

      h4 {
        line-height: 1;
        margin: 0;
        font-size: 60px;
        margin: 0;
        color: $dark-font;
        font-weight: 700;
        text-transform: uppercase;
      }
    }

    .contain-name {
      width: calc(100% - 74px - 10px);
      position: relative;

      .since-number {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        right: 0;
        padding-left: 5px;

        .rating {
          display: block;

          >* {
            >span {
              line-height: 1;
            }
          }
        }

        @media (max-width: 480px) {
          display: block;
        }

        h6 {
          color: $grey;
          font-weight: 500;
          text-align: right;
          margin: 0;
        }

        .product-rating {
          display: block;
          text-align: right;

          @media (max-width: 480px) {
            margin-top: 2px;
          }
        }
      }

      h3 {
        font-size: calc(18px + 2 * (100vw - 320px) / 1600);
        font-weight: 600;
        margin-bottom: 10px;
        color: $dark-font;
        width: 50%;
        letter-spacing: unset;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        white-space: nowrap;
      }

      .product-label {
        padding: 5px 10px;
        background-color: transparent;
        font-size: 13px;
        letter-spacing: 0.5px;
        border-radius: 4px;
        color: var(--theme-color);
        position: relative;
        inset: unset;
        z-index: 0;

        &:after {
          position: absolute;
          content: "";
          background-color: var(--theme-color);
          opacity: 0.1;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          z-index: -1;
        }
      }
    }
  }

  .grid-contain {
    .seller-contact-details {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 25px;

      h6 {
        font-weight: 500;
      }

      ul {
        display: grid;
        gap: 11px;

        li {
          display: flex;
          align-items: center;
          gap: 7px;

          i {
            font-size: 20px;
            line-height: 1;
            color: $grey;
          }

          h5 {
            margin: 0;
            font-weight: 400;
            line-height: 1.3;
            color: #464646;

            a {
              color: $dark-font;
            }
          }
        }
      }
    }

    .contain-name {
      @include flex_common($dis: flex, $align: flex-end, $justify: space-between);

      h6 {
        color: $grey;
        margin-left: 4px;
      }

      h3 {
        font-size: calc(19px + (23 - 19) * ((100vw - 320px) / (1920 - 320)));
        font-weight: 600;
        margin-bottom: calc(5px + (8 - 5) * ((100vw - 320px) / (1920 - 320)));
        color: $dark-font;
      }

      .product-rating {
        margin-bottom: calc(14px + (19 - 14) * ((100vw - 320px) / (1920 - 320)));
      }

      .product-label {
        padding: 5px 10px;
        font-size: 13px;
        letter-spacing: 0.5px;
        border-radius: 4px;
        color: var(--theme-color);
        position: relative;
        z-index: 0;

        &:after {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-color: var(--theme-color);
          opacity: 0.1;
          left: 0;
          top: 0;
          z-index: -1;
        }
      }

      .grid-image {
        width: calc(67px + (100 - 67) * ((100vw - 320px) / (1920 - 320)));
        height: calc(67px + (100 - 67) * ((100vw - 320px) / (1920 - 320)));
        @include flex_common;
        background: $white;
        padding: calc(10px + (15 - 10) * ((100vw - 320px) / (1920 - 320)));
        border-radius: 0;

        h1 {
          color: $grey;
          line-height: 1;
          font-size: calc(43px + (70 - 43) * ((100vw - 320px) / (1920 - 320)));
        }

        .image {
          a {
            @include flex_common;

            h1 {
              margin: 0;
              font-size: 56px;
              line-height: 1;
            }
          }
        }
      }
    }

    .seller-category {
      @include flex_common($dis: flex, $align: center, $justify: space-between);

      .product-image {
        display: flex;
        flex-wrap: nowrap;

        li {
          width: calc(35px + (40 - 35) * ((100vw - 320px) / (1920 - 320)));
          height: calc(35px + (40 - 35) * ((100vw - 320px) / (1920 - 320)));
          @include flex_common;
          overflow: hidden;
          background: $white;
          border-radius: 100%;
          padding: 4px;
          box-shadow: 0 0 2px rgba(34, 34, 34, 0.2);
          color: $grey;
          transition: all 0.3s ease-in-out;

          &:hover {
            transform: scale(1.1) translateY(-7px);
          }

          &:last-child {
            line-height: 1;
            font-weight: 600;
            font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
          }

          +li {
            margin-left: calc(-19px + (-14 - -19) * ((100vw - 320px) / (1920 - 320)));
          }
        }
      }

      .btn {
        padding: 11px 16px;
        color: var(--theme-color) !important;
        letter-spacing: unset;
        border: 1px solid var(--theme-color) !important;
        background: unset;
        background-color: $white !important;

        &:hover {
          background-color: var(--theme-color) !important;
          color: $white !important;
        }

        svg {
          width: unset;
          height: unset;
        }
      }
    }
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }

  .content {
    height: 30vh;
  }

  h1 {
    font-size: 24px;
  }
}

.seller-section {
  .banner-content {
    margin-top: 35px;

    h4 {
      font-size: 22px;
      font-weight: 600;
      text-transform: unset;
      letter-spacing: unset;
      line-height: 1.3;
    }

    p {
      line-height: 1.7;
      margin-bottom: 0;
    }
  }
}

.brand-slider-box {
  .logo-block {
    width: 100%;
    height: calc(80px + 0.025 * (100vw - 320px));
    margin-inline: auto;
    background-color: $top-header;
    border: 1px solid $white-dark;
    padding: calc(14px + (28 - 14) * ((100vw - 320px) / (1920 - 320))) calc(13px + (18 - 13) * ((100vw - 320px) / (1920 - 320)));
    @include flex_common;

    a {
      width: 100%;
      height: 100%;
      @include flex_common;
    }

    h4 {
      color: var(--theme-color);
      margin-bottom: 0;
      text-align: center;
      line-height: 1.5;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 26px;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.compare-fix {
  a {
    position: fixed;
    right: 80px;
    background-color: var(--theme-color);
    color: $white;
    padding: 8px 11px;
    bottom: 30px;
    border-radius: 0;
    z-index: 1;
    transition: all 0.3s ease-in-out;

    @media (max-width: 768px) {
      right: 60px;
      bottom: 80px;
    }

    @media (max-width: 577px) {
      padding: 5px 11px 6px;
      right: 54px;
    }
  }

  h5 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: $white;
    font-weight: 500;

    @media (max-width: 577px) {
      font-size: 12px;
    }
  }
}

.order-search-content {
  h3 {
    color: $dark-font;
    font-weight: 600;
  }
}

.comment-section {
  .comment-list-box {
    .comment-box {
      padding: calc(15px + (25 - 15) * ((100vw - 320px) / (1920 - 320)));
      height: 100%;
      border-radius: calc(8px + (18 - 8) * ((100vw - 320px) / (1920 - 320)));
      background: rgba(23, 16, 36, 1);

      .profile-name {
        display: flex;
        align-items: center;
        color: $white;
        gap: calc(13px + (20 - 13) * ((100vw - 320px) / (1920 - 320)));

        img {
          width: calc(50px + (60 - 50) * ((100vw - 320px) / (1920 - 320)));
          height: calc(50px + (60 - 50) * ((100vw - 320px) / (1920 - 320)));
          border-radius: 100%;
        }

        h4 {
          font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
          margin: 0;
          font-weight: 400;
        }
      }

      .profile-detail {
        margin-top: calc(12px + (15 - 12) * ((100vw - 320px) / (1920 - 320)));

        p {
          font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
          font-weight: 400;
          line-height: 1.4;
          color: rgba(255, 255, 255, 0.37);
          margin: 0;
        }
      }
    }
  }
}

.slider-nav {
  .slider-image {
    .video-icon {
      position: absolute;
      width: 40px;
      height: 35px;
      @include flex_common;
      background-color: $white;
      border-radius: 5px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      font-size: 18px;
      color: var(--theme-color);

      svg {
        width: unset;
        height: unset;
      }
    }
  }
}

.brand-product-box-section {
  padding-top: 30px;
}

.brand-section {
  >div {
    >.row {
      --bs-gutter-x: 0;
      --bs-gutter-y: 0;

      >.col {
        >.container {
          padding: 0;
        }
      }
    }
  }

  .brand-box {
    h2 {
      text-align: center;
      margin: 0;
      font-size: calc(20px + 11 * (100vw - 320px) / 1600);
      font-weight: 600;
      border: 1px solid #eeeeee;
      background-color: #f8f8f8;
      padding: calc(20px + 10 * (100vw - 320px) / 1600);
    }
  }
}

.basic-product {
  .add-cart-btn {
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    border: none;
    color: #888;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    margin-top: 10px;
    background-color: $light;
  }
}

.custom-badge {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;

  &.bg-credit,
  &.bg-completed {
    color: #2f8733;
    background-color: rgba(47, 135, 51, 0.1);
    border: 1px solid #2f87338a;
  }

  &.bg-debit,
  &.bg-cancelled {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.541);
  }

  &.bg-pending {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.541);
  }
}

.blog-page {
  .blog-featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    z-index: 1;
    padding: 8px 13px;
    @include flex_common;
    font-size: 14px;
    color: $white;
    line-height: 1;
    font-weight: 600;
  }
}

.blog-label-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--theme-color);
  z-index: 1;
  width: 32px;
  height: 32px;
  @include flex_common;
  font-size: 17px;
  color: $white;
}

.no-data-added,
.tab-category {
  text-align: center;
  padding: calc(40px + (72 - 40) * ((100vw - 320px) / (1920 - 320))) 13px;
  background-color: $top-header;

  img {
    width: 35%;
    margin-bottom: calc(15px + (26 - 15) * ((100vw - 320px) / (1920 - 320)));
    max-width: 270px;
  }

  h4 {
    font-weight: 500;
    font-size: calc(19px + (25 - 19) * ((100vw - 320px) / (1920 - 320)));
    color: $dark-top;
    letter-spacing: unset;
    text-transform: none;
    margin-bottom: 0;
    line-height: 1.5;
  }

  &.collection-no-data {
    padding: 120px 0;

    img {
      width: 30%;

      @media (max-width: 1366px) {
        width: 42%;
      }

      @media (max-width: 767px) {
        width: 60%;
      }

      @media (max-width: 480px) {
        width: 80%;
      }
    }

    p {
      width: 44%;

      @media (max-width: 1206px) {
        width: 53%;
      }

      @media (max-width: 1100px) {
        width: 64%;
      }

      @media (max-width: 575px) {
        width: 80%;
      }

      @media (max-width: 480px) {
        width: 100%;
      }
    }
  }

  p {
    width: 100%;
    margin: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320))) auto 0;
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
    line-height: 1.4;
    color: $grey;
  }

  &.category-no-data {
    img {
      width: 64%;
    }
  }

  &.no-shipping {
    img {
      width: 32%;

      @media (max-width: 991px) {
        width: 42%;
      }

      @media (max-width: 576px) {
        width: 50%;
      }

      @media (max-width: 420px) {
        width: 80%;
      }
    }
  }
}

.tab-category {
  padding: 10px !important;
  background-color: transparent;

  h4 {
    font-size: 20px !important;
  }
}

.empty-cart {
  text-align: center;

  *:empty {
    display: none;
  }

  img {
    width: 65%;
    margin: 0 auto 23px;
  }

  h4 {
    margin: 0;
    line-height: 1.5;
    letter-spacing: unset;
    font-weight: 500;
    text-transform: unset;
    font-size: 18px;
  }
}

.single-product {
  .brand-slider-box {
    .logo-block {
      background-color: #171024;
      border-color: #212121;

      img {
        filter: invert(1) brightness(100);
      }
    }
  }

  .basic-product {
    .product-title {
      color: $white;
    }

    .price {
      color: $white;

      del {
        color: #ddd;
      }
    }

    .product-action {
      button {
        color: #ddd;
        background-color: #212121;
      }
    }

    .product-detail {
      h6 {
        color: #ddd;
      }
    }

    .cart-info {

      button,
      a {
        background-color: #0d0914;

        i {
          color: #ddd;
        }
      }
    }

    .img-wrapper {
      background-color: transparent;
      border-radius: 15px;
      overflow: hidden;

      .rating-label {
        background-color: #0d0914;
        color: #ddd;
      }

      .quick-option {
        background-color: #0a0a16;
      }

      .unit-label {
        background-color: #0a0a16;
        color: #ddd;
      }

      .addto-cart-bottom {
        background-color: #0a0a16;
        color: #ddd;

        &.active {
          color: var(--theme-color);
        }
      }
    }

    .add-cart-btn {
      color: #ddd;
      background-color: #171024;
    }

    .rating-w-count {
      span {
        color: #ddd;
      }
    }

    .addtocart_btn {
      .qty-box {
        .input-group {
          border-radius: 0;
          background-color: #0a0a16;

          .input-number {
            color: #ddd;
          }

          button {
            border-color: #212121;
            color: #fff;
            border-radius: 0 !important;
            background-color: #212121;
            width: 34px;
            height: 34px;
            padding: 0;

            i {
              font-weight: 500;
              color: #ddd;
              font-size: 15px;
            }
          }
        }
      }
    }

    .product-action {
      border-color: #212121;
    }

    &.theme-product-1 {
      border-color: #212121;

      .cart-info {

        a,
        button {
          background-color: #0d0914;

          i {
            color: $white;
          }
        }
      }

      .product-detail {
        >div {
          border-color: #212121;
        }

        .offer-panel {
          color: $white;
        }
      }
    }

    &.theme-product-2 {
      border-color: #212121;
      background-color: #0a0a16;

      .img-wrapper {
        &::after {
          background-color: rgba(10, 10, 22, 0.77);
        }
      }

      .cart-detail {
        border-color: #212121;
      }

      .cart-detail {
        li {
          +li {
            border-color: #212121;
          }

          button,
          a {
            color: #ddd;
          }
        }
      }

      .product-detail {
        .add-wish {
          background-color: #212121;
        }
      }
    }

    &.theme-product-3 {
      border-color: #212121;
    }

    &.theme-product-6 {
      border-color: #212121;

      .cart-info {
        background-color: #0a0a16;
      }
    }

    &.theme-product-7,
    &.theme-product-8 {
      background-color: #0a0a16;
      border-color: #212121;
    }

    &.theme-product-9 {
      background-color: #0a0a16;
      border-color: #212121;

      .price-vertical {
        h4 {
          color: #ddd;
        }
      }

      .discount-value {
        border-color: #212121;
        color: #ddd;
      }
    }

    &.theme-product-11 {
      border-color: #212121;

      .abs-product {
        background-color: #0a0a16;
      }
    }
  }

  .dark-layout {
    background: linear-gradient(106deg, rgba(58, 41, 59, 1) 0%, rgba(11, 11, 23, 1) 100%);
  }

  .sub-footer {
    &.darker-subfooter {
      background-color: #221926;
    }
  }
}

.download-dropdown-menu {
  border: 1px solid #eee;
  z-index: 1;
  border-radius: 0;
  padding: 13px 18px;

  .dropdown-item {
    padding: 0;

    +.dropdown-item {
      padding-top: 6px;
      border-top: 1px solid #eee;
      margin-top: 6px;
    }

    &:active,
    &.active {
      background-color: var(--theme-color);
    }

    &:hover {
      background-color: transparent;
    }
  }
}

.no-data-footer {
  background-color: #eee;
  padding: 40px 15px;

  p,
  h4 {
    margin: 0 !important;
    line-height: 1.6 !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #222 !important;
  }
}

.breadcrumb-section~.no-data-added {
  background-color: white;
}