@mixin flexbox() {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

// Inline flexbox display
@mixin inline-flexbox() {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

// nowrap | wrap | wrap-reverse
@mixin flex-wrap($wrap) {
  -webkit-flex-wrap: $wrap;
  -moz-flex-wrap: $wrap;
  -ms-flex-wrap: $wrap;
  flex-wrap: $wrap;
}

// flex-start | flex-end | center | space-between | space-around
@mixin justify-content($justify) {
  -webkit-justify-content: $justify;
  -moz-justify-content: $justify;
  -ms-justify-content: $justify;
  justify-content: $justify;
  -ms-flex-pack: $justify;
}

// Packing Flex Lines
// - applies to: multi-line flex containers
// flex-start | flex-end | center | space-between | space-around | stretch
@mixin align-items($align) {
  -webkit-align-items: $align;
  -moz-align-items: $align;
  -ms-align-items: $align;
  align-items: $align;
}


/* =============== Media Queries =============== */

@mixin media767 {
  @media only screen and (max-width: 767px) {
    @content;
  }
}

@mixin media480 {
  @media only screen and (max-width: 480px) {
    @content;
  }
}

@mixin media375 {
  @media only screen and (max-width: 375px) {
    @content;
  }
}

@mixin media991 {
  @media only screen and (max-width: 991px) {
    @content;
  }
}

@mixin media992-min {
  @media only screen and (min-width: 992px) {
    @content;
  }
}

@mixin media575 {
  @media only screen and (max-width: 575px) {
    @content;
  }
}

@mixin media991to768 {
  @media only screen and (max-width: 991px) and (min-width: 768px) {
    @content;
  }
}

@mixin media576to767 {
  @media only screen and (max-width: 767px) and (min-width: 576px) {
    @content;
  }
}

@mixin media1501-min {
  @media only screen and (min-width: 1501px) {
    @content;
  }
}

@mixin media1499to992 {
  @media only screen and (max-width: 1499px) and (min-width: 992px) {
    @content;
  }
}


@font-face {
  font-family: 'Harmonia Sans Pro Cyr';
  src: url("{{'HarmoniaSansProCyr-Bold.woff2' | file_url }}") format('woff2'),
    url("{{'HarmoniaSansProCyr-Bold.woff'  | file_url }}") format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Harmonia Sans Pro Cyr';
  src: url("{{'HarmoniaSansProCyr-Light.woff2' |  file_url }}") format('woff2'),
    url("{{'HarmoniaSansProCyr-Light.woff' | file_url }}") format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Harmonia Sans Pro Cyr';
  src: url("{{'HarmoniaSansProCyr-Regular.woff2' | file_url }}") format('woff2'),
    url("{{'HarmoniaSansProCyr-Regular.woff' | file_url }}") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'fontello';
  src: url('fontello.eot?1654258786');
  src: url('fontello.eot?1654258786#iefix') format('embedded-opentype'),
    url('fontello.woff2?v=1654258786') format('woff2'),

    url('fontello.woff?1654258786') format('woff'),
    url('fontello.ttf?1654258786') format('truetype'),
    url('fontello.svg?1654258786#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* common css start here */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Harmonia Sans Pro Cyr';
  background: #fff;
}

.container {
  max-width: 1240px;
  padding: 0 15px;
  @include media1499to992(){
    max-width: 82.722vw;
  }
}

div,
aside,
header,
footer,
nav,
ul,
li,
img,
a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  outline: none;
}



.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/* common css end here */

/* breadcumb start here */
.breadcumb {
  background: #F5F5F5;
  padding: 20px 0;
  @include media1499to992(){
    padding:1.334vw 0;
  }
  nav#uncomplicated-breadcrumbs{
    margin:0;
    padding:0;
    a{
      font-size: 16px;
      color: #212529;
      @include media1499to992(){
        font-size: 1.067vw;
      }
    }
    span{
      margin: 0 8px;
      font-size: 16px;
      @include media1499to992(){
        font-size: 1.067vw;
        margin:0 0.534vw;
      }

    }
    strong{
      font-weight: 700;
      font-size: 16px;
      color: #212529;
      @include media1499to992(){
        font-size: 1.067vw;
      }
    }
  }



}
/* breadcumb end here */

/* product details start here */
.product-details{
  padding:38px 0 54px 0;
  background:#fff;
  @include media1499to992(){
    padding:2.535vw 0 3.602vw 0;
  }
  .product-details-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    @include media991(){
      flex-direction: column;
    }
  }
  .product-details-left{
    width:60%;
    padding-right: 100px;
    @include media1499to992(){
      padding-right: 6.671vw;
    }
    @include media991(){
      width: 100%;
      padding-right: 0;
      padding-bottom: 40px;
    }
    .preloved-main{
      margin-bottom: 30px;
      @include media1499to992(){
        margin-bottom: 2.001vw;
      }
      .preloved-wrapper {
        display: flex;
        align-items: center;
        @include media480(){
          flex-direction: column;
          align-items: flex-start;
        }
        .preloved-left{
          .preloved-left-wrapper {
            display: flex;
            align-items: center;
            .left-love-img{
              img{
                max-width: 23px;
                @include media1499to992(){
                  max-width: 1.534vw;
                }
              }
            }
            .right-love-text{
              p{
                padding-left: 16px;
                font-size: 16px;
                line-height: 1;
                font-weight: 700;
                @include media1499to992(){
                  font-size: 1.067vw;
                  padding-left: 1.067vw;
                }
              }
            }
          }
        }
        .preloved-right{
          padding-left: 24px;
          @include media1499to992(){
            padding-left: 1.601vw;
          }
          @include media480(){
            padding-left: 0px;
            padding-top: 10px;
          }
          a{
            font-size: 13px;
            line-height: 1;
            color: #545454;
            position: relative;
            display: inline-block;
            font-weight: 400;
            @include media1499to992(){
              font-size: 0.867vw;
            }
            &::before{
              content: "";
              position: absolute;
              bottom: -3px;
              left: 0;
              right: 0;
              width: 100%;
              height: 1px;
              background: #a7a7a7;
              @include media1499to992(){
                bottom:-0.200vw;
              }
            }

          }
        }
      }
    }
    .product-details-main{
      .product-details-wrapper-left{
        .product-inner-wrapper{
          position: relative;
          .people-view-main{
            position: absolute;
            bottom:40px;
            left:0px;
            @include media1499to992(){
              bottom:2.668vw;
            }
            .people-view-wrapper {
              background: #000000;
              display: inline-block;
              border-radius: 50px;
              color: #ffffff;
              min-width: 216px;
              text-align: center;
              display: flex;
              align-items: center;
              justify-content: center;
              width: 216px;
              height: 35px;
              @include media1499to992(){
                height: 2.335vw;
                min-width: 14.410vw;
                width: 14.410vw;
                border-radius: 3.336vw;
              }
              .people-view-right {
                p{
                  font-size: 12px;
                  font-weight: 700;
                  padding-left: 8px;
                  @include media1499to992(){
                    font-size: 0.801vw;
                    padding-left: 0.534vw;

                  }
                }
              }
            }
          }
        }
      }
    }
    .slider.slider-for{
      .item{
        figure{
          position: relative;
          display: block;
          padding-bottom: 100%;
          width: 100%;
          img{
            position: absolute;
            max-width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            margin: auto;
            right: 0;
          }
        }
      }
    }
    .slider.slider-nav{
      margin:0 40px 0;
      @include media1499to992(){
        margin:0 2.668vw 0;
      }
      .item {
        padding:10px;
        @include media1499to992(){
          padding:0.667vw;
        }
        figure{
          position: relative;
          display: block;
          padding-bottom: 100%;
          width: 100%;
          img{
            position: absolute;
            max-width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            margin: auto;
            right: 0;
          }
        }
      }
      button.slick-prev.slick-arrow{
        position: absolute;
        left: -40px;
        z-index: 99;
        top: 50%;
        transform: translate(0px, -50%);
        background: transparent;
        border:none;
        @include media1499to992(){
          left:-2.668vw;
        }
        i{
          font-size:20px;
          @include media1499to992(){
            font-size: 1.334vw;
          }
        }
      }
      button.slick-next.slick-arrow {
        position: absolute;
        right: -40px;
        top: 50%;
        transform: translate(0px, -50%);
        background: transparent;
        border:none;
        @include media1499to992(){
          right: -2.668vw;
        }
        i{
          font-size:20px;
          @include media1499to992(){
            font-size: 1.334vw;
          }
        }
      }
    }
  }
  .product-details-right{
    width:40%;
    @include media991(){
      width: 100%;
    }
    .products-options{
      padding: 20px 0 0 0;
      @include media1499to992(){
        font-size: 1.334vw;
      }
      @include media767(){
        padding:15px 0 0 0;
      }
      h3{
        font-size: 22px;
        font-weight: 700;
        color: #000;
        @include media1499to992(){
          font-size: 1.468vw;
        }
        @include media767(){
          font-size: 18px;
        }

      }
      .colors-wrapper{
        display: flex;
        align-items: center;
        justify-content:left;
        margin: 0 -10px;
        padding:25px 0 0 0;
        @include media1499to992(){
          margin:0 -0.667vw;
          padding:1.668vw 0 0 0;
        }
        @include media767(){
          padding:15px 0 0 0;
        }
        @include media480(){
          flex-direction: column;
        }
        .sizing-wrapper {
          display: flex;
          align-items: center;
          height:12px;
          margin-bottom:10px;
          justify-content: space-between;
          @include media1499to992(){
            margin-bottom:0.667vw;
          }

        }
        .sizing-left{
          label{
            margin-bottom:0px !important;
          }
        }
        .sizing-right{
          line-height:1;
          a{
            position: relative;
            display: inline-block;
            font-size: 13px;
            line-height: 1;
            color: #545454;
            &::after{
              content: "";
              position: absolute;
              bottom: -3px;
              left: 0;
              right: 0;
              width: 100%;
              height: 1px;
              background: #a7a7a7;
            }
          }
        }
        .type{
          width: 50%;
          padding:0  10px;
        }
        .colors-left{
          width: 50%;
          padding:0  10px;
          @include media1499to992(){
            padding:0 0.667vw;
          }
          @include media480(){
            width: 100%;
            margin-bottom:10px;
          }
        }
        .colors-right{
          width: 50%;
          padding:0 10px;
          @include media1499to992(){
            padding:0 0.667vw;
          }
          @include media480(){
            width: 100%;
          }
        }
        label{
          font-size: 14px;
          line-height: 1;
          font-weight: 700;
          margin-bottom: 10px;
          display: block;
          @include media1499to992(){
            font-size: 0.934vw;
            margin-bottom: 0.667vw;
          }
        }
        select{
          background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
          background-repeat: no-repeat;
          background-position: right 15px center;
          width: 100%;
          padding: 0 20px;
          font-size: 16px;
          background-color: #f5f5f5;
          border:none;
          outline: none;
          height: 50px;
          @include media1499to992(){
            background-position: right 1.001vw center;
            padding:0 1.334vw;
            font-size: 1.067vw;
            height: 3.336vw;
          }
        }
      }

    }
    .product-title{
      h2{
        font-size: 32px;
        line-height: 1.3;
        color:#000;
        font-weight:700;
        margin-bottom: 20px;
        @include media1499to992(){
          font-size: 2.135vw;
          margin-bottom: 1.334vw;
        }
        @include media767(){
          font-size:22px;
          margin-bottom:15px;
        }
      }
    }
    .product-rating{
      margin-bottom: 20px;
      @include media1499to992(){
        margin-bottom: 1.334vw;
      }
      .product-rating-wrapper{
        display: flex;
        align-items: center;
        @include media480(){
          flex-direction: column;
          align-items: flex-start;
        }
        .product-rating-left{
          @include media767(){
            margin-bottom: 12px;
          }
          .rating-wrapper {
            display: flex;
            align-items: center;
            .rating-left{
              ul{
                li{
                  margin-right: 3px;
                  font-size: 0px;
                  @include media1499to992(){
                    margin-right: 0.200vw;
                  }
                  i{
                    font-size: 13px;
                    color: #F3AD3D;
                    @include media1499to992(){
                      font-size: 0.867vw;
                    }
                  }
                }
              }
            }
            .rating-right{
              padding-left: 10px;
              @include media1499to992(){
                padding-left: 0.667vw;

              }
              p{
                font-size: 14px;
                line-height: 1;
                color: #000;
                margin-bottom:0px;
                font-weight: 400;
                @include media1499to992(){
                  font-size: 0.934vw;

                }
                a{
                  position: relative;
                  display: inline-block;
                  color: #000;
                  &::before{
                    content: "";
                    position: absolute;
                    bottom: -3px;
                    left: 0;
                    right: 0;
                    width: 100%;
                    height: 1px;
                    background: #000;
                    @include media1499to992(){
                      bottom:-0.200vw;
                    }
                  }
                }
              }
            }
          }
        }
        .product-rating-right{
          padding-left: 20px;
          @include media1499to992(){
            padding-left: 1.334vw;
          }
          @include media480(){
            padding-left: 0px;
          }
          .stock_wrapper {
            position: relative;
            .circle{
              width: 20px;
              height: 20px;
              box-shadow: 0 0 1px 1px #0000001a;
              border: 4px solid #ebebeb;
              background-color: #6fbd22;
              border-radius: 100%;
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%);
              -webkit-animation: pulse 1.25s infinite cubic-bezier(.66,0,0,1);
              -moz-animation: pulse 1.25s infinite cubic-bezier(.66,0,0,1);
              -ms-animation: pulse 1.25s infinite cubic-bezier(0.66,0,0,1);
              animation: pulse 1.25s infinite cubic-bezier(.66,0,0,1);    
              @include media1499to992(){
                width: 1.334vw;
                height: 1.334vw;
                border: 0.267vw solid #ebebeb;
              }
            }
            .stock_text_wrapper {
              padding-left: 35px;
              @include media1499to992(){
                padding-left: 2.335vw;
              }
              p{
                font-weight: 700;
                color: #67AC5B;
                font-size: 14px;
                @include media1499to992(){
                  font-size: 0.934vw;
                }
              }
            }
          }
        }
      }
    }
    .product-details-desc{
      margin-bottom: 20px;
      @include media1499to992(){
        margin-bottom: 1.334vw;
      }
      p{
        font-size: 16px;
        line-height: 1.4;
        color: #000;
        font-weight: 500;
        @include media1499to992(){
          font-size: 1.067vw;

        }
        @include media767(){
          font-size: 14px;
        }
        a{
          display: block;
          font-size: 13px;
          color: #000;
          text-decoration: underline;
          opacity: 0.8;
          line-height: 1.2;
          @include media1499to992(){
            font-size: 0.867vw;
          }
        }
      }
    }
    .other-people-wrapper{
      display: flex;
      align-items: center;
      // @include media767(){
        //     justify-content: center;
        // }
      .other-people-right{
        p{
          font-size:14px;
          padding-left: 12px;
          line-height:1.2;
          color:#D83D3D;
          font-weight:400;
          @include media1499to992(){
            font-size: 0.934vw;
            padding-left: 0.801vw;
          }
          span{
            font-weight: 700;
          }
        }
      }
    }
    .rent-froms {
      background: #f5f5f5;
      margin-top: 20px;
      padding: 30px;
      @include media1499to992(){
        margin-top: 1.334vw;
        padding:2.001vw;
      }
      @include media767(){
        padding:15px;
        margin-top: 15px;
      }
      .rent-from-title-wrapper{
        display: flex;
        align-items: center;
        padding-bottom: 17px;
        @include media1499to992(){
          padding-bottom:1.134vw;
        }
        .rent-from-right{
          padding-left: 8px;
          @include media1499to992(){
            padding-left: 0.534vw;
          }
          h5{
            font-size: 22px;
            line-height: 1.2;
            color: #000;
            font-weight: 400;
            @include media1499to992(){
              font-size: 1.468vw;
            }
            @include media767(){
              font-size: 17px;
            }
            p{
              font-size: 14px;
              display: inline-block;
              font-weight: 400;
              @include media1499to992(){
                font-size: 0.934vw;
              }
              span{
                font-weight: 700;
                font-size: 22px;
                @include media1499to992(){
                  font-size: 1.468vw;
                }
                @include media767(){
                  font-size: 17px;
                }
              }
            }
          }
        }
      }

      .rental-wrapper{
        margin: 0 -9px;
        display: flex;
        align-items: center;
        justify-content: center;
        @include media1499to992(){
          margin:0 -0.600vw;
        }
        @include media480(){
          flex-direction: column;
        }
        .rental-left{
          width: 60%;
          padding: 0 9px;
          @include media1499to992(){
            padding:0 0.600vw;
          }
          @include media480(){
            width: 100%;
            margin-bottom:10px;
          }
        }
        .rental-right{
          width: 40%;
          padding: 0 9px;
          @include media1499to992(){
            padding:0 0.600vw;
          }
          @include media480(){
            width: 100%;
          }
        }
        label{
          font-size: 14px;
          line-height: 1;
          font-weight: 700;
          margin-bottom: 10px;
          display: block;
          @include media1499to992(){
            font-size: 0.934vw;
            margin-bottom: 0.667vw;
          }
        }
        select{
          background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
          background-repeat: no-repeat;
          background-position: right 15px center;
          width: 100%;
          padding: 0 20px;
          font-size: 16px;
          border:none;
          outline: none;
          height: 50px;
          @include media1499to992(){
            background-position: right 1.001vw center;
            padding: 0 1.334vw;
            height: 3.336vw;
            font-size: 1.067vw;
          }
        }
      }
      .add-to-cart-btn{
        padding:20px 0 0 0;
        @include media1499to992(){
          padding:1.334vw 0 0 0;
        }
        a{
          text-align: center;
          display: block;
          background: #67AC5B;
          color: #ffffff;
          height: 60px;
          line-height: 60px;
          font-size: 20px;
          font-weight: 700;
          border-radius: 5px;
          @include media1499to992(){
            height: 4.003vw;
            line-height: 4.003vw;
            font-size: 1.334vw;
            border-radius: 0.334vw;
          }
          img{
            vertical-align: middle;
            position: relative;
            top: -3px;
            margin-right: 17px;
            max-width: 20px;
            @include media1499to992(){
              top: -0.200vw;
              margin-right: 1.134vw;
              max-width: 1.334vw;
            }
          }
        }
      }
      .secure-ssl-main{
        .secure-ssl-wrapper{
          display: flex;
          align-items: center;

          justify-content: space-between;
          padding:16px 0 0 0;

          @include media1499to992(){
            padding:1.067vw 0 0 0;
          }
          @include media480(){
            flex-direction:column;
          }
          .secure-ssl-left{
            .secure-ssl-left-wrapper{
              display:flex;
              align-items:center;
              font-size:0px;
              .secure-lock-text{
                p{
                  font-size:14px;
                  font-weight:700;
                  padding-left:8px;
                  color:#444444;
                  line-height:1;
                  @include media1499to992(){
                    font-size:0.934vw;
                    padding-left:0.534vw;
                  }
                }
              }
            }
          }
          .secure-ssl-right{
            @include media480(){
              padding-top:10px;
            }
            img{
              max-width:200px;
              image-rendering: -webkit-optimize-contrast;
              @include media1499to992(){
                max-width:13.342vw;
              }
              @include media767(){
                max-width:300px;
              }
            }
          }
        }
      }
      .product-details-faq{
        padding:32px 0 0 0;
        @include media1499to992(){
          padding:2.135vw 0 0 0;
        }
        @include media767(){
          padding:20px 0 0 0;
        }
        ul{
          li{
            position: relative;
            margin-bottom: 14px;
            padding-left: 25px;
            @include media1499to992(){
              margin-bottom: 0.934vw;
              padding-left: 1.668vw;
            }
            @include media767(){
              margin-bottom:12px;
            }
            .product-toggle{
              font-size: 16px;
              font-weight: 700;
              color: #000;
              @include media1499to992(){
                font-size: 1.067vw;
              }
              @include media767(){
                font-size: 14px;
              }
              .plus_minus{
                position: absolute;
                top: 12px;
                left: 0;
                transform: translate(0px, -50%);
                @include media1499to992(){
                  top:0.801vw;
                }
                @include media767(){
                  top:10px;
                }
                &::before{
                  content: "";
                  background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
                  width: 12px;
                  height: 7px;
                  background-repeat: no-repeat;
                  background-size: cover;
                  position: absolute;
                  top: -3px;
                  @include media1499to992(){
                    top: 0.133vw;
                    width: 0.801vw;
                  height: 0.467vw;
                  }

                }
              }
            }

            .product-inner{
              display: none;
              padding-top:15px;
              @include media1499to992(){
                padding-top: 1.001vw;
              }
              ul.poduct-descs{
                li{
                  position: relative;
                  background-image: url("/cdn/shop/files/cw-checkmark-circle.png?v=1654066860");
                  background-repeat: no-repeat;
/*                   background-position:left center; */
                  background-position:0px 7px;

                  // &::before{
                    //     background-image: url("/cdn/shop/files/cw-checkmark-circle.png?v=1654066860");
                    //     background-repeat: no-repeat;
                    //     background-size: cover;
                    //     width: 14px;
                    //     height: 14px;
                    //     content:"";
                    //     display: inline-block;
                    //     top:0px;
                    //     left:0px;
                    //     right: 0px;

                    // }
                  @include media1499to992(){
                    padding-left: 2.668vw;
                    background-position:0px 0.467vw;
                    
                  }
                  @include media767(){
                    font-size: 14px;
                  }
                  span{
                    color: #67AC5B;
                    font-weight: 700;
                  }
                  a{
                    font-size: 13px;
                    color: #545454;
                    position: relative;
                    margin-left: 8px;
                    @include media1499to992(){
                      margin-left: 0.534vw;
                    }
                    &::before{
                      content: "";
                      position: absolute;
                      bottom: -3px;
                      left: 0;
                      right: 0;
                      width: 100%;
                      height: 1px;
                      background: #545454;
                      @include media1499to992(){
                        bottom:-0.200vw;
                      }
                    }
                  }
                }
              }
            }
            &:last-child{
              margin-bottom: 0px;
            }
          }


          li.active{
            .plus_minus{
              &::before{
                transform: rotate(180deg);
              }
            }
          }
        }

      }
      .accordion{
        padding:32px 0 0 0;
        @include media1499to992(){
          padding:2.135vw 0 0 0;
        }
        .accordion-item{
          background:transparent;
          margin-bottom:12px;
          border:none;
          @include media1499to992(){
            margin-bottom:0.801vw;
          }
          button{
            border:none;
            position:relative;
            outline:none;
            width:100%;
            text-align:left;
            font-size: 16px;
            padding-left:25px;
            font-weight: 700;
            color: #000;
            background:transparent;
            @include media1499to992(){
              font-size: 1.067vw;
              padding-left:1.668vw;
            }
            &::before{
              content: "";
              width:14px;
              height:10px;
              background-size:12px;
              transform:rotate(180deg);

              left: 0px;
              top: 6px;
              position: absolute;
              background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
              background-repeat:no-repeat;
              @include media1499to992(){
                width:0.934vw;
                height:0.667vw;
                top:0.400vw;
                background-size:0.801vw;
              }

            }
          }
          button.faq-head.collapsed{
            &::before{
              /*         	transform: rotate(180deg); */
              top: 12px !important;
              transform: rotate(0deg);
              @include media1499to992(){
                top: 0.801vw !important
              }
            }
          }
          .accordion-body{
            padding:0;
            ul{
              padding-left:25px;
              padding-top:10px;
              @include media1499to992(){
                padding-left:1.668vw;
                padding-top:0.667vw;
              }
              li{
                background-image: url("/cdn/shop/files/cw-checkmark-circle.png?v=1654066860");
                background-repeat: no-repeat;
                background-position: left center;
                font-size:16px;
                margin-bottom:8px;
                padding-left:30px;
                @include media1499to992(){
                  font-size:1.067vw;
                  margin-bottom:0.534vw;
                  padding-left:2.001vw;
                  background-size:0.801vw;
                }
                span{
                  color: #67AC5B;
                  font-weight: 700;
                }
                &:last-child{
                  margin-bottom:0px;
                }
              }
            }
          }
          &:last-child{
            margin-bottom:0px;
          }
        }
      }
    }
    .pre-loved-product{
      margin-top:28px;
      background: #f5f5f5;
      padding:33px 36px;
      @include media1499to992(){
        margin-top: 1.868vw;
        padding:2.201vw 2.402vw;
      }
      @include media767(){
        margin-top: 15px;
        padding:15px;
      }
      .pre-loved-product-title-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 22px;
        @include media1499to992(){
          margin-bottom: 1.468vw;
        }
        @include media767(){
          margin-bottom: 12px;
        }
        .pre-loved-left{
          img{
            max-width: 23px;
            @include media1499to992(){
              max-width: 1.534vw;
            }
          }
        }
        .pre-loved-right{
          padding-left: 18px;
          @include media1499to992(){
            padding-left: 1.201vw;
          }
          h5{
            font-size: 16px;
            line-height: 1.2;
            color: #D83D3D;
            font-weight: 700;
            @include media1499to992(){
              font-size: 1.067vw;
            }
            @include media767(){
              font-size: 14px;
            }
          }
        }
      }
      .pre-loved-desc{
        p{
          font-size: 16px;
          line-height: 1.3;
          color: #000;
          font-weight: 400;
          @include media1499to992(){
            font-size: 1.067vw;
          }
          @include media767(){
            font-size: 14px;
          }
          a{
            position: relative;
            color: #a7a7a7;
            font-size: 13px;
            @include media1499to992(){
              font-size: 0.867vw;
            }
            &::before{
              content: "";
              position: absolute;
              bottom: -3px;
              left: 0;
              right: 0;
              width: 100%;
              height: 1px;
              background: #a7a7a7;
              @include media1499to992(){
                bottom:-0.200vw;
              }
            }
          }
        }
      }

    }
    .product-testimonial {
      margin-top: 30px;
      background: #f5f5f5;
      padding:32px 30px;
      @include media1499to992(){
        margin-top: 2.001vw;
        padding:2.135vw 2.001vw;
      }
      @include media767(){
        padding:15px;
        margin-top: 15px;
      }
      .author-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        .author-left{
          .author-image-wrapper {
            display: flex;
            align-items: center;
            .author-image-left{
              width: 52px;
              height: 52px;
              object-fit: cover;
              border-radius: 100%;
              @include media1499to992(){
                width: 3.469vw;
                height: 3.469vw;
              }
              img{
                width: 52px;
                height: 52px;
                object-fit: cover;
                border-radius: 100%;
                @include media1499to992(){
                  width: 3.469vw;
                  height: 3.469vw;
                }
              }
            }
            .author-image-right {
              padding-left: 20px;
              @include media1499to992(){
                padding-left: 1.334vw;
              }
              h4{
                font-size: 18px;
                line-height: 1.2;
                color: #000;
                font-weight: 400;
                margin-bottom: 4px;
                @include media1499to992(){
                  font-size: 1.201vw;
                  margin-bottom: 0.267vw;
                }
                @include media767(){
                  font-size: 16px;
                }
              }
              ul{
                li{
                  margin-right: 3px;
                  @include media1499to992(){
                    margin-right: 0.200vw;
                  }
                  i{
                    color: #F3AD3D;
                    font-size:14px;
                    @include media1499to992(){
                      font-size: 0.934vw;
                    }
                    @include media480(){
                      font-size: 12px;
                    }
                  }
                }
              }
            }
          }
        }
        .author-right{
          p{
            font-size: 13px;
            color: #545454;
            opacity: 0.5;
            @include media1499to992(){
              font-size: 0.867vw;
            }
            @include media480(){
              font-size: 12px;
            }
          }
        }
      }
      .testimonial-desc {
        p {
          font-size: 16px;
          line-height: 1.3;
          color: #000;
          font-weight: 400;
          padding: 18px 0 20px 0;
          @include media1499to992(){

            font-size: 1.067vw;
            padding:1.201vw 0 1.334vw 0;
          }
          @include media767(){
            font-size: 14px;
          }
        }
      }
      ul.slick-dots{
        display: flex;
        align-items: center;
        padding: 10px 0 10px 0;
        justify-content: center;

        @include media767(){
          padding:10px 0 20px 0;
        }
        li{
          margin: 0 6px;


          button{
            font-size: 0px;
            // width: 12px;
            // height: 12px;
            padding:5px;
            border: none;
            outline: none;
            background: #767676;
            border-radius: 100%;

          }
        }
        li.slick-active{
          button{
            // width:16px;
            // height: 16px;
            padding:7px;

          }
        }
      }
    }
  }
}
/* product details end here */

/* about start here */
.about {
  padding: 100px 0;
  // background: #f5f5f5;
  background: #f5f5f5; /* Old browsers */
  background: -moz-linear-gradient(left,  #f5f5f5 0%, #f5f5f5 83%, #ffffff 83%, #ffffff 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #f5f5f5 0%,#f5f5f5 83%,#ffffff 83%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #f5f5f5 0%,#f5f5f5 83%,#ffffff 83%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  @include media767(){
    background: linear-gradient(to right, #f5f5f5 0%, #f5f5f5 83%, #f5f5f5 83%, #f5f5f5 100%);
    padding:50px 0;
  }
  @include media991to768(){
    padding:60px 0;
  }
  @include media1501-min(){
    background: -moz-linear-gradient(left,  #f5f5f5 0%, #f5f5f5 70%, #ffffff 70%, #ffffff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #f5f5f5 0%,#f5f5f5 70%,#ffffff 70%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #f5f5f5 0%,#f5f5f5 70%,#ffffff 70%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */    
  }
  @include media1499to992(){
    padding:6.671vw 0;
  }
  .about-wrapper{
    display: flex;
    flex-direction: row;
    @include media767(){
      flex-direction: column-reverse;
    }
    .about-left{
      width: 50%;
      padding-right:120px;
      @include media1499to992(){
        padding-right: 8.005vw;
      }
      @include media991to768(){
        padding-right: 30px;
      }
      @include media767(){
        width: 100%;
        padding-top:50px;
        padding-right: 0px;
      }
      .about-column{
        padding-bottom: 12px;
        @include media1499to992(){
          padding-bottom: 0.801vw;
        }
        h2{
          font-size: 32px;
          line-height: 1.2;
          color: #000;
          font-weight: 700;
          margin-bottom: 25px;
          @include media1499to992(){
            font-size: 2.135vw;
            margin-bottom: 1.668vw;
          }
          @include media991to768(){
            font-size: 25px;
            margin-bottom: 20px;
          }
          @include media767(){
            font-size: 22px;
            margin-bottom: 15px;
          }
        }
        p{
          font-size: 16px;
          line-height: 1.3;
          color: #000;
          font-weight: 500;
          margin-bottom: 20px;
          @include media1499to992(){
            font-size: 1.067vw;
            margin-bottom: 1.334vw;

          }
          @include media991to768(){
            font-size: 14px;
            margin-bottom: 10px;
          }
          @include media767(){
            font-size: 14px;
            margin-bottom: 10px;
          }
        }
      }
      .about-dimension{
        h3{
          font-size: 22px;
          line-height: 1.2;
          color: #000;
          font-weight: 700;
          margin-bottom: 20px;
          @include media1499to992(){
            font-size: 1.468vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 18px;
            margin-bottom: 15px;
          }
          @include media767(){
            font-size: 18px;
            margin-bottom: 15px;
          }
        }
        p{
          font-size: 16px;
          line-height: 1.3;
          color: #000;
          font-weight: 500;
          @include media1499to992(){
            font-size: 1.067vw;

          }
          @include media991to768(){
            font-size: 14px;
          }
          @include media767(){
            font-size: 14px;
          }
        }
      }
    }
    .about-right{
      width: 50%;
      @include media767(){
        width: 100%;
      }
      figure{
        position: relative;
        padding-bottom: 100%;
        width: 100%;
        overflow: hidden;
        @include media767(){
          padding-bottom: 100%;
        }
        img{
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top center;
        }
      }

    }
  }
}
/* about end here */

/* how it works start here */
.how-it-works{
  padding: 68px 0 80px 0;
  background:#fff;
  @include media1499to992(){
    padding: 4.536vw 0 5.337vw 0;
  }
  @include media991to768(){
    padding: 50px 0;
  }
  @include media767(){
    padding: 40px 0 20px 0;
  }
  .how-it-works-title{
    text-align: center;
    max-width: 510px;
    margin: 0 auto;
    padding-bottom: 60px;
    @include media1499to992(){
      max-width: 34.023vw;
      padding-bottom: 4.003vw;
    }
    @include media991to768(){
      padding-bottom: 40px;
      max-width: 100%;
    }
    @include media767(){
      max-width: 100%;
      padding-bottom: 30px;
    }
    p{
      font-size: 22px;
      line-height: 1.2;
      color:#000000;
      font-weight:700;
      margin-bottom: 18px;
      @include media1499to992(){
        font-size: 1.468vw;
        margin-bottom: 1.201vw;
      }
      @include media991to768(){
        font-size: 20px;
        margin-bottom: 15px;
      }
      @include media767(){
        font-size: 16px;
        margin-bottom: 15px;
      }
    }
    h2{
      font-size: 32px;
      line-height: 1;
      color: #000000;
      font-weight: 700;
      margin-bottom: 20px;
      @include media1499to992(){
        margin-bottom: 1.334vw;
        font-size: 2.135vw;
      }
      @include media991to768(){
        margin-bottom: 15px;
        font-size: 27px;
      }
      @include media767(){
        font-size: 25px;
        margin-bottom: 15px;
      }
    }
    h5{
      font-size: 22px;
      line-height: 1.2;
      color:#000000;
      font-weight:400;
      @include media1499to992(){
        font-size: 1.468vw;
      }
      @include media991to768(){
        font-size: 20px;
      }
      @include media767(){
        font-size: 18px;     
      }
    }

  }
  .how-it-column-wrapper{
    text-align: center;
    margin: 0 -10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    @include media1499to992(){
      margin: 0 -0.667vw;
    }
    @include media767(){
      flex-direction: column;
    }
    .how-it-column{
      width: 33.33%;
      padding:0 10px;
      counter-increment: my-awesome-counter;
      @include media1499to992(){
        padding:0 0.667vw;
      }
      @include media767(){
        width: 100%;
        margin-bottom: 35px;
      }
      .how-it-img{
        position: relative;
        &::before{
          content: counter(my-awesome-counter);
          position: absolute;
          width: 35px;
          height: 35px;
          line-height: 35px;
          border-radius: 100%;
          background: #000;
          left: 0px;
          right: 0;
          margin: 0 auto;
          font-size: 18px;
          font-weight: bold;
          text-align: center;
          color: #fff;
          bottom: -15px;
          z-index: 1;
          @include media1499to992(){
            width: 2.335vw;
            height: 2.335vw;
            bottom: -1.001vw;
            font-size: 1.201vw;
            line-height: 2.335vw;
          }
        }
        img{
          width: 243px;
          height: 243px;
          @include media1499to992(){
            width: 16.211vw;
            height: 16.211vw;
          }
          @include media991to768(){
            width: 200px;
            height: 200px;
          }
        }

      }
      .how-it-text{
        padding: 40px 0 0 0;
        @include media1499to992(){
          padding:2.668vw 0 0 0;
        }
        h3{
          font-size:22px;
          font-weight: 700;
          color: #000;
          margin-bottom: 20px;
          @include media1499to992(){
            font-size:1.468vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 20px;
            margin-bottom: 18px;
          }
          @include media767(){
            font-size: 18px;
            margin-bottom: 15px;
          }
        }
        p{
          font-size: 16px;
          line-height: 1.3;
          color: #000000;
          max-width: 360px;
          margin: 0 auto;
          text-align: center;
          font-weight: 400;
          @include media1499to992(){
            font-size: 1.067vw;
            max-width: 24.016vw;
          }
          @include media991to768(){
            font-size: 15px;
            max-width: 100%;
          }
          @include media767(){
            font-size: 14px;
            max-width: 100%;
          }
        }
      }
    }
  }
}
/* how it works end here */

/* why rent start here */
.why-rent{
  background:#fff;
  .why-rent-main {
    background: #f5f5f5;
    padding: 80px 10px;
    @include media1499to992(){
      padding: 5.337vw 0.667vw;
    }
    @include media991to768(){
      padding:50px 25px;
    }
    @include media767(){
      padding: 30px 10px 15px 10px;
    }
    .why-rent-wrapper {
      max-width: 1007px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;

      @include media1499to992(){
        max-width: 67.178vw;
      }
      @include media767(){
        max-width: 100%;
        flex-direction: column;
      }
      .why-rent-left{
        width: 36%;
        @include media767(){
          width: 100%;
          text-align: center;
        }
        h2{
          font-size: 32px;
          line-height: 1.2;
          color: #000;
          font-weight: 700;
          margin-bottom: 20px;
          @include media1499to992(){
            font-size: 2.135vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 25px;
            margin-bottom: 10px;
          }
          @include media767(){
            font-size: 22px;
            margin-bottom: 15px;
          }
        }
        p{
          font-size: 16px;
          line-height: 1.3;
          color: #000;
          font-weight: 500;
          @include media1499to992(){
            font-size: 1.067vw;

          }
          @include media991to768(){
            font-size: 14px;

          }
          @include media767(){
            font-size: 14px;
          }
        }
      }
      .why-rent-right{
        padding-left: 95px;
        width: 64%;
        @include media767(){
          width: 100%;
          padding-left: 0px;
          padding-top: 30px;
        }
        @include media991to768(){
          padding-left: 20px;
        }
        @include media1499to992(){
          padding-left: 6.338vw;
        }
        .why-rent-wrappers{
          margin: 0 -10px;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          flex-wrap: wrap;
          @include media1499to992(){
            margin: 0 -0.667vw;
          }
          .why-rent-column{
            padding:0 10px;
            width: 25%;
            @include media1499to992(){
              padding: 0 0.667vw;
            }
            @include media480(){
              margin-bottom: 25px;
              width: 50%;
            }
            .why-rent-text{
              p{
                font-size: 14px;
                max-width: 100px;
                margin: 0 auto;
                line-height: 1.3;
                color: #000;
                padding:5px 0 0 0;
                font-weight: 500;
                @include media1499to992(){
                  font-size: 0.934vw;
                  max-width: 6.671vw;
                  padding:0.334vw 0 0 0;
                }
                @include media767(){
                  max-width: 100%;
                  font-size: 13px;
                }
              }
            }
          }
        }
      }
    }
  }
}

/* why rent end here */

/* rent from as low start here */
.rent-from-as-low{
  padding:57px 0 70px 0;
  background:#fff;
  text-align: center;
  @include media1499to992(){
    padding:3.803vw 0 4.670vw 0;
  }
  @include media767(){
    padding:50px 0;
  }
  .rent-from-desc{
    h3{
      font-size: 22px;
      line-height: 1.3;
      color: #000;
      margin-bottom: 20px;
      font-weight: 500;
      @include media1499to992(){
        font-size: 1.468vw;
        margin-bottom: 1.334vw;
      }
      @include media767(){
        font-size: 18px;
        margin-bottom: 15px;
      }
      p{
        font-weight: 700;
        display: inline-block;
        span{
          font-weight: 500;
          font-size: 14px;
          @include media1499to992(){
            font-size: 0.934vw;
          }
        }
      }
    }
  }
  .rating-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    @include media480(){
      flex-direction: column;
    }
    .rating-left{
      ul{
        li{
          margin-right: 7px;
          @include media1499to992(){
            margin-right: 0.467vw;
          }
          i{
            font-size: 15px;
            color: #F3AD3D;
            @include media1499to992(){
              font-size: 1.001vw;
            }
          }
        }
      }
    }
    .rating-right{
      padding-left: 5px;
      @include media1499to992(){
        padding-left: 0.334vw;
      }
      @include media480(){
        padding-left: 0px;
        padding-top:7px;
      }
      p{
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #000;
        @include media1499to992(){
          font-size: 0.934vw;
        }
        a{
          color: #000;
          position: relative;
          display: inline-block;
          &::before{
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            width: 100%;
            height: 1px;
            background: #000;
            @include media1499to992(){
              bottom: -0.200vw;
            }
          }
        }
      }
    }
  }
  .get-yours-btn{
    padding:20px 0;
    @include media1499to992(){
      padding: 1.334vw 0;
    }
    @include media767(){
      padding: 15px 0;
    }
    a{
      display: inline-block;
      padding: 25px 10px;
      background: #67AC5B;
      color: #ffffff;
      min-width: 324px;
      border-radius: 5px;
      font-size: 20px;
      font-weight: 700;
      @include media1499to992(){
        padding: 1.668vw 0.667vw;
        min-width: 21.614vw;
        border-radius: 0.334vw;
        font-size: 1.334vw;
      }
      @include media991to768(){
        padding:22px 10px;
        min-width: 300px;
      }
      @include media767(){
        padding: 22px 10px;
        font-size: 18px;
        min-width: 280px;
      }
      img{
        margin-left: 12px;
        vertical-align: middle;
        position: relative;
        top:-3px;
        max-width: 14px;
        @include media1499to992(){
          top:-0.200vw;
          margin-left: 0.801vw;
          max-width: 0.934vw;
        }
        @include media767(){
          top: -1px;
        }
      }
    }
    .payment-icon {
      img {
      max-width: 300px;
        @include media1499to992(){
        max-width:20.013vw;
      }
    }
    }
  }
  .payment-icon{
    img{
      max-width:300px;
      @include media1499to992(){
        max-width:20.013vw;
      }
    }
  }
}

/* rent from as low end here */

/* dont just take title start here */
.dont-just-take-title{
  background:#fff;
  overflow: hidden;
  .dont-just-wrapper{
    padding:58px 0 70px 0;
    background: #F5F5F5;
    @include media1499to992(){
      padding:3.869vw 0 4.670vw 0;
    }
    @include media767(){
      padding:50px 0;
    }
    .dont-just-title{
      text-align: center;
      margin-bottom: 45px;
      @include media1499to992(){
        margin-bottom: 3.002vw;
      }
      @include media767(){
        margin-bottom: 30px;
      }
      h2{
        font-size: 32px;
        line-height: 1;
        color: #000000;
        font-weight: 700;
        margin-bottom: 20px;
        @include media1499to992(){
          font-size: 2.135vw;
          margin-bottom: 1.334vw;
        }
        @include media767(){
          font-size: 22px;
        }

      }
      .rating-wrapper{
        display: flex;
        align-items: center;
        justify-content: center;


        @include media480(){
          flex-direction: column;
        }
        .rating-left{
          ul{
            li{
              margin-right: 7px;
              @include media1499to992(){
                margin-right: 0.467vw;
              }
              i{
                font-size: 15px;
                color: #F3AD3D;
                @include media1499to992(){
                  font-size: 1.001vw;
                }
                @include media991to768(){
                  font-size: 13px;
                }
                @include media767(){
                  font-size: 13px;
                }
              }
            }
          }
        }
        .rating-right{
          padding-left: 5px;
          @include media1499to992(){
            padding-left: 0.334vw;
          }
          @include media480(){
            padding-left: 0px;
            padding-top:7px;
          }
          p{
            font-size: 14px;
            font-weight: 400;
            line-height: 1;
            color: #000;
            margin:0;
            @include media1499to992(){
              font-size: 0.934vw;
            }
            @include media991to768(){
              font-size: 13px;
            }
            @include media767(){
              font-size: 13px;
            }
            a{
              color: #000;
              position: relative;
              display: inline-block;
              &::before{
                content: "";
                position: absolute;
                bottom: -3px;
                left: 0;
                right: 0;
                width: 100%;
                height: 1px;
                background: #000;
                @include media1499to992(){
                  bottom: -0.200vw;
                }
              }
            }
          }
        }
      }
    }
    .dont-just-bottom{
      .dont-just-bottom-wrapper{
        max-width: 740px;
        margin: 0 auto;
        @include media1499to992(){
          max-width: 49.032vw;
        }
        @include media991to768(){
          max-width: 90%;
        }
        @include media767(){
          max-width: 95%;
        }
        .dont-just-column {
          background: #ffffff;
          padding: 33px 23px 40px 36px;

          margin: 0 auto;
          @include media1499to992(){
            padding: 2.201vw 1.534vw 2.668vw 2.402vw;

          }
          @include media767(){
            padding:20px;
          }
          .author-wrapper {
            display: flex;
            justify-content: space-between;
            .author-image-wrapper {
              display: flex;
              align-items: center;
              .author-image-left{
                width: 52px;
                height: 52px;
                object-fit: cover;
                border-radius: 100%;
                @include media1499to992(){
                  width:3.469vw;
                  height: 3.469vw;
                }
                img{
                  width: 52px;
                  height: 52px;   
                  object-fit: cover;
                  border-radius: 100%;
                  @include media1499to992(){
                    width: 3.469vw;
                    height: 3.469vw;
                  }
                }
              }
              .author-image-right{
                padding-left: 22px;
                @include media1499to992(){
                  padding-left: 1.468vw;
                }
                @include media767(){
                  padding-left: 10px;
                }
                h4{
                  font-size: 18px;
                  margin-bottom: 4px;
                  font-weight: 400;
                  @include media1499to992(){
                    font-size: 1.201vw;
                    margin-bottom: 0.267vw;
                  }
                  @include media767(){
                    font-size: 14px;
                  }
                }
                ul{
                  li{
                    margin-right: 3px;
                    @include media1499to992(){
                      margin-right: 0.200vw;
                    }
                    @include media767(){
                      margin-right: 2px;
                    }
                    i{
                      color: #F3AD3D;
                      font-size: 13px;
                      @include media1499to992(){
                        font-size: 0.867vw;
                      }
                      @include media767(){
                        font-size: 11px;
                      }
                    }
                  }
                }
              }
            }   
            .author-right{
              p{
                font-size: 13px;
                line-height: 1;
                color: #545454;
                font-weight: 400;
                opacity: 0.5;
                @include media1499to992(){
                  font-size: 0.867vw;
                }
                @include media767(){
                  font-size: 11px;
                  padding: 5px 0 0 0;
                }
              }
            }
          }
          .testimonial-desc{
            margin: 22px 0 0 0;
            @include media1499to992(){
              margin: 1.468vw 0 0 0;
            }
            p{
              font-size: 16px;
              line-height: 1.3;
              color: #000;
              font-weight: 500;
              @include media1499to992(){
                font-size: 1.067vw;
              }
              @include media767(){
                font-size: 14px;
              }
            }
          }
        }
      }
      ul.slick-dots{
        display: flex;
        align-items: center;
        padding: 60px 0 0 0;
        justify-content: center;
        @include media1499to992(){
          padding: 4.003vw 0 0 0 ;
        }
        @include media767(){
          padding:30px 0 0 0;
        }
        li{
          margin: 0 6px;
          @include media1499to992(){
            margin: 0 0.267vw;
          }
          button{
            font-size: 0px;
            // width: 12px;
            // height: 12px;
            padding:5px;
            border: none;
            outline: none;
            background: #767676;
            border-radius: 100%;
            @include media1499to992(){
              padding:0.400vw;
            }
          }
        }
        li.slick-active{
          button{
            // width:16px;
            // height: 16px;
            padding:7px;

          }
        }
      }
      button.slick-prev.slick-arrow{
        position: absolute;
        top: 40%;
        transform: translate(0px, -50%);
        border: none;
        outline: none;
        background: transparent;
        left: -80px;
        @include media1499to992(){
          left: -5.337vw;
        }
        i{
          font-size: 20px;
          @include media1499to992(){
            font-size: 1.334vw;
          }
        }
      }
      button.slick-next.slick-arrow {
        position: absolute;
        top: 40%;
        transform: translate(0px, -50%);
        right: -80px;
        background: transparent;
        border: none;
        outline: none;
        @include media1499to992(){
          right: -5.337vw;
        }
        i{
          font-size: 20px;
          @include media1499to992(){
            font-size: 1.334vw;
          }
        }
      }
    }
  }
}

/* dont just take title end here */

/* Faq start here */
.faq{
  padding:90px 0;
  background:#fff;
  @include media1499to992(){
    padding:4.670vw 0;
  }
  @include media767(){
    padding:50px 0;
  }
  .faqs_wrappers{
    display: flex;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    justify-content: center;
    @include media767(){
      max-width: 100%;
      flex-direction: column;
    }
    .faq-left{
      width: 54%;
      padding-right: 70px;
      @include media1499to992(){
        padding-right: 4.670vw;
      }
      @include media991to768(){
        width: 50%;
        padding-right: 30px;
      }
      @include media767(){
        width: 100%;
        padding-right: 0px;
        padding-bottom: 20px;
        text-align: center;
      }
      h2{
        font-size: 32px;
        line-height: 1.2;
        color: #000;
        font-weight: 700;
        margin: 20px 0;
        @include media1499to992(){
          font-size: 2.135vw;
          margin: 1.334vw 0;
        }
        @include media991to768(){
          font-size: 26px;
        }
        @include media767(){
          font-size: 22px;
          margin: 15px 0;
        }
        span{
          display: block;
          @include media767(){
            display: inline-block;
          }
        }
      }
      h5{
        font-size: 22px;
        line-height: 1.2;
        color: #000;
        font-weight: 500;
        @include media1499to992(){
          font-size: 1.468vw;
        }
        @include media991to768(){
          font-size: 20px;
        }
        @include media767(){
          font-size: 18px;
        }
      }
    }
    .faqs-right{
      width: 46%;
      @include media991to768(){
        width: 50%;
      }
      @include media767(){
        width: 100%;
      }
      .faq_wrapper{
        ul{
          li{
            margin-bottom: 30px;
            padding-left: 33px;
            position: relative;
            @include media1499to992(){
              margin-bottom: 2.001vw;
              padding-left: 2.201vw;
            }
            @include media767(){
              margin-bottom: 18px;
              padding-left: 25px;
            }
            .plus_minus{
              position: absolute;
              top: 8px;
              left: 0;
              transform: translate(0px, -50%);
              @include media991to768(){
                top:10px;
              }
              &::before{
                content: "";
                background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
                width: 9px;
                height: 5px;
                background-repeat: no-repeat;
                background-size: cover;
                position: absolute;
                top:0px;
                // @include media1499to992(){
                  //     width: 0.600vw;
                  //     height: 0.334vw;
                  //     top:0.534vw;
                  // }

              }


            }
            a.toggle{
              font-size: 16px;
              line-height: 1.3;
              color: #000;


              font-weight: 700;
              @include media1499to992(){
                font-size: 1.067vw;

              }
              @include media991to768(){
                font-size: 15px;
              }
              @include media767(){
                font-size: 14px;
              }
            }
            .inner{
              overflow: hidden;
              display: none;
              padding-right: 0px;
              font-size: 16px;

              line-height: 1.4;
              color: #000;
              font-weight: 500;
              padding-top: 15px;
              @include media1499to992(){
                font-size: 1.067vw;

                padding-top: 1.001vw;
              }
              @include media991to768(){
                font-size: 15px;
              }
              @include media767(){
                font-size: 14px;
                padding-top: 10px;
              }
            }
            &:last-child{
              margin-bottom: 0px;
            }
          }
          li.active{
            .plus_minus{
              &::before{
                transform: rotate(180deg);
              }
            }
          }
        }
      }
      .accordion{

        .accordion-item{
          background:transparent;
          margin-bottom:20px;
          border:none;
          @include media1499to992(){
            margin-bottom:1.334vw;
          }
          button{
            border:none;
            position:relative;
            outline:none;
            width:100%;
            text-align:left;
            font-size: 16px;
            padding-left:34px;
            font-weight: 700;
            color: #000;
            background:transparent;
            @include media1499to992(){
              font-size: 1.067vw;
              padding-left:2.268vw;
            }
            &::before{
              content: "";
              width:14px;
              height:10px;
              background-size:10px;
              transform:rotate(180deg);

              left: -4px;
              top: 6px;
              position: absolute;
              background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
              background-repeat:no-repeat;
              @include media1499to992(){
                width:0.934vw;
                height:0.667vw;
                top:0.400vw;
                background-size:0.667vw;
              }

            }
          }
          button.faq-head.collapsed{
            &::before{
              /*         	transform: rotate(180deg); */
              top: 12px !important;
              transform: rotate(0deg);
              left:0px;
              @include media1499to992(){
                top: 0.801vw !important
              }
            }
          }
          .accordion-body{
            padding:0 0 0 33px;
            font-size:16px;
            @include media1499to992(){
              padding:0 0 0 2.201vw;
              font-size:1.067vw;
            }
            p{
              font-size:16px;
              line-height:1.3;
              color:#000;
              padding-left:33px;
              padding-top:10px;
              @include media1499to992(){
                padding-left:2.201vw;
                font-size:1.067vw;
                padding-top:0.667vw;

              }
            }
          }
          &:last-child{
            margin-bottom:0px;
          }
        }
      }
    }
  }
  .faq-button{
    text-align:center;
    padding:80px 0 0 0;
    @include media1499to992(){
    	padding:5.337vw 0 0 0;
    }
    @include media767(){
    	padding:50px 0 0 0;
    }
    a{
      display: inline-block;
      padding: 25px 10px;
      background: #67AC5B;
      color: #fff;
      min-width: 324px;
      border-radius: 5px;
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      @include media1499to992(){
      padding: 1.668vw 0.667vw;
        min-width: 21.614vw;
      border-radius: 0.334vw;
      font-size: 1.334vw;	
      }
      @include media767(){
      	    padding: 22px 10px;
    font-size: 18px;
    min-width: 280px;
      }
      img{
        margin-left: 12px;
        vertical-align: middle;
        position: relative;
        top: -3px;
        max-width: 14px;
        @include media1499to992(){
        margin-left: 0.801vw;
          top: -0.200vw;
        max-width: 0.934vw;
        }
        @include media767(){
        	top:-1px;
        }
      }
    }
  }

}
/* Faq end here */

/* complete look start here */
.complete-look{
  background: #F5F5F5;
  padding:55px 0;
  @include media1499to992(){
    padding:3.669vw 0;
  }
  .complete-look-title{
    margin-bottom: 50px;
    @include media1499to992(){
      margin-bottom: 1.334vw;
    }
    h2{
      font-size: 32px;
      line-height: 1.3;
      color: #000;
      font-weight: 700;
      text-align: center;
      @include media1499to992(){
        font-size: 2.135vw;
      }
    }
  }
  .complete-looks-wrapper{
    display: flex;
    
    justify-content: center;
    margin:0 -15px;
    @include media767(){
      flex-direction: column;
      margin:0 -10px;
    }
    .complete-looks-column{
      width: 25%;
      padding:0 15px;
      @include media767(){
        width: 100%;
        padding:0 10px;
        margin-bottom: 40px;
      }
      .complete-look-img{
        background-color: #fff;
        padding:20px;
        figure{
          position: relative;
          overflow: hidden;
          width:100%;
          padding-bottom: 100%;
          img{
            position: absolute;
            max-width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center;
            margin: auto;
            right: 0;
          }
        }
      }
      .complete-look-text {
        padding: 20px 0 0 0;
        text-align: center;
        a{
          color: #000;
          font-size:18px;
          font-weight: 400;
          span.indiv-product-title-text {
            font-size: 16px;
            text-align: center;
            display: block;


          }
          span.money{
            font-size: 16px;
            font-weight: 400;
            color: #000;
          }
          span.money-styling{
            font-size: 13px;
            font-weight: 400;
            color: #000;
            padding-top: 10px;
            display: block;

          }
        }
      }
    }
  }
}
/* complete look end here */

.colorful-option{
  padding:90px 0;
  background:#fff;
  @include media1499to992(){
    padding: 6.004vw 0;
  }
  @include media991to768(){
    padding:60px 0;
  }
  @include media767(){
    padding:50px 0;
  }
  .colorful-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    @include media767(){
      flex-direction: column;
    }
    .colorful-left{
      width: 60%;
      padding-right: 78px;
      @include media1499to992(){
        padding-right: 5.203vw;
      }
      @include media991to768(){
        padding-right: 25px;
      }
      @include media767(){
        width: 100%;
        padding-right: 0px;
      }
    }
    .colorful-right{
      width:40%;
      padding-left: 50px;
      @include media1499to992(){
        padding-left: 3.336vw;
      }
      @include media991to768(){
        padding-left: 10px;
      }
      @include media767(){
        padding-left: 0px;
        width: 100%;
        text-align: center;
        padding-top: 40px;
      }
      .colorful-title{
        .rating-wrapper{
          display: flex;
          align-items: center;

          margin-bottom: 20px;
          @include media1499to992(){
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            margin-bottom: 10px;
          }
          @include media767(){
            justify-content: center;
          }
          @include media480(){
            flex-direction: column;
          }
          .rating-left{
            ul{
              li{
                margin-right: 7px;
                @include media1499to992(){
                  margin-right: 0.467vw;
                }
                i{
                  font-size: 15px;
                  color: #F3AD3D;
                  @include media1499to992(){
                    font-size: 1.001vw;
                  }
                  @include media991to768(){
                    font-size: 13px;
                  }
                  @include media767(){
                    font-size: 13px;
                  }
                }
              }
            }
          }
          .rating-right{
            padding-left: 5px;
            @include media1499to992(){
              padding-left: 0.334vw;
            }
            @include media480(){
              padding-left: 0px;
              padding-top:7px;
            }
            p{
              font-size: 14px;
              font-weight: 400;
              line-height: 1;
              color: #000;
              @include media1499to992(){
                font-size: 0.934vw;
              }
              @include media991to768(){
                font-size: 13px;
              }
              @include media767(){
                font-size: 13px;
              }
              a{
                color: #000;
                position: relative;
                display: inline-block;
                &::before{
                  content: "";
                  position: absolute;
                  bottom: -3px;
                  left: 0;
                  right: 0;
                  width: 100%;
                  height: 1px;
                  background: #000;
                  @include media1499to992(){
                    bottom: -0.200vw;
                  }
                }
              }
            }
          }
        }
        h2{
          font-size: 32px;
          line-height: 1.3;
          color: #000;
          margin-bottom: 20px;
          font-weight: 700;
          @include media1499to992(){
            font-size: 2.135vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 22px;
            margin-bottom: 17px;
          }
          @include media767{
            font-size: 22px;
            margin-bottom: 15px;
          }
        }
        h4{
          font-size: 22px;
          line-height: 1.2;
          color: #000;
          margin-bottom: 20px;
          font-weight: 400;
          @include media1499to992(){
            font-size: 1.468vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 19px;
          }
          @include media767(){
            font-size: 18px;
          }
          p{
            font-size: 14px;
            display: inline-block;
            line-height: 1;
            font-weight: 400;
            @include media1499to992(){
              font-size: 1.334vw;
            }
            span{
              font-weight: 700;
              font-size: 22px;
              @include media1499to992(){
                font-size: 1.468vw;
              }
              @include media991to768(){
                font-size: 19px;
              }
              @include media767(){
                font-size: 18px;
              }
            }
          }
        }
      }

      .other-people-wrapper{
        display: flex;
        align-items: center;
        @include media767(){
          justify-content: center;
        }
        .other-people-right{
          p{
            font-size:13px;
            padding-left: 12px;
            line-height:1.2;
            color:#D83D3D;
            font-weight:400;
            @include media1499to992(){
              font-size: 0.934vw;
              padding-left: 0.801vw;
            }
            span{
              font-weight: 700;
            }
          }
        }
      }

      .get-yours-btn{
        padding:20px 0;

        @include media1499to992(){
          padding: 1.334vw 0;
        }
        @include media767(){
          padding: 15px 0;
        }
        a{
          display: inline-block;
          padding: 22px 10px;
          background: #67AC5B;
          color: #ffffff;
          text-align: center;
          min-width: 300px;
          border-radius: 5px;
          font-size: 20px;
          font-weight: 700;
          @include media1499to992(){
            padding: 1.468vw 0.667vw;
            min-width: 20.013vw;
            border-radius: 0.334vw;
            font-size: 1.334vw;
          }
          @include media991to768(){
            padding:22px 10px;
            min-width: 270px;
          }
          @include media767(){
            padding: 22px 10px;
            font-size: 18px;
            min-width: 280px;
          }
          img{
            margin-left: 12px;
            vertical-align: middle;
            position: relative;
            top:-3px;
            max-width: 14px;
            @include media1499to992(){
              top:-0.200vw;
              margin-left: 0.801vw;
              max-width: 0.934vw;
            }
            @include media767(){
              top: -1px;
            }
          }
        }
      }
      .payment-icon{
        img{
          max-width: 280px;
          image-rendering: -webkit-optimize-contrast;
          @include media1499to992(){
            max-width: 18.679vw;
          }
          @include media767(){
            max-width: 100%;
          }
        }
      }

      .testimonial-main{

        padding:20px 0 0 0;
        @include media1499to992(){
          padding: 1.334vw 0 0 0;
        }
        @include media767(){
          padding: 14px 0 0 0;
        }
        p{
          font-size: 16px;
          line-height: 1.4;
          color: #000;
          font-weight: 500;
          margin-bottom: 20px;
          @include media1499to992(){
            font-size: 1.067vw;
            margin-bottom: 1.334vw;
          }
          @include media991to768(){
            font-size: 15px;
          }
          @include media767(){
            font-size: 14px;
            margin-bottom: 14px;
          }
        }
        .testimonial-wrapper {
          display: flex;
          align-items: center;
          flex-direction: row;
          @include media767(){
            justify-content: center;
          }
          .testimonial-left {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 100%;
            @include media1499to992(){
              width: 3.469vw;
              height: 3.469vw;
            }
            img{
              width: 52px;
              height: 52px;
              object-fit: cover;
              border-radius: 100%;
              @include media1499to992(){
                width: 3.469vw;
                height: 3.469vw;
              }
            }
          }
          .testimonial-right{
            padding-left: 20px;
            @include media1499to992(){
              padding-left: 1.334vw;
            }
            h5{
              font-size: 18px;
              line-height: 1.2;
              margin-bottom: 4px;
              color: #000;
              font-weight: 400;
              @include media1499to992(){
                font-size: 1.201vw;
                margin-bottom: 0.267vw;
              }
            }
            .rating{
              ul{
                li{
                  margin-right: 3px;
                  @include media1499to992(){
                    margin-right: 0.200vw;
                  }
                  i{
                    color:#fdad3d;
                    font-size: 14px;
                    @include media1499to992(){
                      font-size: 0.934vw;
                    }
                  }
                }
              }
            }
          }
        }
      }


    }

  }
}


@-webkit-keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(0,0,0,.2) }100% {box-shadow:0 0 0 10px transparent}}
@-moz-keyframes pulse{0%{box-shadow:0 0 0 0 rgba(0,0,0,.2)}100%{box-shadow:0 0 0 10px transparent}}
@-ms-keyframes pulse{0%{box-shadow:0 0 0 0 rgba(0,0,0,.2)}100%{box-shadow:0 0 0 10px transparent}}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(0,0,0,.2)}100%{box-shadow:0 0 0 10px transparent}}













.product-details{
  .dropdown {
    position: relative;
    width: 100%;
    &:after {
      content: "";
      position: absolute;
      margin: 0;
      width: 16px;
      height: 8px;
      background-image: url("/cdn/shop/files/cw-down-arrow.png?v=1654066860");
      top: 50%;
      right: 15px;
      -webkit-transition: .3s;
      background-repeat: no-repeat;
      transition: .3s;
      transform: translate(0px, -50%);
      @include media1499to992(){
        right: 1.001vw;
      }
    }
    >.caption {
      background: #f5f5f5;
      cursor: pointer;
      padding: 0 20px 0 60px;
      font-size: 16px;
      height: 50px;
      line-height: 50px;
      @include media1499to992(){
        padding:0 1.334vw 0 4.003vw;
        font-size: 1.067vw;
        height: 3.336vw;
        line-height: 3.336vw;
      }
      span {
        font-weight: 600;
        font-size: 16px !important;
        letter-spacing: 0.3px;
        position: absolute;
        right: 0;
        left: 15px;
        top: 50%;
        transform: translate(0px, -50%);
        @include media1499to992(){
          font-size: 1.067vw !important;
          left: 1.001vw;
        }
      }
    }
    >.list {
      position: absolute;
      background-color: #f5f5f5;
      width: 100%;
      opacity: 0;
      overflow: hidden;
      -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
      transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
      -webkit-transform: scale(0.85);
      transform: scale(0.85);
      -webkit-transform-origin: 50% 0;
      transform-origin: 50% 0;
      top: 50px;
      z-index: -1;
      visibility: hidden;
      @include media1499to992(){
        top:3.336vw;
      }
      >.item {
        padding: 0 20px 0 60px;
        cursor: pointer;
        -webkit-transition: .3s;
        transition: .3s;
        font-size: 16px;
        position: relative;
        height: 50px;
        line-height: 50px;
        @include media1499to992(){
          padding:0 1.334vw 0 4.003vw;
          font-size: 1.067vw;
          height: 3.336vw;
          line-height: 3.336vw;
        }
        span {
          font-weight: 600;
          font-size: 16px !important;
          letter-spacing: 0.3px;
          position: absolute;
          right: 0;
          left: 15px;
          top: 50%;
          transform: translate(0px, -50%);
          right: 20px;
          @include media1499to992(){
            font-size: 1.067vw;
            left: 1.001vw;
            right: 1.334vw;   
          }
        }
      }
    }
  }
  .dropdown.open {
    >.list {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
      z-index: 1;
      visibility: visible;
    }
  }
  span.color-option {
    width: 25px;
    border-radius: 100%;
    height: 25px;
    @include media1499to992(){
      width: 1.334vw;
      height: 1.334vw;
    }
  }
}


.js_disabled{
  opacity: 0.5;
  pointer-events: none;

}

.product-details .product-details-right .product-rating .product-rating-wrapper .product-rating-right .stock_wrapper.outstock .circle{
  background-color: #ff0000;
}

.product-details .product-details-right .product-rating .product-rating-wrapper .product-rating-right .stock_wrapper.outstock .stock_text_wrapper p {
  font-weight: 700;
  color: #ff0000;
  font-size: 14px;
}


/* 07-06-22 start */

.product-details .product-details-right .other-people-wrapper {
  align-items: start;
}
.other-people-left {
  line-height: 1;
}
.product-details .product-details-right .products-options .colors-wrapper .sizing-right a:after {

  width: 0;

}

/* 07-06-22 End */


.product-details .product-details-left .preloved-main {
  @include media767(){
    margin-bottom: 10px;
  }  
}

#about ul {
  list-style: disc;
  padding-left:17px;

  > li {
    list-style: disc;
  }
}
.product-details .product-details-right .rent-froms .add-to-cart-btn a img {
  @media only screen and (min-width:1200px) {
    max-width: 25px;
    width: 25px;
  }
}
.poduct-descs li {
    @include media1499to992(){
      font-size: 1.067vw;
    }
    @include media767(){
          font-size: 14px;
    }
}



// 11-01-22
.product-details {
  .product-details-right {
    .rent-froms {
      .rent-from-title-wrapper {
        outline: none;
      }
      .cus-accordian{
        .rent-from-title-wrapper {
          outline: none;
          padding-left: 30px;
          position: relative;

          &::after{
            content: '';
            width: 22px;
            height: 22px;
            background-color: #fff;
            position: absolute;
            left: 0;
            top: 22%;
            border-radius: 50%;
          }

          &::before{
            content: "";
            border-right: 2px solid #fff;
            border-top: 2px solid #fff;
            width: 13px;
            height: 7px;
            transform: rotate(133deg);
            cursor: pointer;
            position: absolute;
            left: 4px;
            z-index: 1;
            top: 20px;
          }

          &.cus-accordian-btn {
            &.disable{
              pointer-events: none;
            }
          }
        }        
        .cus-accordian-content{
          display: none;
          height: 0;
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
          transition: .3s;

          &.show{
            display: block;
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            height: 100%;
          }
        }
        &.active{
         .rent-from-title-wrapper{
          &::after{
            background-color: #67ac5b;
          }
         } 
        }
      }
    }
  }
}
/* BSS fix css */
.colorful-left-img-wrapper{
  position: relative;
}