/** Shopify CDN: Minification failed

Line 2512:0 Unexpected "{"

**/
*,:after,:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: inherit;
  vertical-align: inherit;
}
html {
  outline: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
   padding:0px !important;
}
body,html {
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display: none;
}
body::-moz-scrollbar {
  display: none;
}
svg,img {
  max-width: 100%;
  display: block;
}
a,.btn,button { 
  text-decoration: none;
  outline: none; 
  color: inherit;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  display: inline-block;
  cursor: pointer;
}
a,a:hover,a:focus,a:active,button,button:hover,button:focus,input,input:hover,input:focus,select,select:hover,select:focus,textarea,textarea:hover,textarea:focus,.btn,.btn:hover,.btn:focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  outline: none; 
  font-family: var(--first-font);
}
.form-control:focus,[type="text"]:focus,[type="email"]:focus,[type="checkbox"]:focus,[type="password"]:focus,[type="file"]:focus,[type="radio"]:focus, [type="button"]:focus,[type="submit"]:focus,[type="date"]:focus,[type="time"]:focus,[type="tel"]:focus,[type="search"]:focus,[type="button"]:focus,[type="number"]:focus,textarea:focus,select:focus {
  outline: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  color: var(--theme-color);
}
:-ms-input-placeholder {
  color: var(--theme-color);
}
::-moz-placeholder {
  color: var(--theme-color);
}
::-ms-input-placeholder {
  color: var(--theme-color);
}
::placeholder {
  color: var(--theme-color);
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}
body { 
  font: var(--common-text);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--second-color);
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,li,ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--common-text);
}
h1,.h1 {
  font: var(--h1);
}
h2,.h2 {
  font: var(--h2);
}
h3,.h3 {
  font: var(--h3);
}
h4,.h4 {
  font: var(--h4);
}
h5,.h5 {
  font: var(--h5);
}
h6,.h6 {
  font: var(--h6);
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;  
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
b {
  font-weight: bold;
  display: inline-block;
} 
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b, .product-title b {
  color: var(--second-color);
  display: inline;
  font-weight: 700;
}
p:not(:last-of-type) {
  margin-bottom: 15px;
}
/* ============================================= */
/* !!!!             GRID CSS                !!!! */
/* ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.no-gutters {
  margin: 0 !important;
}
.row [class*="col-"] {
  padding: 0 15px;
}
.no-gutters [class*="col-"] {
  padding: 0;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.align-items-start {
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}
.align-items-end {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}
.align-items-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.justify-content-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.justify-content-start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}
.justify-content-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.justify-content-end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.desk-only,.hidden,.visually-hidden,[hidden] {
display: none !important;
}
.mobile-only {
  display: block !important;
}
/*****  Columns  *****/
.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
@media (min-width: 576px) {
  .col-sm {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0%;
              flex: 1 0 0%;
  }
  .col-sm-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
  }
  .col-sm-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 8.33333333%;
  }
  .col-sm-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 16.66666667%;
  }
  .col-sm-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 25%;
  }
  .col-sm-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 33.33333333%;
  }
  .col-sm-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-sm-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
  }
  .col-sm-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 58.33333333%;
  }
  .col-sm-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 66.66666667%;
  }
  .col-sm-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 75%;
  }
  .col-sm-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 83.33333333%;
  }
  .col-sm-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 91.66666667%;
  }
  .col-sm-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%;
  }
  .offset-sm-0 {
      margin-left: 0;
  }
  .offset-sm-1 {
      margin-left: 8.33333333%;
  }
  .offset-sm-2 {
      margin-left: 16.66666667%;
  }
  .offset-sm-3 {
      margin-left: 25%;
  }
  .offset-sm-4 {
      margin-left: 33.33333333%;
  }
  .offset-sm-5 {
      margin-left: 41.66666667%;
  }
  .offset-sm-6 {
      margin-left: 50%;
  }
  .offset-sm-7 {
      margin-left: 58.33333333%;
  }
  .offset-sm-8 {
      margin-left: 66.66666667%;
  }
  .offset-sm-9 {
      margin-left: 75%;
  }
  .offset-sm-10 {
      margin-left: 83.33333333%;
  }
  .offset-sm-11 {
      margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0%;
              flex: 1 0 0%;
  }
  .col-md-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
  }
  .col-md-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 8.33333333%;
  }
  .col-md-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 16.66666667%;
  }
  .col-md-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 25%;
  }
  .col-md-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 33.33333333%;
  }
  .col-md-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-md-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
  }
  .col-md-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 58.33333333%;
  }
  .col-md-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 66.66666667%;
  }
  .col-md-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 75%;
  }
  .col-md-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 83.33333333%;
  }
  .col-md-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 91.66666667%;
  }
  .col-md-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%;
  }
  .offset-md-0 {
      margin-left: 0;
  }
  .offset-md-1 {
      margin-left: 8.33333333%;
  }
  .offset-md-2 {
      margin-left: 16.66666667%;
  }
  .offset-md-3 {
      margin-left: 25%;
  }
  .offset-md-4 {
      margin-left: 33.33333333%;
  }
  .offset-md-5 {
      margin-left: 41.66666667%;
  }
  .offset-md-6 {
      margin-left: 50%;
  }
  .offset-md-7 {
      margin-left: 58.33333333%;
  }
  .offset-md-8 {
      margin-left: 66.66666667%;
  }
  .offset-md-9 {
      margin-left: 75%;
  }
  .offset-md-10 {
      margin-left: 83.33333333%;
  }
  .offset-md-11 {
      margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0%;
              flex: 1 0 0%;
  }
  .col-lg-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
  }
  .col-lg-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 8.33333333%;
  }
  .col-lg-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 16.66666667%;
  }
  .col-lg-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 25%;
  }
  .col-lg-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 33.33333333%;
  }
  .col-lg-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-lg-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
  }
  .col-lg-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 58.33333333%;
  }
  .col-lg-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 66.66666667%;
  }
  .col-lg-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 75%;
  }
  .col-lg-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 83.33333333%;
  }
  .col-lg-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 91.66666667%;
  }
  .col-lg-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%;
  }
  .offset-lg-0 {
      margin-left: 0;
  }
  .offset-lg-1 {
      margin-left: 8.33333333%;
  }
  .offset-lg-2 {
      margin-left: 16.66666667%;
  }
  .offset-lg-3 {
      margin-left: 25%;
  }
  .offset-lg-4 {
      margin-left: 33.33333333%;
  }
  .offset-lg-5 {
      margin-left: 41.66666667%;
  }
  .offset-lg-6 {
      margin-left: 50%;
  }
  .offset-lg-7 {
      margin-left: 58.33333333%;
  }
  .offset-lg-8 {
      margin-left: 66.66666667%;
  }
  .offset-lg-9 {
      margin-left: 75%;
  }
  .offset-lg-10 {
      margin-left: 83.33333333%;
  }
  .offset-lg-11 {
      margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0%;
              flex: 1 0 0%;
  }
  .col-xl-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
  }
  .col-xl-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 8.33333333%;
  }
  .col-xl-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 16.66666667%;
  }
  .col-xl-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 25%;
  }
  .col-xl-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 33.33333333%;
  }
  .col-xl-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-xl-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
  }
  .col-xl-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 58.33333333%;
  }
  .col-xl-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 66.66666667%;
  }
  .col-xl-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 75%;
  }
  .col-xl-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 83.33333333%;
  }
  .col-xl-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 91.66666667%;
  }
  .col-xl-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%;
  }
  .offset-xl-0 {
      margin-left: 0;
  }
  .offset-xl-1 {
      margin-left: 8.33333333%;
  }
  .offset-xl-2 {
      margin-left: 16.66666667%;
  }
  .offset-xl-3 {
      margin-left: 25%;
  }
  .offset-xl-4 {
      margin-left: 33.33333333%;
  }
  .offset-xl-5 {
      margin-left: 41.66666667%;
  }
  .offset-xl-6 {
      margin-left: 50%;
  }
  .offset-xl-7 {
      margin-left: 58.33333333%;
  }
  .offset-xl-8 {
      margin-left: 66.66666667%;
  }
  .offset-xl-9 {
      margin-left: 75%;
  }
  .offset-xl-10 {
      margin-left: 83.33333333%;
  }
  .offset-xl-11 {
      margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 0%;
              flex: 1 0 0%;
  }
  .col-xxl-auto {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: auto;
  }
  .col-xxl-1 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 8.33333333%;
  }
  .col-xxl-2 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 16.66666667%;
  }
  .col-xxl-3 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 25%;
  }
  .col-xxl-4 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 33.33333333%;
  }
  .col-xxl-5 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-xxl-6 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 50%;
  }
  .col-xxl-7 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 58.33333333%;
  }
  .col-xxl-8 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 66.66666667%;
  }
  .col-xxl-9 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 75%;
  }
  .col-xxl-10 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 83.33333333%;
  }
  .col-xxl-11 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 91.66666667%;
  }
  .col-xxl-12 {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%;
  }
  .offset-xxl-0 {
      margin-left: 0;
  }
  .offset-xxl-1 {
      margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
      margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
      margin-left: 25%;
  }
  .offset-xxl-4 {
      margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
      margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
      margin-left: 50%;
  }
  .offset-xxl-7 {
      margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
      margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
      margin-left: 75%;
  }
  .offset-xxl-10 {
      margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
      margin-left: 91.66666667%;
  }
}
/* ============================================= */
/* !!!!          NICE SELECT CSS           !!!! */
/* ============================================= */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: solid 1px var(--second-color);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 35px 10px 15px;
  width: 100%;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  background: url(down-arrow1.svg);
  background-repeat: no-repeat;
  background-size: 11PX;
  background-position: calc(100% - 15px) 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.currency .nice-select{
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 30px 10px 12px;
    line-height: 1;
    background: url(down-arrow-white.svg);
    background-repeat: no-repeat;
    background-size: 11PX;
    background-position: calc(100% - 8px) 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.currency .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}
.currency .nice-select .list {
    color: var(--black);
    background-color: var(--white);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 10px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 2;
    width: 100%;
    -moz-transform: scale(0.75) translateY(-21px);
    -o-transform: scale(0.75) translateY(-21px);
    -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}
.currency .nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.currency .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    font-family: var(--first-font);
    list-style: none;
    outline: none;
    padding-left: 14px;
    padding-right: 14px;
    text-align: left;
    -webkit-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    margin: 0 !important;
}
.currency .nice-select .option.selected {
    font-weight: bold;
}
.currency .nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}
/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.btn {
  text-align: center;
  padding: 11px 35px;
  font-family: var(--first-font);
  color: var(--white);
  background-color: var(--theme-color);
  appearance: none;
  outline: none;
  border: 1px solid var(--theme-color);
  position: relative;
  font-size: 14px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
overflow: hidden;
} 
.btn-secondary svg,.btn svg{ 
  margin-left: 10px; 
  height: 15px;
  width: 15px;
}
.btn svg path {
  fill: var(--white);
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.btn:hover,.btn:focus {
  color: var(--white);
  border-color: var(--third-color);
}
.btn-secondary {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
padding: 11px 30px;
border: 1px solid var(--third-color);
color: var(--white);
background: var(--third-color);
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
line-height: 1;
transition: all ease-in-out 0.5s;
-webkit-transition: all ease-in-out 0.5s;
-moz-transition: all ease-in-out 0.5s;
-ms-transition: all ease-in-out 0.5s;
-o-transition: all ease-in-out 0.5s;
position: relative;
z-index: 1;
overflow: hidden;
}
.btn-secondary svg path {
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  fill:  var(--white);
}
.btn-secondary:hover {
  border: 1px solid var(--theme-color);
}
.btn-transparent{
  background: transparent;
  border: 1px solid var(--third-color);
  color: var(--third-color);
 position: relative;
z-index: 1;
overflow: hidden;
}
.btn-transparent:hover{
  border: 1px solid var(--second-color);
}
.btn-white{
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--theme-color);
}
.btn-white svg path{
  fill: var(--theme-color);
}
.btn-white:hover svg path{
  fill: var(--white);
}
.btn-secondary::after,.btn::after,.btn-transparent::after {
  content: '';
  background: var(--theme-color);
  height: 100%;
  width: 0;
  position: absolute;
  transition: .4s cubic-bezier(.785, .135, .15, .86);
  -webkit-transition: .4s cubic-bezier(.785, .135, .15, .86);
  -moz-transition: .4s cubic-bezier(.785, .135, .15, .86);
  -o-transition: .4s cubic-bezier(.785, .135, .15, .86);
  -ms-transition: .4s cubic-bezier(.785, .135, .15, .86);
  top: 0;
  left: auto;
  right: 0;
  z-index: -1;
}
.btn::after{
background-color: var(--third-color);
}
.btn-transparent::after{
 background: var(--second-color);
}
.btn-secondary:hover::after,.btn-secondary:focus::after,.btn:hover::after,.btn:focus::after,.btn-transparent:hover::after,.btn-transparent:focus::after {
  width: 100%;
  right: auto;
  left: 0;
}
/*-------------------- GoTo Top ------------------*/
.progress-wrap {
position: fixed;
right: 10px;
bottom: 95px;
height: 46px;
width: 46px;
cursor: pointer;
display: block;
border-radius: 50px;
-webkit-box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
        box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
z-index: 2;
opacity: 0;
visibility: hidden;
transform: translateY(15px);
-webkit-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
background: #fff;
-webkit-transform: translateY(15px);
-moz-transform: translateY(15px);
-ms-transform: translateY(15px);
-o-transform: translateY(15px);
}
.progress-wrap.active-progress {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
}
.progress-wrap.active-progress:after {
content: '';
background: url(down-arrow-black.svg);
background-repeat: no-repeat;
background-position: center center;
background-size: contain;
position: absolute;
top: 0;
left: 0;
width: 15px;
height: 15px;
right: 0;
bottom: 0;
margin: auto;
-webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
}
.progress-wrap svg path { 
fill: none; 
}
.progress-wrap svg.progress-circle path {
stroke: var(--second-color);
stroke-width: 4;
-webkit-box-sizing:border-box;
        box-sizing:border-box;
-webkit-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
}
/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control, input:not([type="submit"]),input:not([type="checkbox"]), input:not([type="button"]),input:not([type="radio"]),select,textarea {
  position: relative;
  border: 1px solid var(--border-color);
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--theme-color);
}
textarea {
  resize: none;
}
form .row {
  margin: 0 -8px;
}
form .row [class*="col-"] {
  padding: 0 10px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

sup {
  top: -0.5em;
}
sub,sup {
  position: relative;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
}
.form-group label sup {
  color: red;
  font-size: 10px;
  line-height: 0;
  margin-right: 3px;
}
.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox-custom label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;  
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
  padding: 0 0 0 30px;
}
.checkbox-custom label:before {
  content: '';
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color:transparent;
  border: 1px solid var(--white);
  padding: 8px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.checkbox-custom input:checked+label:before { 
  background-color: var(--second-color);
  border-color: var(--second-color);
}
.checkbox-custom input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0px 1px 1px 0;
  transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}
.checkbox-custom label a {
  text-decoration: underline;
  font-weight: 600;
}
/** RADIO BUTTON CSS **/
.radio-group input[type="radio"] {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.radio-group label {
  cursor: pointer;
  position: relative;
  font-size: 12px;
  padding-left: 24px;
  color: var(--second-color);
  margin: 0;
  vertical-align: bottom;
}
.radio-group label::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 2px solid var(--second-color);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 400ms ease;
  -webkit-transition: border-color 400ms ease;
  -moz-transition: border-color 400ms ease;
  -ms-transition: border-color 400ms ease;
  -o-transition: border-color 400ms ease;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.radio-group label::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  top: 50%;
  left: 1px;
  right: auto;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  -o-transform: translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
  -webkit-transition: transform 400ms ease;
  -moz-transition: transform 400ms ease;
  -ms-transition: transform 400ms ease;
  -o-transition: transform 400ms ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.radio-group input[type="radio"]:checked+label::before {
  border-color: var(--second-color);
}
.radio-group input[type="radio"]:checked+label::after {
  transform: translateY(-50%) scale(0.55);
  -webkit-transform: translateY(-50%) scale(0.55);
  -moz-transform: translateY(-50%) scale(0.55);
  -ms-transform: translateY(-50%) scale(0.55);
  -o-transform: translateY(-50%) scale(0.55);
}
/***** COMMON CSS ****/
body.active-menu,body.no-scroll {
  overflow: hidden;
  position: relative;
}
.right-gliter {
  bottom: 0;
  right: 0;
}
.gliter-img {
  position: absolute;
  z-index: -1;
}
.pt{
  padding-top: 70px;
}
.pb{
  padding-bottom: 70px;
}
.section-title {
  margin-bottom: 26px;
}
.section-title.text-center p {
  margin-top: 14px;
}
.subtitle {
  font-weight: 600;
  line-height: 1; 
  margin-bottom: 15px;
  color: var(--theme-color);
}
.img-wrapper {
  position: relative;
  width: 100%;
  display: block;
}
.img-wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
} 
.bg-light{
  background: var(--sixth-color);

}



/*** swiper slider ****/
.swiper-wrapper {
  height: auto;
}
.flex-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
}
.flex-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.flex-slider .flex-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
height: 100%;
}
/* swiper slider css arrow  */
.swiper-button-prev,.swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  z-index: 2;
-webkit-transition: all 400ms ease-in-out;
-o-transition: all 400ms ease-in-out;
transition: all 400ms ease-in-out;
}
.swiper-button-next:after,.swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after ,.swiper-button-next::after{
  display: none;
}
.swiper-button-prev::before ,.swiper-button-next::before{
  content: '';
  position: absolute;
  /* top: 6px; */
  left: 0;
  background-image: url(arrow-right.svg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.swiper-button-next::before{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.swiper-button-prev:hover, .swiper-button-next:hover{
  background-color: var(--third-color);
}
/* ============================================= */
/* !!!!     CUSTOMIZE THE NAVBAR            !!!! */
/* ============================================= */
.site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  z-index: 3;
}
body:not(.index) .site-header{
  position: relative;
}
.site-header.fixed .sticky_header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    width: auto;
    background-color: var(--theme-color) !important;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease-in-out 0s;
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
}
/***** ANNOUCEBAR *****/
.announcebar{
  padding: 10px 0;
  background-color: var(--theme-color);
  display:  block !important;
}
.announcebar .swiper-wrapper{
  -webkit-transition-timing-function:linear!important;
  -o-transition-timing-function:linear!important;
     transition-timing-function:linear!important;
  position: relative;
}
.announcebar .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  color: var(--theme-color);
  padding: 0 50px;
}
.announcebar .swiper-slide p{
  text-align: center;
  font-size: 16px;
  color:var(--white);
}
.announcebar .swiper-slide::before{
  content: "";
  position: absolute;
  top: 8px;
  right: 0px;
  height: 8px;
  width: 8px;
  border-radius: 10px;
  background-color: var(--white);
}
@-webkit-keyframes line-slide {
  0% {
      background-position: -5% 0;
  }
  100% {
      background-position: 100% 0;
  }
}
@keyframes line-slide {
  0% {
      background-position: -5% 0;
  }
  100% {
      background-position: 100% 0;
  }
}
.head-sticky .announcebar{
  padding: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

/*****  MAIN NAVIGATIONBAR CSS  *****/
.site-header .main-navigationbar {
  position: relative;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  padding: 20px 0px;
  background-color:var(--theme-color);
  color: var(--white);
}
.home-layout-three .site-header .main-navigationbar {
  background: transparent;
  color: var(--black);
}
.site-header .main-navigationbar .menu-items-col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all ease-in-out 0.4s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}
.site-header .menu-items-col .main-nav> .menu-lnk.has-item>a:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  right: 0px;
  top: 4px;
  background: url(down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.site-header .main-navigationbar .logo-col {
  max-width: 140px;
  width: 100%;
}
.site-header .main-navigationbar .logo-col a {
  display: block;
}
.site-header .main-navigationbar .logo-col img {
  width: 100%;
}
.site-header .menu-right .search-header input{
  padding: 0px 0px 2px;
  border: 0;
  border-bottom: 1px solid var(--white);
color: var(--white);
}
.site-header .menu-right .search-header input::-webkit-input-placeholder{
color: var(--white);
}
.site-header .menu-right .search-header input::-moz-placeholder{
color: var(--white);
}
.site-header .menu-right .search-header input:-ms-input-placeholder{
color: var(--white);
}
.site-header .menu-right .search-header input::-ms-input-placeholder{
color: var(--white);
}
.site-header .menu-right .search-header input::placeholder{
color: var(--white);
}
.site-header .menu-right li svg {
width: 23px;
height: 23px;
margin: 0 auto;
transition: all 600ms ease-in-out;
transform: rotateY(0deg);
-webkit-transition: all 600ms ease-in-out;
-moz-transition: all 600ms ease-in-out;
-ms-transition: all 600ms ease-in-out;
-o-transition: all 600ms ease-in-out;
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
}
.site-header .menu-right li:not(.cart-header):hover a svg, .site-header .menu-right li:hover a.hcart svg {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.site-header .menu-right li .cart__ctas svg {
margin: 0 0 0 10px;
height: 18px;
width: 20px;
}
.site-header .menu-right li a {
  position: relative;
display: block;
}
.site-header .count {
  position: absolute;
  top: -6px;
  right: -8px;
  height: 17px;
  width: 17px;
 background: var(--third-color);
  color: var(--white);
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.site-header .menu-right li:not(:first-of-type){
  margin-left: 20px;
}
.site-header .menu-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-header .menu-right ul li{
  line-height: 1;
}
.site-header .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
  padding-right: 20px;
}
.main-navigationbar .menu-items-col-right .menu-right{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
}
.site-header .main-navigationbar .menu-items-col .main-nav>li>a {
  color: var(--white);
  text-transform: capitalize;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  text-transform: uppercase;
}
.header-style-three .main-navigationbar .menu-items-col .main-nav>li>a {
color:var(--white);
}
.site-header .main-navigationbar .menu-items-col .drop>a:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  right: -18px;
  top: 7px;
  background: url(dropdown.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.site-header .main-navigationbar .menu-items-col .main-nav>li.has-item:hover>a:after,.site-header .main-navigationbar .menu-items-col .drop:hover>a:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.site-header .main-navigationbar .menu-items-col .main-nav>li>a:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -3px;
  left: 0;
  right: 0;
  background: var(--white);
  margin: 0 auto;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:hover:before {
  width: 100%;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn:before {
  display: none;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn svg {
  margin-left: 20px;
}
.site-header .menu-items-col .main-nav> .menu-lnk.has-item>a{
  padding-right: 20px;
}
.header-style-one .menu-items-col .main-nav li a .labl{
  background-color: var(--third-color);
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 10px;
  margin-left: 5px;
}
/*********** SHF LAYOUT SECTION *************/
.layout-section{
  z-index: 6;
  margin: 0;
  padding: 0;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,.3);
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}
.layout-section.open{
  opacity: 1;
  visibility: visible;
}
.megamenu-popup{
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 70%;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  pointer-events: auto;
  width: 100%;
  padding: 40px 20px 20px 20px;
  max-height: 68vh;
  overflow-y: scroll;
}
.megamenu-popup .demo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  cursor: pointer;
}
.megamenu-popup .demo-close svg{
  height: 16px;
  width: 16px;
}
.megamenu-popup .demo-close svg path{
  fill: var(--black)
}
.megamenu-popup .megamenu-image a{
  padding-top: 80%;
}
.megamenu-popup .megamenu-content {
  margin-top: 15px;
  text-align: center;
}
.megamenu-popup .megamenu-content span{
  font: var(--h5);
  color: var(--black);
}
.megamenu-popup::-webkit-scrollbar {
  width: 6px;
}
.megamenu-popup::-webkit-scrollbar-track {
    background: var(--white);
}
.megamenu-popup::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
}
/***** SHF LANGUAGE CSS *****/
.lang-dropdown {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5px;
position:relative;
margin-left: 20px;
}
.lang-dropdown svg {
  width: 23px;
  height: 23px;
}
.home-layout-one .lang-dropdown svg path {
  fill: var(--black);
}
.lang-dropdown .nice-select {
border: 0;
font-family: var(--first-font);
font-size: 14px;
font-weight: 500;
line-height: 1;
padding: 0;
}
.header-style-one .menu-right .disclosure__list-wrapper, .header-style-two .announcebar-right .disclosure__list-wrapper, .header-style-three .menu-right .disclosure__list-wrapper {
position: absolute;
top: 100%;
right: -40px;
  left:auto;
min-width: 110px;
z-index: 2;
width: 100%;
overflow: hidden;
margin: 20px 0 0;
opacity: 1;
pointer-events: auto;
background-color: var(--white);
transition: all .4s ease-in-out 0s;
-o-transition: all .4s ease-in-out 0s;
-webkit-transition: all .4s ease-in-out 0s;
-moz-transition: all .4s ease-in-out 0s;
-ms-transition: all .4s ease-in-out 0s;
transform: scaleY(1);
-ms-transform: scaleY(1);
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
padding: 15px;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}
.header-style-one.fixed .menu-right .disclosure__list-wrapper{
  margin: 25px 0 0;
}
.header-style-two .announcebar-right .disclosure__list-wrapper{
  right: 0px;
      margin: 12px 0 0;
      -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
              box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}
.header-style-two .announcebar-right .currency .nice-select .list{
  margin-top:12px;
      -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
              box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}
/* .header-style-two.site-header .disclosure__list-wrapper .disclosure__item a{
  color:var(--black) !important;
} */
.header-style-one .menu-right .disclosure__list-wrapper.hide, .header-style-two .announcebar-right .disclosure__list-wrapper.hide, .header-style-three .menu-right .disclosure__list-wrapper.hide {
  transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item, .header-style-three .menu-right .disclosure__list-wrapper .disclosure__item {
  margin: 0;
}
.site-header .disclosure__list-wrapper .disclosure__item a{
font-size: 14px;
letter-spacing: 0.5px;
width: 100%;
  color:var(--black);
}
.site-header .disclosure__list-wrapper .disclosure__item:not(:last-of-type){
  padding: 0 0 10px;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item a{
font-size: 14px;
letter-spacing: 0.5px;
padding: 0 0 10px;
width: 100%;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item:last-child a{
padding: 0px;
}
.header-style-one .menu-right .disclosure__list-wrapper .disclosure__item a.disclosure__link--active{
font-weight: bold;
}
/***** HOME LAYOUT ONE MAIN NAVIGATIONBAR CSS *****/
.home-layout-two .header-style-one .main-navigationbar{
  background: transparent;
  color: var(--black);
}
.home-header.head-sticky .main-navigationbar,body.index .header-style-three.site-header.head-sticky .main-navigationbar{
  background: var(--theme-color);
  border-bottom: 1px solid var(--second-color);
}
/***** HOME LAYOUT THREE MAIN NAVIGATIONBAR CSS *****/
.home-layout-three .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a{
  color: var(--second-color);
}
.home-layout-three .site-header .menu-items-col .main-nav .mobile-menu-button svg path{
  fill: var(--second-color);
}
.home-layout-three  .site-header .count {
  background: var(--fifth-color);
  color: var(--black);
}    
.home-layout-three .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:before{
  background: var(--second-color);
}
.home-layout-three .header-style-three .menu-items-col .main-nav> .menu-lnk.has-item>a:after, .home-layout-three .header-style-one .menu-items-col .main-nav> .menu-lnk.has-item>a:after{
  background: url(down-arrow-fioard.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.home-layout-three .site-header .menu-items-col .main-nav li a .labl{
  background: var(--theme-color);
  color: var(--white);
}
.home-layout-three .home-header.head-sticky .main-navigationbar{
  background: var(--third-color);
}
.home-layout-three .header-style-one.head-sticky .menu-items-col .main-nav>.menu-lnk.has-item>a:after, .home-layout-three .header-style-three.head-sticky .menu-items-col .main-nav>.menu-lnk.has-item>a:after {
  background: url(down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*****  Megamenu css  *****/
.site-header .mobile-menu {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0 0 0 20px;
}
.site-header .menu-close-icon svg {
  cursor: pointer;
} 
.site-header .mobile-menu .mobile-menu-button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  padding: 0;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: transparent;
  border: none;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.site-header .mobile-menu .mobile-menu-button div {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: var(--white);
}
.site-header .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown {
  position: absolute;
  top: 100%;
  background-color: var(--white);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  min-width: 220px;
  z-index: 2;
  padding: 20px;
  border-top: 1px solid var(--border-color);
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.site-header .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px 0 5px;
}
.site-header .main-navigationbar .menu-items-col .main-nav>li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.site-header .menu-dropdown ul>li:not(:last-of-type) {
  margin-bottom: 10px;
}
.site-header .megamenu-list>li span {
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}
.site-header .menu-dropdown ul>li a {
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-family: var(--first-font);
  color: var(--black);
}
.site-header .menu-dropdown .arrow-list>li a:hover,
.second-menu-dropdown ul li a:hover {
  border-color: var(--black);
}
.site-header .wishlist-counter{
  background: #F7EEE5;
  color: var(--black);
}
.site-header .menu-items-col .main-nav .mobile-menu-button svg{
  height: 22px;
  width: 22px;
}
.site-header .menu-right .cart-header .cart-icon {
  position: relative;
}
.head-sticky .main-navigationbar{
  background-color: #e7a275;
}
.megamenu-card-inner {
  padding: 15px;
  -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.09);
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.09);
}
.site-header .megamenu-card .megamenu-image {
  position: relative;
}
.site-header .megamenu-card .megamenu-image a {
  padding-top: 92%;
}

.site-header .megamenu-card .megamenu-content {
  margin-top: 15px;
  text-align: center;
}
.site-header .megamenu-card .megamenu-content span {
  font: var(--h5);
  color: var(--black);
}
.site-header .menu-right .cart-header .cart-price {
  font-size: 16px;
  margin-left: 10px;
}
.site-header .login-header .nice-select{
  border: 1px solid var(--white);
  border-radius: 10px;
  background: url(header-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.megamenu-card{
  margin-bottom:15px;
}
/*****  MOBILE MENU CSS  *****/
.mobile-menu-wrapper {
  position: fixed;
  z-index: 4;
  background: var(--white);
  top: 0;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate(100%, 0px);
  -ms-transform: translate(100%, 0px);
  transform: translate(100%, 0px);
  right: 0;
  display: block;
  width: 100%;
  max-width: 400px;
}
.mobile-menu-wrapper.active-menu {
  -webkit-transform: translate(0%, 0px);
      -ms-transform: translate(0%, 0px);
          transform: translate(0%, 0px);
}
.mobile-menu-wrapper .menu-close-icon {
  text-align: right;
  padding: 15px 20px;
  background:var(--second-color);
}
.mobile-menu-wrapper .mobile-menu-bar>ul {
  height: calc(100vh - 48px);
  overflow: auto;
  padding: 10px 20px;
  background: var(--white);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
  font-size: 18px;
  color: var(--theme-color);
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li {
  margin-top: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .menu-open-arrow {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .close-menu-ioc {
  display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .acnav-list {
  margin: 12px 0;
  display: none;
padding: 0;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .close-menu-ioc {
  display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .menu-open-arrow {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li a {
  font-size: 14px;
  line-height: 18px;
  text-transform: lowercase;
  font-family: var(--first-font);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg {
  margin-left: auto;
  width: 14px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul {
  margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul {
  margin: 12px 0 0;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li:not(:last-of-type) {
  margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a {
  font-size: 14px;
  font-family: var(--first-font);
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a.acnav-label {
  font-weight: 600;
}
.mobile-menu-wrapper .menu-close-icon svg path {
  fill: var(--white);
}
/****** CART DRAWER CSS ********/
.overlay{
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}
.active-menu .menu-overlay:after,
.overlay.active,
.cartOpen .overlay:after,
.quick-active .overlay:after
 {
  content: " ";
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}
.active-menu .site-header .cart-header .count{
      background: rgb(0 0 0 / 3%);
    color: black;
}
/* .quick-active .announcebar:after, .active-menu .announcebar:after{
  content: " ";
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
} */
/* .notify-active .overlay::after,{
    content: " ";
  z-index: 3;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
} */
 /* .notify-active .site-header::after,
.notify-active .site-header.fixed::after{
  content: " ";
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
 } */
.cartOpen header:after,
.active-menu header:after,
.popup-toggle header:after,
.open header:after,
.mobile-open header:after,
.quick-active header:after,
.filter-open header:after,
.notify-active header:after,
.cartOpen header.fixed .main-navigationbar:after,
.active-menu header.fixed .main-navigationbar:after,
.popup-toggle header.fixed .main-navigationbar:after,
.open header.fixed .main-navigationbar:after,
.mobile-open header.fixed .main-navigationbar:after,
.quick-active header.fixed .main-navigationbar:after,
.filter-open header.fixed .main-navigationbar:after,
.notify-active header.fixed .main-navigationbar:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}
.notify-active .overlay{
  -webkit-transition:unset;
  -o-transition:unset;
  transition:unset;
}
.cartOpen .announcebar:after,.active-menu .announcebar:after,.quick-active .announcebar:after ,
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.index.cartOpen .announcebar:after,
.index.active-menu .announcebar:after {
  background: rgba(0, 0, 0, 0.7);
   content: " ";
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.index.cartOpen header:after,
.index.active-menu header:after,
.index.quick-active header:after {
  background: transparent;
  height: calc(100% + 15px);
}
.index.cartOpen .main-navigationbar, .index.active-menu .main-navigationbar, .index.quick-active .main-navigationbar{
      background-color: var(--theme-color);
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}



.cartDrawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  background: var(--white);
  width: 450px;
  height: 100%;
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-transition: 0.4s all;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.cartOpen .cartDrawer {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}
.cartDrawer .mini-cart-header {
  position: relative;
  text-align: center;
  padding: 17px 30px 16px 30px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--theme-color);
  color: var(--white);
}
.cartDrawer .cart-tottl-itm {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
.cart-header .closecart{
  position: fixed !important;
  right: 460px;
  top: 20px;
  width: 20px;
  height: 20px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.cartOpen .cart-header .closecart{
opacity: 1;
visibility: visible;
}
.cartDrawer .mini-cart-has-item {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cartDrawer .mini-cart-body {
  overflow-y: auto;
  padding: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar {
  width: 6px;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-track {
  background: rgb(79 70 50 / 45%);
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-thumb {
  background-color: #183a40;
}
.mini-cart-item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--white);
}
.mini-cart-item:not(:last-of-type) {
  margin-bottom: 30px;
}
.mini-cart-image {
  width: 80px;
height:100%;
}
.mini-cart-image a {
  display: block;
  padding-top: 138%;
  position: relative;
}
.mini-cart-image img {
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
width:100%;
height:100%;
  right: 0;
}
.mini-cart-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  padding-left: 15px;
}
.mini-cart-title {
  color: var(--second-color);
  margin-bottom: 8px;
  font-weight: 600;
}
.mini-cart-title a {
  color: var(--second-color);
}
.cartDrawer .cart-variable {
  margin-bottom: 10px;
}
.cartDrawer .cart-variable p {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 14px;
  color: #4e4e4e;
}
.qty-spinner {
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100px;
  height: 35px;
  width: 100%;
}
.qty-spinner button {
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.qty-spinner button svg {
  margin: auto;
  height: 10px !important;
  width: 10px !important;
  pointer-events:none;
}
.qty-spinner button svg path {
fill: var(--black);
}
.qty-spinner input {
  border: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 30px;
  color: var(--black);
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}
del {
  color: var(--theme-color);
  opacity: 0.6;
  text-decoration: line-through;
}
.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1;
}
.price ins {
  font-size: 16px;
  font-weight: 600;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.price ins.text-danger {
  color: #FF0000;
}
.price .currency-type {
  font-size: 12px;
}
.price del {
  font-weight: 500;
  margin-left: 5px;
  font-size: 16px;
}
.cartDrawer .mini-cart-details .price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: var(--common-text);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cartDrawer .pvarprice {
  margin-top: 12px;
}
.cartDrawer .price del {
  margin-left: 10px;
}
.cartDrawer .price ins {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.cartDrawer .price .currency-type {
  font-weight: 500;
  font-size: 10px;
  margin-left: 3px;
  display: inline-block;
  font-size: 12px;
}
.cartDrawer .webi-mini-cart-footer {
  padding: 30px;
  border-top: 1px solid var(--border-color);
}
.cartDrawer .mini-cart-footer-total-row {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--second-color);
  margin: 0 -10px 20px;
}
.cartDrawer .mini-cart-footer-total-row div {
  padding: 0 10px;
}
.cartDrawer .mini-cart-footer-total-row .mini-total-price {
  font-size: 18px;
}
.cartDrawer .webi-mini-cart-footer .checkout-btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 30px;
}
.cartDrawer .webi-mini-cart-footer .link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cartDrawer .webi-mini-cart-footer .link-btn svg path{
fill: var(--black) !important;
}
.link-btn svg {
  fill: var(--second-color);
  margin-left: 10px;
  width: 20px;
  height: auto;
}
.cartDrawer .remove_item svg path {
  fill: var(--theme-color) !important;
}
.cartDrawer .remove_item svg {
  height: 15px !important;
  width: 15px !important;
}
.cartDrawer .emptyCart {
  padding: 50px 0 0 0;
}
.cartDrawer .link-btn:before {
  display: none;
}
body:not(.index) .cartDrawer .mini-cart-has-item{
color: var(--black);
}
.cartDrawer .closecart {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
}
.cartOpen .cartDrawer .closecart {
    opacity: 1;
    visibility: visible;
}
.mini-cart-details svg path{
  fill: var(--black);
}
.mini-cart-footer{
    -webkit-box-shadow: 0 0 8px #0000004d;
            box-shadow: 0 0 8px #0000004d;
}
.mini-cart-top {
    padding: 20px;
}
.cartDrawer .mini-cart-footer-icons .footer-bottom-icon {
    width: auto;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    padding: 12px 35px;
    border: none;
    width: 47%;
    background-color: var(--theme-color);
    border-radius: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.cartDrawer .mini-cart-footer-icons svg {
    width: 30px;
    height: 30px;
}
.cartDrawer .mini-cart-footer-icons svg path {
    stroke: var(--white);
}
.cartDrawer .mini-cart-footer-icons {
    margin-bottom: 15px;
}
.cartDrawer .mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-color);
}
.cartDrawer .mini-cart-footer-total-row div {
    padding: 0 10px;
}
.mini-total-lbl {
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
    line-height: 1;
}
.cartDrawer .mini-cart-footer-total-row div.mini-Subtotal {
    text-align: right;
}
.mini-cart-bottom {
    width: 100%;
}
.cartDrawer .mini-cart-bottom .cart-bottom-btn {
    padding: 15px 20px;
    width: 50%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    background-color: var(--black);
}
.cartDrawer .mini-cart-bottom .view-cart-btn {
    background-color: var(--theme-color);
}
.cartDrawer .mini-cart-body, .coupon-popup .coupon-body, .gift-popup .gift-body {
    overflow-y: auto;
    padding: 30px;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}
.coupon-popup .coupon-txt {
    gap: 10px;
    margin-bottom: 12px;
    color: var(--black);
}
.coupon-popup .coupon-txt svg {
    height: 30px;
    width: 30px;
}
.coupon-code {
    position: relative;
}
.coupon-code .apply-coupon-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.coupon-popup .common-close svg, .gift-popup .common-close svg{
    height: 18px;
    width: 18px;
}
.coupon-popup .common-close svg path, .gift-popup .common-close svg path{
  fill: var(--black);
}
.gift-popup .gift-body .checkbox-custom label:before{
      border: 1px solid var(--black);
}
.cartDrawer.is-empty .cart__warnings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}
.cart__warnings, .cartDrawer .minicart__warnings, .cartDrawer .cart__empty-text, .cartDrawer.is-empty .cart__contents, .cartDrawer.is-empty .cart__footer, .cartDrawer .cart-items.is-empty .title-wrapper-with-link, #main-cart-footer.is-empty {
    display: none;
}

.cartDrawer svg#icon-cart-emty {
    width: 55px;
    height: auto;
    fill: currentColor;
    margin: 0 auto 15px auto;
}
/***********  NEW CARTDRAWER CSS  ***********/
.cartDrawer .related-cart-wrp{
  margin-top: 25px;
}
.cartDrawer .related-cart-wrp h3{
  margin-bottom: 15px;
  font-size: 25px;
}
.cartDrawer .related-cart-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--border-color);
  padding: 15px;
}
.cartDrawer .related-cart-inner .related-image a{
  position: relative;
  padding-top: 100%;
  display: block;
}
.cartDrawer .related-cart-inner a img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: inherit;
       object-fit: inherit;
}
.cartDrawer .related-image{
    position: relative;
    max-width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    width: 100%;
    background: whitesmoke;
    padding: 10px;
}
.cartDrawer .related-cart-text{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 15px;
}
.cartDrawer .related-cart-text h4{
  font-size: 18px;
  margin-bottom: 12px;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.cartDrawer .related-cart-text a{
  text-decoration: underline;
}
.cartDrawer .related-cart-price{
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
.related-cart-wrp .swiper-pagination-bullet-active{
  background: var(--third-color);
}
.cartDrawer .cart-slider{
  position: relative;
}
.cartDrawer .swiper-pagination{
  position: relative;
  margin-top: 25px;
}
/**** SEARCH POPUP CSS ****/
.search-popup, .size-popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 4;
  padding: 0 30px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.5s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.search-popup.active, .size-popup.active {
  opacity: 1;
  visibility: visible;
}
.search-form-wrapper {
  max-width: 1000px;
  width: 100%;
}
.search-form-wrapper form {
  width: 100%;
  position: relative;
}
.search-popup .close-search {
  position: absolute;
  left: 50px;
  top: 50px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.search-popup .close-search svg {
  height: 100%;
  width: 100%;
}
.search-form-wrapper .form-inputs {
  width: 100%;
  position: relative;
}
.search-form-wrapper .form-inputs input::-webkit-input-placeholder {
  color: white;
}
.search-form-wrapper .form-inputs input::-moz-placeholder {
  color: white;
}
.search-form-wrapper .form-inputs input:-ms-input-placeholder {
  color: white;
}
.search-form-wrapper .form-inputs input::-ms-input-placeholder {
  color: white;
}
.search-form-wrapper .form-inputs input::placeholder {
  color: white;
}
.search-form-wrapper input {
  padding: 15px 60px 15px 20px;
  color: var(--white);
}
.search-form-wrapper input::-webkit-input-placeholder {
  color: var(--theme-color);
}
.search-form-wrapper input::-moz-placeholder {
  color: var(--theme-color);
}
.search-form-wrapper input:-ms-input-placeholder {
  color: var(--theme-color);
}
.search-form-wrapper input::-ms-input-placeholder {
  color: var(--theme-color);
}
.search-form-wrapper input::placeholder {
  color: var(--theme-color);
}
.search-form-wrapper .btn {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 45px;
  padding: 0;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.search-form-wrapper .predictive-search-bottom .btn{
-webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
}
.search-form-wrapper .btn svg {
  width: 16px;
  height: 16px;
  margin: 0 auto;
}
.search-form-wrapper .btn svg path {
  fill: var(--white) !important;
}
/*****  SUBSCRIBE POPUP CSS *****/
.subscribe-popup {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  color: var(--white);
  z-index: 5;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
} 
.subscribe-popup .close-sub-btn svg path {
  fill: var(--white);
}
.subscribe-popup h2 {
  font-family: var(--second-font);
  font-weight: 500; 
  font-size: 31px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-style: italic;
}
.subscribe-overlay {
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 3;
  background: rgba(79, 70, 50, 0.93);
  visibility: hidden;
  opacity: 1;
}
.subscribe-overlay.open{ 
  opacity: 1;
  visibility: visible;
}
.subscribe-popup .sub-close-btn{
  text-align: end;
  margin-bottom: 20px;
}
.subscribe-popup .sub-close-btn .btn svg path{
  fill: var(--second-color);
}
.subscribe-popup .sub-close-btn .btn svg{
  margin-left: 0px;
  margin-right: 8px;
}
.subscribe-popup .sub-close-btn .btn:hover svg path{
  fill: var(--white);
}
.subscribe-popup .sub-left-inner{
  background: var(--white);
  padding: 40px 29px;
  color: var(--theme-color);
}
.subscribe-popup .sub-right-inner img{
  height: 100%;
  width: 100%;
-o-object-fit: cover;
   object-fit: cover;
}
.subscribe-popup .sub-right-inner .img-wrapper{
  padding-top: 96%;
}
.subscribe-popup .sub-left-inner h3 b{
  color: var(--theme-color);
}
.subscribe-popup .sub-left-inner p{
  margin: 15px 0px;
}
.subscribe-popup .subscriber-form input{
  margin-top: 10px;
 color: var(--theme-color);
 padding: 14px 40px 14px 20px;
}
.subscribe-popup .subscriber-form .enter-email-row{
  position: relative;
margin-bottom: 20px;
}
.subscribe-popup .subscriber-form .btn-svg {
  background: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  padding: 0;
  height: 25px;
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.subscribe-section-form {
  position: relative;
}
.subscribe-section-form small {
  margin: 15px 0 0;
  z-index: 2;
}
/********** COMMON  CSS  **********/ 
.offset-container { 
  position: relative; 
}
.offset-left{
  margin-left: calc((100% - 1200px) / 2);
  padding-left: 15px;
}  
.offset-right {
  margin-right: calc((100% - 1200px) / 2);
  margin-left: 0;
  padding-right: 15px;
}   
/****************  TABS CSS *****************/ 
.tab-content {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  display:none;
}
.tab-content.active {
  visibility: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  display:block;
}
/* ============================================= */
/* !!!!             FOOTER CSS             !!!! */
/* ============================================= */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 70px 0px 30px 0px;
  color: var(--black);
}
.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0px 30px;
}
.footer-col {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 70px;
}
.site-footer .social-icon {
  padding: 0;
  max-width: 280px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}
.footer-subscribe-col {
  max-width: 350px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
}
.social-icon .footer-logo a svg{
  height: 100%;
  width: 100%;
}
.social-icon .social-ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icon .social-ul li:not(:last-of-type){
  margin-right: 15px;
}
.social-icon .social-ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-icon .social-ul li a svg{
  height: 22px;
  width: 22px;
}
.site-footer .footer-widget p {
  padding: 0 0 20px;
  color: var(--black);
}
.site-footer .footer-widget h5{
  padding: 0 0 20px 0;
}
.site-footer .footer-link .footer-widget ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.site-footer .footer-link .footer-widget ul li{
  color: var(--black);
}
.site-footer .footer-link .footer-widget ul li:hover{
  color: var(--theme-color);
}
.site-footer .footer-link-3 .footer-widget h4 {
  text-align: end;
}
.footer-subscribe-col h6{
  font-size: 15px;
  margin-bottom: 5px;
}
.footer-subscribe-col .contactlink {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--second-color);
}
.footer-subscribe-col .addresslink{
  font-size: 18px;
  color: var(--second-color);
margin: 0px;
}
.social-icon .footer-logo{
  max-width: 140px;
  width: 100%;
  margin-bottom: 20px;
}
.footer-logo a{
  display: block;
}
.footer-bottom {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap:15px;
}
.footer-bottom .payment-image-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-mobile {
  display: none;
}
.footer-desk{
  display: block;
}
.acnav-list {
  display: none;
}
/***** HOME BANNER SECTION *****/
.homebnr-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.homebnr-wrapper img {
  width: 100%;
}
.main-banner-sec .banner-content-wrapper{
position: relative;
padding: 300px 0px 230px;
max-width: 620px;
width: 100%;
margin: auto;
text-align: center;
color: var(--white);
}
.home-banner-slider .img-wrapper img{
-o-object-position: top;
   object-position: top;
}
#shopify-product-reviews{
  margin: 0px !important;
}
.banner-content-wrapper p {
margin-bottom: 20px;
}
.banner-content-wrapper .subtitle, .banner-content-wrapper p{
color: var(--white);
}
.home-btn-wrapper .swiper-button-next {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
}
.home-btn-wrapper .swiper-button-prev {
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
}
.main-banner-sec:hover .home-btn-wrapper .swiper-button-next, .main-banner-sec:hover .home-btn-wrapper .swiper-button-prev {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
}
/** HOME LAYOUT THREE **/
.home-layout-three .main-banner-sec .banner-content-wrapper .section-title h2{
font-family: var(--second-font);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.home-layout-three .main-banner-sec .banner-content-wrapper{
  max-width: 390px;
  color: var(--second-color);
}
.home-layout-three .banner-content-wrapper .subtitle, .home-layout-three .banner-content-wrapper p{
  color: var(--second-color);
}
.home-layout-three .banner-content-wrapper p{
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.home-layout-three p {
  color: var(--theme-color);
}
/***** FASHIONABLE ABOUT SECTION *****/
.fashionable-about-sec{
  position: relative;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 40px 0px;
}
.fashionable-about-sec .fashionable-content-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.fashionable-about-sec  .subtitle{
  margin-bottom: 10px;
  color: var(--white);
}
.fashionable-about-sec .fashionable-image{
display: block;
transition: all 600ms ease-in-out 0s;
transform: rotateY(0deg);
-webkit-transition: all 600ms ease-in-out 0s;
-moz-transition: all 600ms ease-in-out 0s;
-ms-transition: all 600ms ease-in-out 0s;
-o-transition: all 600ms ease-in-out 0s;
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
}
.fashionable-about-sec .fashionable-content-inner:hover .fashionable-image {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
.fashionable-about-sec .fashionable-image img{
  height: 100%;
  width: 100%;
}
/** HOME LAYOUT THREE **/
.home-layout-three .fashionable-about-sec{
  margin-bottom: 0px;
}
/***** MAIN CATEGORY SECTION *****/
.main-category-sec{
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.main-category-sec .category-img-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category-img-box-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category-img-box-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  padding: 150px 20px 30px 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.category-img-box-body img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 4s cubic-bezier(0, 0, 0.1, 1);    
  -webkit-transition: all 4s cubic-bezier(0, 0, 0.1, 1);
  -moz-transition: all 4s cubic-bezier(0, 0, 0.1, 1);
  -ms-transition: all 4s cubic-bezier(0, 0, 0.1, 1);
  -o-transition: all 4s cubic-bezier(0, 0, 0.1, 1);
}
.category-img-box-body:hover img{
-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
}
.main-category-sec .row [class*="col-"]{
  padding: 0 10px;
}   
.main-category-sec .category-img-box .category-small-box{
  margin-bottom: 20px;
}
.category-img-box-body:after {
  content: "";
  background: none repeat scroll 0 0 rgba(0,0,0,.07);
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  left: 10px;
  -webkit-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
  -webkit-transform: rotate(-180deg) scale(0);
  -ms-transform: rotate(-180deg) scale(0);
  transform: rotate(-180deg) scale(0);
}
.category-img-box-body:hover::after {
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
}
/***** PRODUCT SECTION *****/
.product-sec {
  position: relative;
  padding-top: 70px;
}
.product-sec .section-title-center{
  max-width: 610px;
}
.product-card-inner .img-wrapper {
  padding-top: 122%;
}
.blog-card-image a {
  position: relative;
overflow: hidden;
width: 100%;
  height: 100%;
}
.blog-card-image a img{
 width: 100%;
  height: 100%;
}
.blog-card-image a:before {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.blog-card .blog-card-inner:hover .blog-card-image a:before {
  opacity: 1;
}
.blog-card .blog-card-inner .blog-lbl.new-lbl {
position: absolute;
top: 15px;
right: 15px;
padding: 5px 15px;
opacity: 0;
  font-size:12px;
visibility: hidden;
transition: all 400ms ease-in-out;
transform: translateX(130px);
-webkit-transition: all 400ms ease-in-out;
-moz-transition: all 400ms ease-in-out;
-ms-transition: all 400ms ease-in-out;
-o-transition: all 400ms ease-in-out;
-webkit-transform: translateX(130px);
-moz-transform: translateX(130px);
-ms-transform: translateX(130px);
-o-transform: translateX(130px);
}
.blog-card .blog-card-inner:hover .blog-lbl.new-lbl {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
}
.product-card .product-card-inner, .blog-card .blog-card-inner  {
  position: relative;
  width:100%;
border: 1px solid var(--border-color);
overflow:hidden;
}
.product-top-content a, .blog-top-content a {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
margin: 0 0 10px;
}
#ProductGridContainer .product-card .product-card-inner{
width: 100%;
border: 1px solid var(--border-color);
}
.product-card .top-lable {
  position: absolute;
  top: 10px;
  left: 10px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  gap:5px;
}
.product-card .product-lbl{
  padding: 2px 10px;
  background: var(--third-color);
  color: var(--white);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
   font-size:12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bloge-card .new-lbl{
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--white);
  left: auto;
  background: var(--theme-color);
  color: var(--white);
  padding: 2px 10px;
}
.wish-lbl-wrp{
position:absolute;
top:10px;
right:10px;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
    -ms-flex-direction:column;
        flex-direction:column;
gap:8px;
}
.new-lbl{
   padding: 2px 10px;
  background: var(--second-color);
  color: var(--white);
   font-size:12px;
}
.product-card .simple-countdown{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--third-color);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 4px 0px;
}
.product-card .product-image-bottom{
  position: absolute;
  bottom: 0;
  width: 100%;
}
.product-card .simple-countdown .countdown-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
}
.product-card .simple-countdown .countdown-container .dots{
  margin: 0px 5px;
}
.product-card-inner .product-content, .blog-card-inner .blog-content{
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.product-card .product-top-content p, .blog-card .blog-top-content p  {
  margin: 0px 0px 10px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.collection .reviews-stars-wrap {
  display: none;
}
.pro-color:not(:last-of-type) {
  margin-right: 3px;
}
.product-card input[type=radio] {
  display: none;
}
fieldset {
  border: none;
}
.product-card .color-swatch-variants label {
margin: 0 3px;
padding: 0;
border-radius: 100%;
min-width: 14px;
min-height: 14px;
font-size: 11px;
line-height: 12px;
text-align:center;
-webkit-box-shadow: 0 0 0 1px 0 0 0 1px var(--black);
        box-shadow: 0 0 0 1px 0 0 0 1px var(--black);
border: none;
display: inline-block;
vertical-align: top;
cursor: pointer;
position: relative;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
}
.product-card .color-swatch-variants label.varcolor{
  font-size: 0px;
  -webkit-box-shadow: 0 0 0 1px #11111126;
          box-shadow: 0 0 0 1px #11111126;
}
.pro-color label.active:after{
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: -3px;
  bottom: -3px;
  border: 1px solid var(--theme-color);
}
.pro-color label.varcolor.active:after{
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.product-card .price{
  margin: 0px 0px 10px;
}
.product-card .product-content .product-bottom-content .reviews-stars-wrap span.spr-badge {
  margin: 0 0 10px;
}
.product-card .price ins{
  font-size: 16px;
}
.product-card .price del {
   font-size: 14px;
}
.product-card {
  overflow: hidden;
}
.product-card .pro-wishlist, .product-card .pro-compare,  .product-card .quickview-btn{
opacity: 0;
width: 30px;
height: 30px;
background-color: var(--third-color);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
border: 1px solid var(--third-color);
visibility: hidden;
margin-left: auto;
transition: all 500ms ease-in-out;
transform: translateX(50px);
-webkit-transition: all 500ms ease-in-out;
-moz-transition: all 500ms ease-in-out;
-ms-transition: all 500ms ease-in-out;
-o-transition: all 500ms ease-in-out;
-webkit-transform: translateX(50px);
-moz-transform: translateX(50px);
-ms-transform: translateX(50px);
-o-transform: translateX(50px);
  cursor: pointer;
} 
.product-card .pro-wishlist svg path, .product-card .pro-compare svg path,  .product-card .quickview-btn svg path{
  fill: var(--white);
}
.product-card:hover .pro-wishlist, .product-card:hover .pro-compare,  .product-card:hover .quickview-btn {
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
}
.product-card:hover .pro-wishlist, .product-card:hover .cart-btn-content, .product-card:hover .pro-compare,  .product-card:hover .quickview-btn {
  opacity: 1;
  visibility: visible;
}
.product-card .pro-compare, .compare-label svg, .product-card .pro-wishlist, .wishlist-label svg {
  cursor: pointer;
}
.product-card .cart-btn-content form{
  margin: 0 20px 20px;
}
.product-card .product-image-bottom .btn{
  width: 100%;
}
.product-card .cart-btn-content {
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}

.product-card .product-image-wrapper{
  position: relative;
}
.product-card .product-content .product-top-content, .blog-card .blog-content .blog-top-content  {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
.product-arrow-wrapper .swiper-button-next {
  top: auto;
  bottom: 14px;
  right: 50%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
}
.product-arrow-wrapper .swiper-button-prev {
  top: auto;
  bottom: 14px;
  left: 50%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
}
.product-bottom-btn{
  text-align: center;
  padding-top: 40px;
}
.product-arrow-wrapper{
  position: absolute;
  bottom: -15px;
  left: 39%;
}
/***** OFFER SECTION *****/
.offer-sec{
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(42%, transparent), color-stop(42%, var(--sixth-color)) );
  background: -o-linear-gradient(top, transparent 42%, var(--sixth-color) 42% );
  background: linear-gradient(to bottom, transparent 42%, var(--sixth-color) 42% );
}
.offer-sec .offer-banner {
  position: relative;
  z-index: 1;
  padding: 40px;
overflow: hidden;
}
.offer-sec .offer-banner img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 4s cubic-bezier(0,0,.1,1);
-webkit-transition: all 4s cubic-bezier(0,0,.1,1);
-moz-transition: all 4s cubic-bezier(0,0,.1,1);
-ms-transition: all 4s cubic-bezier(0,0,.1,1);
-o-transition: all 4s cubic-bezier(0,0,.1,1);
}
.offer-sec .offer-banner:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.offer-sec .offer-column .subtitle, .offer-sec .offer-column p,.offer-sec .offer-column h3{
  color: var(--white);
}
.offer-sec .offer-column{
  max-width: 500px;
  margin-left: auto;
  background: rgba(127, 121, 107, 0.47);
  padding: 40px;
  text-align: end;
}
.offer-sec .offer-column p{
  margin-bottom: 15px;
}   
.offer-sec .offer-banner::after{
content: "";
  background: none repeat scroll 0 0 rgba(0,0,0,.07);
  position: absolute;
  display: block;
  top: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  left: 10px;
  -webkit-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
  -webkit-transform: rotate(-180deg) scale(0);
  -ms-transform: rotate(-180deg) scale(0);
  transform: rotate(-180deg) scale(0);
}
.offer-sec .offer-banner:hover::after {
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
}
/** HOME LAYOUT THREE **/
.home-layout-three .offer-sec .offer-column {
  background: var(--second-color);
}     
/***** SHOP CATEGORY SECTION *****/
.shop-category-sec{
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}
.shop-category-sec .shop-category-box .category-lbl{
  padding: 3px 8px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.27);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
font-size:12px;
  color: var(--white);
}
.shop-category-sec .shop-category-box .category-img-box-body{
  color: var(--white);
  padding: 200px 20px 30px 30px;
}
.shop-category-sec .shop-category-box .content-box-title{
  max-width: 350px;
  width: 100%;
}
.shop-category-sec .shop-category-box h3{
  margin: 15px 0px;
}
.shop-category-sec .shop-category-box p{
  color: var(--white);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.shop-category-sec .shop-category-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/***** BESTSELLER SECTION *****/
.bestseller-sec{
  position: relative;
}
.bestseller-sec .section-title{
  text-align: center;
  max-width: 430px;
  width: 100%;
  margin: 0 auto 26px;
}
.bestseller-sec .tabs-container{
  position: relative;
}
.bestseller-sec .section-title h2{
  margin-bottom: 15px;
}
ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.tabs li {
  font-weight: 500;
  cursor: pointer;
  color: var(--theme-color);
}
ul.tabs li.active {
  font-weight: 700;
  text-decoration: underline;
}
.bestseller-sec .tab-btn-wrapper{
  position: absolute;
  bottom: -81px;
  left: 39%;
}
.bestseller-sec .tabs-container .swiper-button-next{
  top: auto;
  bottom: 0;
  transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
}
.bestseller-sec .tabs-container .swiper-button-prev {
  top: auto;
  bottom: 0;
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
}
/*****  CMS SECTION *****/
.cms-sec{
  padding-bottom: 70px;
}
.cms-sec .cms-image{
  position: relative;
  display: block;
  height: 100%;
overflow:hidden;
}
.cms-sec .cms-image img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
transition: all 4s cubic-bezier(0,0,.1,1);
-webkit-transition: all 4s cubic-bezier(0,0,.1,1);
-moz-transition: all 4s cubic-bezier(0,0,.1,1);
-ms-transition: all 4s cubic-bezier(0,0,.1,1);
-o-transition: all 4s cubic-bezier(0,0,.1,1);
}
.cms-sec .cms-image:hover img{
-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
        transform: scale(1.1);
}
.cms-sec .cms-image::after{
content: "";
background: none repeat scroll 0 0 rgba(0,0,0,.07);
position: absolute;
display: block;
top: 10px;
right: 10px;
bottom: 10px;
opacity: 0;
left: 10px;
-webkit-transition: all 400ms ease-in-out 0s;
-o-transition: all 400ms ease-in-out 0s;
transition: all 400ms ease-in-out 0s;
-webkit-transform: rotate(-180deg) scale(0);
-ms-transform: rotate(-180deg) scale(0);
transform: rotate(-180deg) scale(0);
}
.cms-sec .cms-image:hover::after{
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
}
.cms-sec .cms-content{
  text-align: center;
  max-width: 450px;
  margin: auto;
}
.cms-sec .cms-content p{
  margin-bottom: 15px;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
/*****  TESTIMONIALS SECTION *****/
.testimonials-sec{
  position: relative;
  z-index: 1;
}
.testimonials-sec .testi-bnr{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.section-title-center {
  text-align: center;
  max-width: 570px;
  width: 100%;
  margin: 0 auto 26px;
}
.section-title-center h2{
  margin-bottom: 15px;
}

.testi-card {
    width: 100%;
}
.testimonials-sec .testi-card-inner{
  background: var(--white);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--theme-color);
}
.testimonials-sec .testi-card-inner p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card-inner .review-star img{
  width:100%;
height:100%;
-o-object-fit:scle-down;
   object-fit:scle-down;
}
.testi-card-inner .client-info .client-img img{
  width:100%;
height:100%;
}
.testi-card-inner .client-info{
  color: var(--theme-color);
}
.testi-card-inner .client-img{
  max-width: 35px;
width:100%;
  margin: 15px auto;
}
/** HOME LAYOUT TWO **/
.home-layout-three .testimonials-sec{
  color: var(--second-color);
}
.home-layout-three .testimonials-sec .testi-card-inner{
  border: 1px solid var(--second-color);
}
.home-layout-three .testimonials-sec .testi-card-inner p{
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
/*****  BLOG SECTION *****/
.blog-slider{
  padding-bottom: 80PX;
}
.blog-slider .product-arrow-wrapper {
  left: 50%;
}
/*****  OUR INSTA  SECTION *****/
.bg-gradient{
  background: -webkit-gradient(linear, left top, left bottom, from(#FAF6ED), to(rgba(250, 246, 237, 0)));
  background: -o-linear-gradient(top, #FAF6ED 0%, rgba(250, 246, 237, 0) 100%);
  background: linear-gradient(180deg, #FAF6ED 0%, rgba(250, 246, 237, 0) 100%);
}
.our-insta-sec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.our-insta-sec ul li {
  padding: 0px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 16.667%;
  width: 100%;
}
.our-insta-sec ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.our-insta-sec ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*****  PARTNER LOGO SECTION *****/
.partner-logo-sec .partner-logo-slider .swiper-slide{
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partner-logo-sec .partner-logo-item a img{
  height: 100%;
  width: 100%;
}
.partner-logo-item a {
transition: all 700ms ease-in-out;
-webkit-transition: all 700ms ease-in-out;
-moz-transition: all 700ms ease-in-out;
-ms-transition: all 700ms ease-in-out;
-o-transition: all 700ms ease-in-out;
transform: translateY(0px);
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
-o-transform: translateY(0px);
}
.partner-logo-item:hover a {
transform: translateY(-10px);
-webkit-transform: translateY(-10px);
-moz-transform: translateY(-10px);
-ms-transform: translateY(-10px);
-o-transform: translateY(-10px);
}
.partner-logo-slider .swiper-button-prev, .partner-logo-slider .swiper-button-next{
  opacity: 0;
  visibility: hidden;
}
.partner-logo-slider:hover .swiper-button-prev, .partner-logo-slider:hover .swiper-button-next{
  opacity: 1;
  visibility: visible;
}
/*****  SUBSCRIBE BANNER SECTION *****/
.subscribe-sec .subscribe-column{
  max-width: 500px;
  width: 100%;
  margin: auto 80px auto auto;
  text-align: center;
}
.subscribe-sec .subscribe-column h3{
  font-weight: 400;
}
.subscribe-section-form .input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.subscribe-section-form .input-wrapper input{
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.subscribe-section-form  .input-wrapper .btn-subscibe{
  padding: 14px 20px;
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.subscribe-section-form  .input-wrapper .btn-subscibe:hover{
  background-color: var(--third-color);
  border: 1px solid var(--third-color);
}
/** HOME LAYOUT TWO **/
.subscribe-full-sec{
  position: relative;
  z-index: 1;
  padding: 70px 0px;
}
.subscribe-full-sec .subs-bnr-img{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.subscribe-full-sec::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(59.42deg, #F4F1E9 0%, rgba(0, 0, 0, 0) 60.98%);
  background: linear-gradient(30.58deg, #F4F1E9 0%, rgba(0, 0, 0, 0) 60.98%);
  z-index: -1;
}
.subscribe-full-sec{
   margin: 70px 0 0;
}
body.product .subscribe-full-sec ,body.index .subscribe-full-sec{
margin: 0px 0 0 !important;
}
body.product .site-footer{
     padding: 70px 0 100px;
}
/********** PRODUCT PAGE CSS **********/
.pdp-filter-cat-sec{
  background: var(--second-color);
  color: var(--white);
  padding: 10px 0px;
}
.pdp-filter-cat li:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}
.pdp-filter-cat li:not(:last-of-type):after {
  content: '>';
  position: absolute;
  right: -1px;
}
.pdp-page-main-sec{
  position: relative;
  padding: 40px 0px;
}
/** slider **/
.pdp-slider-wrapper{
display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pdp-left-column.product-slider-left .pdp-slider-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product-slider-right .gallery-thumbs {
  padding: 0 0 0 20px;
}
.product-slider-center .gallery-main, .product-slider-center .gallery-thumbs {
max-width: 100%;
padding:0px;
}
.product-noslider .gallery-main {
  max-width: 100%;
}
.product-slider-center .gallery-thumbs {
  margin: 20px 0 0;
}
.pdp-left-column.product-slider-center .gallery-thumbs .pdp-thumb-image {
  margin: 0;
padding-top: 32%;
}
.gallery-main {
  position: relative;
  max-width: calc(100% - 120px);
  width: 100%;
  margin-left: auto;
}
.gallery-thumbs {
  max-width: 120px;
  width: 100%;
  max-height: 550px;
  padding-right: 20px;
  overflow: hidden;
}  
.pdp-left-column{
  position: relative;
}
.pdp-slider-img {
  position: relative;
  padding-top: 122%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
.pdp-slider-img img, .pdp-slider-img video, .pdp-slider-img iframe, .pdp-thumb-img svg, .pdp-thumb-img video, .pdp-thumb-img iframe, .pdp-thumb-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.pdp-page-main-sec .gallery-main .product-arrow-wrapper {
  bottom: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  right: 0;
  left: auto;
}
.pdp-page-main-sec .gallery-main .swiper-button-prev, .pdp-page-main-sec .gallery-main .swiper-button-next{
  position: relative;
  bottom: 0;
}
/** slider end **/
.pdp-right-column .pdp-top-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.pdp-right-column .pdp-top-content .pdp-top-labl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.new-labl{
  background: var(--second-color);
  color: var(--white);
  padding: 5px 15px;
  width: auto;
font-size:12px;
}
.dis-labl{
  background: var(--third-color);
}
.pdp-whislist-btn{
  height: 40px;
  width: 40px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pdp-right-column  .pdp-rating{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.pdp-right-column .available-product{
  position: relative;
  background-color: #F8F0E8;
  padding: 8px 15px 8px 30px;
}
.pdp-right-column .available-product::before{
  content: '';
  position: absolute;
  top: 11px;
  left: 8px;
  height: 12px;
  width: 12px;
  border-radius: 10px;
  background-color: #B1DB3A;
}
.pdp-right-column .available-product.soldout {
  color: #ff0000;
}
.pdp-right-column .available-product.soldout::before {
  background-color: #ff0000;
}
.pdp-right-column .pdp-rating .review-rating svg{
  margin-right: 10px;
}
.pdp-right-column .size-select .radio-buttons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.pdp-right-column .size-select .button input[type="radio"]  {
  display: none;
}
.pdp-right-column  .size-select .button input[type="radio"]:checked+label, .sticky-pro-inn .button label.sticky-active {
  border-color: var(--second-color);
  color: var(--second-color);
}
.pdp-right-column .size-select .button label  {
  cursor: pointer;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 14px;
  border: 2px solid #DFDACC;
  color: #B1A88F;
}
.pdp-right-column .size-select .radio-buttons .button .clr,.sticky-pro-inn .radio-buttons .button .clr{
width: 20px;
height: 20px;
display: block;
-ms-flex-negative: 0;
    flex-shrink: 0;  
border: 1px solid var(--seventh-color);
border-radius: 100%;
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
-ms-border-radius: 100%;
-o-border-radius: 100%;
}
.pdp-right-column .size-based {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 10px;
background-color: #F1DDC7;
padding: 8px 12px;
}
.pdp-right-column .size-based p {
  line-height: 1;
}
.pdp-right-column .size-guide-wrapper {
  gap: 10px;
}
.pdp-right-column .size-based svg{
  height: 16px;
  width: 16px;
}
.pdp-right-column .size-guide-wrapper .see-size a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  text-decoration: underline;
  gap: 5px;
  margin-left: 5px;
}
.pdp-right-column .size-guide-wrapper .see-size a svg{
  height: 12px;
  width: 12px;
}
.spr-badge-caption {
  display: block;
  line-height: 1;
}
.spr-badge-starrating {
  margin: 0 3px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spr-badge {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
} 
.recentlyview .product-card .price{
  margin-bottom: 0px;
}
/***** SIZE POPUP *****/
.size-popup{
  display: table;
}
.size-close-btn{
  text-align: end;
}
.size-close-btn svg{
  margin-left: 0px;
  margin-right: 5px;
}
/** table css **/
table {
  border: 0;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: auto;
  text-align: left;
  border: 2PX solid var(--border-color);
}
table tr {
  display: block;
}
@media (min-width: 576px){
  .size-tbl table tr {
      display: table-row;
  }
}
table tr th {
  text-align: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--border-color);
}
table tr td[data-label="Stamp ID"], table tr td[data-label="Country"], table tr td[data-label="Scott"] {
  font-weight: 700;
}
table tr td[data-label="Stamp ID"] {
  text-align: center;
  background-color: #C0C0C0;
}
table tr td {
  padding: 10px 10px 5px;
  display: block;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
}
table tr {
  padding: 20px 0 0;
}   
@media (min-width: 768px){
table tr td {
  padding: 20px 10px 20px;
  display: table-cell;
  text-align: center;
}
table tr {
  display: table-row;
}
}    
.size-popup table tr td{
  padding: 10px;
}
.size-table-wrapper{
position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  z-index: 5;
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.size-popup .size-form{
  background-color: var(--white);
  padding: 20PX;
  max-height: 80vh;
  height: 100%;
  overflow: auto;
}
.size-popup .size-form H4{
  margin-bottom: 20px;
}
.size-popup .btn-white{
  margin-bottom: 20px;
}
table tr .bg-gray{
  background: var(--fourth-color);
}
.pdp-right-column .pdp-timer .simple-countdown{
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 10px;
padding: 6px 15px;
border: 1px solid var(--border-color);
}
.pdp-right-column .countdown-container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}
.pdp-right-column .simple-countdown svg{
  height: 20px;
  width: 20px;
}
.pdp-right-column .simple-countdown .countdown-container span{
  margin: 0px 3px;
}
.pdp-right-column .price-qty-wrp{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 15px;
margin: 0 0 15px;
}
.pdp-right-column .price-qty-wrp .price ins{
  font-size: 22px;
}
.pdp-right-column .price-qty-wrp .price del{
  font-size: 14px;
}
.pdp-right-column  .qty-spinner button{
  width: 30px;
}
.pdp-right-column .price-qty-wrp .btn{
    padding: 13.5px 15px 13.5px;
}
.pdp-right-column .price-qty-wrp .btn-transparent svg path{
  fill: var(--third-color);
}
.pdp-right-column .price-qty-wrp .btn-transparent:hover svg path,.pdp-right-column .price-qty-wrp .btn-transparent:focus svg path{
  fill: var(--white);
}
.pdp-right-column .free-dlvry-wrp{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--border-color);
}
.pdp-right-column .free-dlvry-wrp .free-delivery{
padding: 10px;
-webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
}
.pdp-right-column label {
  line-height: 1;
  display: block;
}
.pdp-right-column .free-dlvry-wrp .delivery-svg svg{
  height: 25px;
  width: 25px;
}
.pdp-right-column .free-dlvry-wrp .delivery-content{
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pdp-right-column  .free-dlvry-wrp .delivery-content h6{
  margin-bottom: 7px;
}
.pdp-right-column  .free-dlvry-wrp .free-delivery:not(:last-of-type){
  border-right: 1px solid var(--border-color);
}
.pdp-page-main-sec .pdp-right-column{
  position: relative;
}
.pdp-right-column .pdp-social-icons {
background-color: #f5f5f5;
padding: 10px;
float: right;
margin-top: 15px;
}
.pdp-right-column .pdp-social-icons span{
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  margin: 0 auto;
}
.pdp-right-column .pdp-social-icons ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pdp-right-column .pdp-social-icons ul li:not(:last-of-type){
  margin-bottom: 10px;
}
.pdp-right-column .pdp-social-icons ul{
  margin-top: 15px;
}
.pdp-left-column .gallery-thumbs .pdp-thumb-image{
  margin-bottom: 25px;
}
.pdp-right-column .section-title{
  max-width: 74%;
  width: 100%;
  margin-bottom: 20px;
}
.pdp-right-column .section-title h3{
  margin-bottom: 10px;
}
.pdp-right-column  .select-color-grp .radio-buttons, .pdp-right-column .size-select .radio-buttons{
  margin:8px 0 15px;
}
.pdp-right-column .size-select {
  display: block;
  margin: 0 0 15px;
}
.pdp-right-column .size-guide-wrapper {
  margin: 0 0 15px;
}
.pdp-right-column .price-qty-wrp .qty-spinner{
  height: 44px;
}
.quickview-popup .qnty-btn-wrp .qty-spinner{
  height: 39px;
}
.pdp-right-column .pdp-timer{
  margin:0 0 15px;
}
/************** video product page css *************/
deferred-media.deferred-media {
position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-top: 122%;

}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.deferred-media[loaded]>.deferred-media__poster {
  display: none !important;
}
.product__modal-opener:not(.product__modal-opener--image) {
  display: none;
}
.deferred-media__poster-button.motion-reduce {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%) scale(1);
z-index: 1;
padding: 10px;
background: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--blue)), to(var(--second-color)) ) border-box;
background: -o-linear-gradient(right, var(--blue) 50%, var(--second-color) ) border-box;
background: linear-gradient(to left, var(--blue) 50%, var(--second-color) ) border-box;
background: var(--second-color);
border-radius: 10px;
-webkit-transform: translate(-50%,-50%) scale(1);
-moz-transform: translate(-50%,-50%) scale(1);
-ms-transform: translate(-50%,-50%) scale(1);
-o-transform: translate(-50%,-50%) scale(1);
}
.deferred-media__poster-button.motion-reduce svg {
  fill: var(--white);
}
.deferred-media:not([loaded]) template {
  z-index: -1;
}
/** pdp tab sec **/ 
.pdp-tab-sec .pdp-tab-left{
  max-width: 82%;
  width: 100%;
  margin-left: auto;
}
.pdp-tab-sec .tab-img img{
  height: 100%;
  width: 100%;
}
.pdp-tab-sec .pdp-tab-right .tab-head-row{
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px
}
.pdp-tab-sec .pdp-tab-right ul.tabs {
  margin-bottom: 0px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li a{
  padding: 0 20px 10px;
  position: relative;
  display: block;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li a:before {
  content: '';
  height: 2px;
  width: 100%;
  bottom: -1px;
  background: var(--second-color);
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.pdp-tab-sec .pdp-tab-right ul li a:hover:before, .pdp-tab-sec .pdp-tab-right ul li.active a:before {
  opacity: 1;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li.active {
  text-decoration: none;
  font-weight: 500;
  color: var(--second-color);
}
.pdp-tab-sec .review-content .review-wrp{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec .review-content .customer-review .review-image{
  margin: 10px 0px;
}
.pdp-tab-sec .review-content .review-pdp-title{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 10px;
}
.pdp-tab-sec .review-content .review-pdp-wrp{
  padding: 15px 0px;
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec .review-content .review-title-left h6{
  margin-left: 15px;
}
.pdp-tab-sec .review-content .review-title-left h6 span{
  font-size: 14px;
  color: var(--theme-color);
}
.pdp-tab-sec .review-pdp-wrp .section-title{
  max-width: 80%;
  width: 100%;
  margin: 0px;
}
.pdp-tab-sec .review-pdp-wrp .section-title p{
  margin-top: 10px;
}
.pdp-tab-sec .payment-content .section-title h5{
  margin-bottom: 15px;
}
.pdp-tab-sec .payment-content .ship-wrp .section-title p:not(:last-of-type){
  margin-bottom: 10px;
}
.pdp-tab-sec .payment-content .section-title{
  margin-bottom: 0px;
}
.pdp-tab-sec .payment-content .payment-wrp{
  padding: 0px 0px 15px;
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec .payment-content .ship-wrp{
  padding-top: 15px;
}
.shopify-payment-button__button {
  text-align: center;
  padding: 11px 25px;
  font-family: var(--first-font);
  color: var(--white);
  background-color: var(--theme-color);
  appearance: none;
  outline: none;
  border: 1px solid var(--theme-color);
  position: relative;
  font-size: 14px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.shopify-payment-button__button:hover, .shopify-payment-button__button:focus {
  background-color: var(--third-color) !important;
  color: var(--white);
  border-color: var(--third-color);
}
.shopify-payment-button__button[disabled] {
  display: none;
}
.pdp-tab-sec .jdgm-rev-widg__summary-text{
  margin: 15px 0px !important;
}
.jdgm-question-form-wrapper, .jdgm-form-wrapper {
    margin-top: 15px;
}
/** pdp image banner sec **/ 
.pdp-img-bnr-sec{
  position: relative;
}
.pdp-img-bnr{
  position: relative;
  z-index: 1;
  padding: 40px 40px 40px 80px;
}
.pdp-img-bnr img{
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.pdp-img-bnr-sec .img-bnr-column{
  max-width: 500px;
}
.pdp-img-bnr-sec .img-bnr-column ul{
  margin-top: 15px;
}
.pdp-img-bnr-sec .img-bnr-column ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
margin-bottom: 10px;
} 
.pdp-img-bnr-sec .img-bnr-column ul li:last-child{
margin-bottom: 0px;
}
.pdp-img-bnr-sec .img-bnr-column ul li .check-svg{
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.pdp-img-bnr-sec .img-bnr-column ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.pdp-img-bnr-sec .img-bnr-column ul li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pdp-main-slider-itm{
  border: 1px solid var(--border-color);
  padding: 15px;
}
.view-slider .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.view-product-sec .product-card .product-top-content p{
  margin: 10px 0px 0px;
}
.view-product-sec .product-card .price {
  margin: 10px 0px 0px;
}
/************** COMMON BANNER SECTION CSS *************/
.common-banner-section {
  padding: 70px 0;
  background: var(--theme-color);
  color: var(--white);
  background-position: 50% 50%;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}   
.common-banner-content .section-title {
  margin-bottom: 15px;
}
.common-banner-content .section-title span {
  font-weight: 400;
  font-size: 20px;
}
.common-banner-section .filter-cat{
margin-bottom: 10px;
text-transform: uppercase;
}
.common-banner-section .filter-cat li:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}
.common-banner-section .filter-cat  li:not(:last-of-type):after {
  content: '>';
  position: absolute;
  right: -1px;
}
.back-btn {
  color: var(--white);
  text-decoration: underline;
}
.back-btn svg{
  height: 12px;
  width: 12px;
  margin-right: 5px;
}
body.product .product-sec {
  background: var(--sixth-color);
}
/*********** PRODUCT LISTING PAGE CSS  ***********/  
.product-heading-row .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; 
  padding: 70px 0 0px;
}
.product-filter-body {
  position: relative;
  border: 1px solid var(--border-color);
  margin: 20px 0 0;
} 
.product-heading-column .filter-title{
  padding: 12px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-filter-column .product-filter-body:before {
  content: '';
  position: absolute;
  left: -50vw;
  width: 50vw;
  height: 100%; 
}  
.filter-select-box {
  min-width: 160px;
}
.filter-title .icon {
  display: none;
}
.filter-title .filter-icon svg{
  height: 20px;
  width: 20px;
  margin-right: 15px;
}
.product-heading-row .sort-lbl {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}  
.product-heading-row .nice-select {
  width: 170px;
  padding: 8px 10px;
}
.produdt-filter-cat li a {
  font-weight: 500;
}
.produdt-filter-cat li:not(:last-of-type) {
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
}
.produdt-filter-cat li:not(:last-of-type):after {
  content: '/';
  position: absolute;
  right: -1px;
}
.acnav-list {
  display: none;
  padding: 10px 0px 0px 0px;
}
.product-cat-widget .acnav-list {
  padding: 10px 0 0px 20px;
}
.product-widget .acnav-label {
  display: block;
  position: relative;
  font-weight: 600;
}
.product-widget>.pro-itm>.acnav-label{
  font-weight: 600;
  padding: 10px ;
  text-transform: uppercase;
  background-color: var(--fourth-color);
}
.product-widget .acnav-list li a {
  text-transform: capitalize;
}
.product-widget .acnav-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.pro-itm-inner>.filter-listing>ul>li>.acnav-list {
  padding: 10px 0 0px 10px;
}
.product-widget .acnav-label:after {
  content: '';
  position: absolute;
  height: 12px;
  width: 12px;
  background-image: url(down-arrow1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  cursor: pointer;
}
.product-widget.disclosure-has-popup[open] .acnav-label:after{
  transform: translateY(-50%) rotate(-180deg);
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
} 
.product-widget:not(:last-of-type){
  border-bottom: 1px solid #E2E2E2;
}
.product-widget {  
  padding: 10px ;
} 
.text-checkbox .checkbox {
  margin: 0;
  float: left;
  padding-right: 9px;
  padding-bottom: 10px;
}
.text-checkbox .checkbox input[type=checkbox] {
  display: none;
}
.text-checkbox .checkbox input[type=checkbox]+.checkbox-label {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 2px solid #DFDACC;
  width: auto;
  position: relative;
  font-weight: 600;
  letter-spacing: 0px;
  top: 0;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  font-size: 13px;
  border-radius: 5px;
  padding: 8px 19px;
  text-transform: lowercase;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
}
.text-checkbox .checkbox input[type=checkbox]:checked+.checkbox-label {
  border: 2px solid var(--second-color);
} 
.delete-all {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  margin: 0px 0 0;
}
.delete-all svg {
  height: 12px;
  margin-right: 5px;
  width: 12px;
}
.delete-all svg  path{
  fill: var(--second-color);
}
.product-tag-widget ul li a {
  padding: 10px 12px;
  background: transparent;
  color: var(--theme-color);
  font-size: 12px;
  line-height: 1;
  border: 1px solid var(--theme-color);
}
.product-tag-widget ul li a:hover,.product-tag-widget ul li.active a {
  background: var(--theme-color);
  color: var(--white);
}
.product-tag-widget ul li:not(:last-of-type) {
  margin-right: 5px;
}
.product-tag-widget ul li {
  display: inline-block;
}
#range-slider {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 23px;
}
.ui-slider-horizontal .ui-slider-range {
  background-color: var(--second-color);
  height: 3px !important;
  top: -1px !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}
.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-active,.ui-widget-content .ui-state-active,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus {
  background: var(--theme-color) !important;
  border: 1px solid var(--second-color) !important;
}
.ui-widget-content {
  background: #dddddd !important;
  border: none !important;
  border-radius: 0 !important;
  height: 1px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}
.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active {
  font-weight: normal;
  height: 11px !important;
  width: 11px !important;
  top: -5px !important;
  margin-left: 0 !important;
  background: #dddddd; 
  border: 2px solid var(--second-color) !important;
  border-radius: 10px;
  z-index: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.colour-col:not(:last-of-type) {
  padding: 0 15px 0 0;
}
.price-select {
  margin-left: -5px;
  margin-right: -5px;
}
.select-col p {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}
.select-col {
  width: 100%;
  max-width: 50%;
  padding: 0 5px;
}
.sorting-select {
  min-width: 125px;
}
.sorting-select select {
  padding: 10px 15px 9px;
  color: var(--black);
}
.product-price-widget .acnav-list {
  padding: 10px 0px 10px 0;
}
.colors-checkbox label {
  width: 100%;
}
.custom-checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.custom-checkbox,.colors-checkbox label {
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  text-align: left;
}
.custom-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  left: 0;
}
.custom-checkbox input[type="checkbox"]+.color,.custom-checkbox input[type="radio"]+.color {
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  width: 0.9375rem;
  height: 0.9375rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}
.color,.custom-checkbox input[type="checkbox"]+span.color {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}
.custom-checkbox input[type="checkbox"]:checked+span.color {
  border: 2px solid var(--second-color);
}
.custom-checkbox input[type="checkbox"]:checked+span.color:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 9px;
  border: solid var(--second-color);
  border-width: 0px 1px 1px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.color-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 10px;
  font-size: 13px;
  font-weight: 500;
}
.color-name .color-count{
  background: var(--fourth-color);
  padding: 1px 4px;
  font-size: 12px;
}
.product-widget .acnav-list .colors-checkbox:not(:last-of-type) {
  margin-bottom: 8px;
}
.product-filter-right-column {
  padding-top: 20px !important;
}
.product-filter-right-column .row {
  margin: 0 -15px 0;
}
.product-filter-right-column .theme-colored-card {
  padding: 0 10px;
  margin-bottom: 20px;
} 
.theme-colored-card .product-card-inner{
  color: var(--theme-color);
  background: rgba(106, 89, 61, 0.13);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
} 
.theme-colored-card .product-card-inner:hover {
  background: rgb(78 56 20 / 51%);
}
.theme-colored-card .link-btn:before{
  background-color: var(--theme-color);
}
.theme-colored-card .pro-wishlist svg path {
  fill: var(--theme-color);
}
.prod-listing-cat {
  color: var(--theme-color);
} 
.product-filter-right-column .product-bottom-content {
  margin-top: 0;
} 
.product-filter-right-column .product-card { 
  margin-bottom: 20px;
}
.featured-inner-section .product-card .product-card-inner{
  border: 1px solid var(--second-color);
}
.text-checkbox .checkbox .clr {
  width: 12px;
  height: 12px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.product-size-widget .text-checkbox .checkbox input[type=checkbox]+.checkbox-label{
  padding: 8px 8px;
  font-size: 14px;
}
.product-size-widget  .text-checkbox .checkbox input[type=checkbox]:checked+.checkbox-label {
 color: var(--second-color);
}
.product-fil-btn .filter-btn{
  width: 100%;
  margin-bottom: 15px;
}
.product-fil-btn .btn-transparent{
  width: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--theme-color);
}
.product-fil-btn .btn-transparent:hover{
  background: transparent;
}
.product-heading-right-column .product-sorting-row{
  border: 1px solid var(--border-color);
  padding: 7px;
}
.product-heading-right-column ul.filter-list li{
  background: var(--fourth-color);
  height: 25px;
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-heading-right-column ul.filter-list{
  gap: 10px;
  margin-bottom: 0px;
}
.product-heading-right-column ul.filter-list li.active{
  background: var(--second-color);
}
.product-heading-right-column ul.filter-list li.active svg path{
  fill: var(--white);
}
.product-heading-right-column .filter-list-wrp p{
  margin-left: 10px;
}
.filter-select-wrp .featured-select{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-heading-row .show-select .nice-select {
  width: 60px;
}
.filter-select-wrp .show-select{
  margin-left: 15px;
}
.product-heading-right-column ul.filter-list li svg{
  height: 15px;
  width: 15px;
}
  .jdgm-rev-widg__summary {
    margin: 0 0 0px 0 !important;
  }
/** grid view css **/
.product-grid-view .product-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-grid-view .product-card-inner .product-card-image{
  max-width: 200px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  width: 100%;
}
.product-grid-view .product-card-inner .product-top-content{
  max-width: 350px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
}
.product-grid-view .product-card-inner .product-bottom-content{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: end;
}
.product-grid-view .product-card-inner .wish-lbl-wrp{
position: unset;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
    -ms-flex-direction:revert;
        flex-direction:revert;
gap: 10px;
-webkit-box-pack:end;
    -ms-flex-pack:end;
        justify-content:end;
margin-bottom:15px;

}
.product-grid-view .product-card-inner .top-lable{
  position: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.product-grid-view .product-card-inner .wish-lbl-wrp .pro-compare, .product-grid-view .product-card-inner .wish-lbl-wrp .quickview-btn {
  margin: 0;
}
.product-grid-view .product-card-inner .product-top-content h4{
  margin: 15px 0px 10px;
}
.product-grid-view .product-bottom-content .reviews-stars-wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-grid-view .product-card .pro-wishlist, .product-grid-view .product-card .pro-compare, .product-grid-view .product-card .quickview-btn{
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.product-grid-view .product-card .price{
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.product-grid-view .color-swatch-variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 10px;
}
.product-grid-view .product-card .cart-btn-content{
  opacity: 1;
  visibility: visible;
  margin: 0;
}
.product-grid-view .product-card .cart-btn-content .btn{
  width: auto;
}
.product-filter-right-column .product-grid-view .product-card {
  margin-bottom: 0px;
  width: 100%;
}
.product-filter-right-column .product-grid-view .product-card .product-card-inner{
  border-bottom: 1px solid var(--border-color);
  padding: 15px 15px;
}
.product-grid-view .product-card:first-of-type .product-card-inner{
  border-top: 1px solid var(--border-color);
}
.product-filter-body .close-filter{
  display: none;
}
/*********** PRODUCT LISTING LEFT CANVAS PAGE CSS  ***********/
.collection-rightbar .product-heading-row .row, .collection-rightbar .product-list-row{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.collection-rightbar .facets-container menu-drawer .mobile-facets__open,.collection-rightfilter .facets-container menu-drawer .mobile-facets__open{
margin-left: auto;
}
#ProductGridContainer .filter-column-title {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
border-bottom: 1px solid var(--border-color);
padding: 0 0 10px;
margin: 0 0 15px;
}
.filter-column-title svg {
width: 16px;
height: 16px;
}
.collection-leftfilter .product-filter-body,.collection-rightfilter .product-filter-body{
  border: none;
}
.collection-leftfilter .product-widget,.collection-rightfilter .product-widget {
  padding: 20px 0;
}
.product-filter-column::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgb(6 6 6 / 30%);
background-color: #F5F5F5;
}
.product-filter-column::-webkit-scrollbar {
width: 5px;
}
.product-filter-column::-webkit-scrollbar-thumb {
background-color:var(--border-color);
}
.collection-rightfilter .product-heading-row .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
/** COLLECTION LIST PAGE CSS **/    
.collection-main-sec .product-card .new-lbl{
  right: auto;
  left: 15px;
}
.collection-main-sec .product-card-inner .product-content{
  background-color: var(--fourth-color);
  margin-top: 0px;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.collection-main-sec .product-card-inner .product-bottom-content{
  width: 100%;
}
.collection-main-sec .product-card-inner .product-bottom-content .btn{
  padding: 11px 25px;
  width: 100%;
}
.collection-main-sec .product-card {
  margin-bottom: 20px;
}
.collection-main-sec .product-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
/** BLOG PAGE CSS **/    
.blog-banner-sec .common-banner-content .section-title{
  margin-bottom: 0px;
}
.blog-grid-sec .blg-recent .blog-itm{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  border-top: 1px solid var(--border-color);
}
.blog-grid-sec .blg-recent{
  border: 1px solid var(--border-color);
}
.blog-grid-sec .blogleftbar .section-title{
  padding: 10px;
  margin-bottom: 0px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-image{
  max-width: 90px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-image .img-wrapper{
  padding-top: 90%;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content h6{
margin-bottom: 10px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content svg{
  height: 13px;
  width: 13px;
  margin-right: 5px;
}
.blog-grid-sec .blogrightbar .blog-content{
  background-color: var(--fourth-color);
  margin-top: 0px;
  padding: 15px;
}
.blog-grid-sec .blogrightbar .blog-content .blg-cmnt{
  margin-top: 10px;
}
.blog-grid-sec .blogrightbar .blog-card{
  margin-bottom: 20px;
}
.blog-grid-sec .rightbar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.blog-grid-sec .blg-elagant{
  border: 1px solid var(--border-color);
  margin-top: 20px;
}
.blog-grid-sec .blogleftbar .elegant-slider{
  padding: 10px 10px 60px;
  border-top: 1px solid var(--border-color);
}
.blog-grid-sec .blogleftbar  .product-card-inner .product-content{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-grid-sec .blogleftbar .product-card .product-top-content{
  text-align: center;
}
.blog-grid-sec .blogleftbar .product-card .reviews-stars-wrap {
  text-align: center;
}
.blog-grid-sec .blogleftbar .elegant-slider .product-arrow-wrapper {
  bottom: 0px;
  left: 50%;
}
.pagination-row ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-row ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination-row ul li a{
  padding: 5px 10px;
  display: inline-block;
}
.pagination-row ul li a.active {
  background-color: var(--fourth-color);
}
.pagination-row ul li:not(:last-of-type){
  margin-right: 5px;
}
.pagination-row ul li a svg{
  height: 10px;
  width: 10px;
}
/** ARTICLE PAGE CSS **/   
.article-banner-sec .common-banner-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.article-banner-sec .filter-cat {
  margin-bottom: 0px;
}
.article-banner-sec .common-banner-content .back-btn{
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.article-banner-sec .common-banner-content .back-btn svg{
  margin-right: 0px;
}
.article-banner-sec .article-bnr-img img{
  width: 100%;
}
.article-banner-sec {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, var(--theme-color)), color-stop(20%, transparent));
  background: -o-linear-gradient(top, var(--theme-color) 80%, transparent 20% 100%);
  background: linear-gradient(to bottom, var(--theme-color) 80%, transparent 20% 100%);
}
.articlebar .section-title{
  max-width: 60%;
  width: 100%;
}
.articlebar .section-title .subtitle{
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
line-height: 1;
}
.articlebar .about-user{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.articlebar .abt-user-img img{
  height: 100%;
  width: 100%;
}
.articlebar p {
  margin-bottom: 25px;
}
.articlebar h4{
  font-size: 28px;
}
.articlebar h4, .articlebar h5{
  margin-bottom: 20px;
}
.articlebar .art-top-heading{
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.articlebar .article-img{
  width: 100%;
  margin-bottom: 15px;

}
.articlebar .art-auther{
  margin-bottom: 15px;
}
.articlebar .quote-box{
  padding-left: 25px;
  border-left: 2px solid var(--second-color);
  margin-bottom: 25px;
}
.articlebar .quote-box h5{
  color: var(--theme-color);
  font-size: 24px;
  line-height: 1.2;
}
.articlebar p a{
  text-decoration: underline;
}
.articlebar .art-tags-icons-wrp{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--border-color);
  padding: 15px;
  margin-bottom: 40px;
}   
.articlebar .art-tags-icons-wrp .tags-ul li{
  padding: 4px 20px;
  border: 1px solid var(--border-color);
}
.articlebar .art-tags-icons-wrp .tags-ul li:not(:last-of-type){
  margin-right: 10px;
}
.articlebar .art-tags-icons-wrp label{
  margin-right: 15px;
}
.art-tags-icons-wrp .art-social{
  background-color: #f5f5f5;
  padding: 10px;
}
.articlebar .comment-form-wrp{
  background: var(--sixth-color);
}
.articlebar .comment-form{
  max-width: 750px;
  margin: auto;
  padding: 40px;
}
.articlebar .comment-form .section-title{
  margin: auto;
  max-width: 100%;
  text-align: center;
}
.articlebar .social-icon .social-ul li a svg{
  height: 18px;
  width: 18px;
}
/** MY ACCOUNT PAGE CSS **/  
.my-acc-sec table tr th{
  background-color: #F0F0F0;
  padding: 10px;
}
.my-acc-sec table{
  border: 1px solid #F0F0F0;
}
.my-acc-sec table tr {
  border-bottom: 1px solid #F0F0F0;
}
.my-acc-sec table tr td{
  padding: 15px 15px 15px;
}
.my-acc-sec .account-details ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0px;
  border-top: 1px solid var(--border-color);
}
.my-acc-sec .account-details ul li:last-child{
  border-bottom: 1px solid var(--border-color);
}
.my-acc-sec .account-details ul li label{
  max-width: 10%;
  width: 100%;
}
.my-acc-sec  .order-history-frame{
  margin-bottom: 40px;
}
.my-acc-sec .acc-btn-wrp{
  margin-top: 30px;
}
.my-acc-sec .acc-btn-wrp .acc-btn{
  margin-right: 15px;
}
@media (max-width: 767px) {
  table tr td:before {
    content: attr(data-label);
    display: block;
    text-align: center;
    padding-right: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    float: left;
}
  .my-acc-sec table tr td {
    text-align: right;
}
  table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      display: none;
  }
}    
/** ABOUT PAGE CSS **/  
.about-us-page .about-right-inner,.about-full-img-sec .about-full-img{
position: relative;
overflow: hidden;
}
.about-us-page .about-right-inner::after,.about-full-img-sec .about-full-img::after{
content: "";
background: none repeat scroll 0 0 rgba(0,0,0,.07);
position: absolute;
display: block;
top: 10px;
right: 10px;
bottom: 10px;
opacity: 0;
left: 10px;
-webkit-transition: all 400ms ease-in-out 0s;
-o-transition: all 400ms ease-in-out 0s;
transition: all 400ms ease-in-out 0s;
-webkit-transform: rotate(-180deg) scale(0);
-ms-transform: rotate(-180deg) scale(0);
transform: rotate(-180deg) scale(0);
}
.about-us-page .about-right-inner:hover::after,.about-full-img-sec .about-full-img:hover::after{
  -webkit-transform: rotate(0) scale(1);
  -ms-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
}
.about-us-page .about-right-inner img,.about-full-img-sec .about-full-img img{
width: 100%;
transition: all 4s cubic-bezier(0,0,.1,1);
-webkit-transition: all 4s cubic-bezier(0,0,.1,1);
-moz-transition: all 4s cubic-bezier(0,0,.1,1);
-ms-transition: all 4s cubic-bezier(0,0,.1,1);
-o-transition: all 4s cubic-bezier(0,0,.1,1);
}
.about-us-page .about-right-inner:hover img,.about-full-img-sec .about-full-img:hover img{
transform: scale(1.1);
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
}
.about-us-page .about-left-inner .section-title{
  max-width: 80%;
  width: 100%;
margin-bottom:0;
}
.about-us-page .about-left-inner .section-title h2{
  margin-bottom: 26px;
}
.about-counter-sec .counting{
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.about-counter-sec .counting::after{
content: " +";
display: inline-block;
}
.about-counter-sec .counting-letter::after{
content: "k";
}
.about-counter-sec .counter-item{
  text-align: center;
}
.about-counter-sec .counter-item p{
  margin-top: 10px;
}
.about-team-sec  .product-card .product-top-content p{
  margin: 10px 0px 0px;
}
.about-team-sec .section-title h2{
  margin-bottom: 15px;
}
/** FAQ PAGE CSS **/  
.faq-page .set {
  border: 1px solid var(--border-color);
}
.faq-page .faq-acnav .set:not(:last-of-type){
  margin-bottom: 30px;
}
.faq-page .set .acnav-label {
  padding: 15px 35px 15px 15px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}
.faq-page .set .acnav-label:after {
  content: "";
  position: absolute;
  background-image: url(plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
  height: 20px;
  width: 20px;
  border-radius: 20px;
  background-color: var(--second-color);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  right: 10px;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.faq-page .set.is-open .acnav-label::after {
  background-image: url(minus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
}
.faq-page .set .acnav-list {
  padding: 15px;
  border-top: 1px solid var(--border-color);
  color: var(--theme-color);
}
.faq-page .faq-right-itm .faq-form, .contact-page .contact-right-inner .contact-form{
  border: 1px solid var(--border-color);
}
.form-container {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}
.form-container .btn{
  width: 100%;
max-width: 100%;
}
.form-container:last-child {
  border-bottom: 0;
}
.faq-page .faq-left-itm .section-title h2{
  margin-bottom: 20px;
}
/** CONTACT PAGE CSS **/  
.contact-page{
  position: relative;
  z-index: 2;
}
.contact-left-inner ul li h5{
  margin-bottom: 15px;
}
.contact-left-inner ul .social-link{
  margin-bottom: 30px;
}
.contact-left-inner ul .social-link .social-inner-link li{
  margin-bottom: 5px;
}
.contact-about-sec{
  margin-bottom: 0px;
}
.contact-left-inner ul li .address{
  line-height: 26px;
}
.contact-left-inner ul .social-link .social-icons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-left-inner ul .social-link .social-icons li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-left-inner ul .social-link .social-icons li:not(:last-of-type){
  margin-right: 15px;
}
.contact-form .form-heading h4{
  margin-bottom: 15px;
}
.contact-form .form-container p a {
  text-decoration: underline;
}
.contact-direction-sec{
  position: relative;
  z-index: 1;
}
.contact-direction-sec .direction-banner{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.contact-direction-sec .contact-direction-column{
background-color: var(--white);
max-width: 300px;
padding: 30px;
text-align: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
}
.contact-direction-sec .contact-direction-column .direction-logo img{
  margin: auto;
}
.contact-direction-sec .contact-direction-column p{
  margin: 15px 0px 0;
}
.contact-right-inner{
  background: var(--white);
  margin-bottom: -350px;
}
/** CMS PAGE CSS **/  
.cms-page h4, .cms-page h6{
  margin-bottom: 20px;
}
.cms-page p:not(:last-of-type) {
  margin-bottom: 25px;
}
.cms-page p, .cms-page ul li{
  color: var(--seventh-color);
}
.cms-page ul {
  margin: 0px 15px 25px;
  padding-left: 20px;
}
.cms-page ul li {
  list-style: disc;
}
.cms-page ul li:not(:last-of-type) {
  margin-bottom: 9px;
}
.cms-page ul li a:hover {
    color: var(--black);
}
.cms-page .shipping-tbl{
  max-width: 500px;
  border: 0;
  margin: 0 0 25px;
}
.cms-page table tr th, .cms-page table tr td{
  text-align: start;
}
.cms-page table tr th{
  background-color: var(--second-color);
  color: var(--white);
  padding: 15px;
}
.cms-page table tr td{
  background-color: #F5F5F5;
  padding: 15px 15px 15px;
}
.cms-page table .bg-transparent td{
  background-color: transparent;
}
.cms-page .help-link {
  margin: 0px 15px 0px;
}
/** CART PAGE CSS **/  
.cart-table{
  border: 0;
}
.cart-table tr th, .cart-table tr td {
  text-align: left;
  padding: 10px;
}
table tr td:first-child a {
  vertical-align: middle;
}
@media (min-width: 768px){
.cart-table tr th:first-child, .cart-table tr td:first-child {
    width: 140px;
}
}
.cart-table tr{
  border-bottom: 1px solid var(--border-color);
}
.cart-table tr td:first-child {
  padding-left: 0;
}
.cart-table .price{
  margin: 15px 0px 10px;
  font-weight: 600;
}
.cart-table .product-option{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-table .product-option:not(:last-of-type){
  margin-bottom: 5px;
}
.cart-table .product-option dt{
  font-weight: 500;
  margin-right: 5px;
}
@media (min-width: 768px){
.cart-table tr th:last-child, .cart-table tr td:last-child {
  text-align: right;
}
.cart-table tr td:last-child{
  padding-right: 0;
}
}
.cart-table .qty-spinner button, .cart-table .qty-spinner input{
  background-color: var(--border-color);
}
.cart-table tr td:last-child{
  font-weight: 600;
}
.cart-page-sec .coupon-table{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.cart-page-sec .coupon-text-btn-wrp{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cart-page-sec .subtotal{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cart-page-sec .btn-transparent{
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.cart-page-sec .btn-transparent:focus, .cart-page-sec .btn-transparent:hover{
  color: var(--white);
}
.cart-page-sec .btn-transparent svg path{
  fill: var(--theme-color);
}
.cart-page-sec .btn-transparent svg {
  margin-left: 0;
  margin-right: 10px;
}
.cart-page-sec .btn-transparent:hover{
  color: var(--white);
}
.cart-page-sec .btn-transparent:hover svg path{
  fill: var(--white);
}   
.cart-page-sec .continue-btn{
  width: auto;
  margin-right: 20px;
}
.cart-page-sec .order-note{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cart-page-sec textarea{
  padding: 12px 20px;
  height: 39px;
}
.cart-page-sec .subtotal span p{
  font-size: 12px;
  margin-top: 5px;
}
.cart-page-sec .subtotal .price ins{
  font-size: 22px;
  margin-left: 10px;
}
.cart-banner-sec .common-banner-content .section-title {
  margin-bottom: 0px;
}
.cart-table tr td .quantity-wrp{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cart-table tr td .quantity-wrp .remove-btn svg{
  height: 20px;
  width: 20px;
}
.cart-table tr td .quantity-wrp .remove-btn{
  height: 20px;
  width: 20px;
  margin: 7px; 
}
.cart-table tr td:nth-child(2) {
  width: 55%;
}
/** REGISTER PAGE CSS **/ 
.register-page{
  background-color: var(--theme-color);
} 
.register-page .login-form-inner{
  background-color: var(--white);
  padding: 20px;
}
.register-page  .account-info-icon li a{
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-border-radius: 50%;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin: 0 auto 10px;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.register-page  .account-info-icon{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
}
.register-page  .account-info-icon li a svg{
  height: 30px;
  width: 30px;
}
.register-page .login-form-inner .section-title h3{
  margin-bottom: 15px;
}
.register-page .login-form-inner .form-container{
  padding: 0;
  border: 0;
}
.register-page .login-form-inner .form-container .forgot-pass{
  text-decoration: underline;
  text-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 15px;
}
.register-page .login-form-inner .form-container .ssl-secure{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.register-page .login-form-inner .create-btn{
  width: 100%;
text-transform: uppercase;
}
.register-page .login-right-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
}
.register-page .login-right-inner .login-right-top{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}
.register-page .login-right-inner .login-right-bottom{
  height: 100%;
  padding: 20px;
  background-color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.register-page  .account-info-icon li p{
  color: var(--white);
  text-align: center;
}
.register-page .shop-btn{
  text-align: center;
  margin-top: 30px;
  text-transform: uppercase;
}
/** ERROR PAGE CSS **/ 
.error-main-sec{
  background-color: var(--theme-color);
  color: var(--white);
}
.error-main-sec .eroor-content{
  text-align: center;
}
.error-main-sec .eroor-content .large-text{
  font-size: 100px;
  font-family: var(--third-font);
  font-weight: 500;
  line-height: 75%;
}
.error-main-sec .eroor-content .form-input{
  max-width: 400px;
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
.error-main-sec .eroor-content .form-input input{
  padding: 14px 40px 14px 20px;
  color: var(--white);
}
.error-main-sec .eroor-content .form-input input::-webkit-input-placeholder{
  color: var(--white);
}
.error-main-sec .eroor-content .form-input input::-moz-placeholder{
  color: var(--white);
}
.error-main-sec .eroor-content .form-input input:-ms-input-placeholder{
  color: var(--white);
}
.error-main-sec .eroor-content .form-input input::-ms-input-placeholder{
  color: var(--white);
}
.error-main-sec .eroor-content .form-input input::placeholder{
  color: var(--white);
}
.error-main-sec .eroor-content .form-input .input-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: none;
}
.error-main-sec .eroor-content .section-title h3{
  margin: 25px 0 20px;
}
/** ORDER PAGE CSS **/ 
.order-history-list .order-title{
  margin-bottom: 26px;
}
.order-history-list .order-title h4{
  margin-bottom: 15px;
}
.order-payment-box{
  max-width: 300px;
  margin-left: auto;
  border: 1px solid #F0F0F0;
  padding: 20px;
  border-top: 0;
}
.order-payment-box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.order-payment-box ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
.order-address-sec{
  background-color: var(--fourth-color);
  padding: 70px 0px;
}
.order-address-inner .address-title{
  background: var(--border-color);
  padding: 10px;
  margin-bottom: 20px;
}
/** mobile sticky CSS **/ 
.mobile-sticky-wrp{
-webkit-box-shadow: 0 5px 30px rgb(0 0 0 / 26%);
        box-shadow: 0 5px 30px rgb(0 0 0 / 26%);
background-color: var(--white);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
padding: 8px 40px;
gap: 15px;
transition: all ease-in-out 0.5s;
-webkit-transition: all ease-in-out 0.5s;
-moz-transition: all ease-in-out 0.5s;
-ms-transition: all ease-in-out 0.5s;
-o-transition: all ease-in-out 0.5s;
}
.mobile-sticky-wrp svg {
height: 22px;
width: 22px;
margin: 0 auto 5px;
}
.mobile-stickybar{
position: fixed;
bottom: 0px;
right: 0px;
left: 0px;
z-index: 2;
visibility: hidden;
opacity: 0;
}
.mobile-sticky-wrp ul li a{
text-align: center;
}
.mobile-stickybar.show{
  visibility: visible;
  opacity: 1;
}
.mobile-sticky-wrp li {
  line-height: 1;
}
.mobile-sticky-wrp span{
display: block;
line-height: 1;
font-size: 13px;
}
/*===========================SHF-CSS=======================*/
/* ========quick-view===== */
.quickview-popup{
display: none; 
position: fixed;
top: 50%;
left: 0;
right: 0;
max-width: 900px;
max-height: calc(100% - 100px);
width: 95%;
margin: 0 auto;
text-align: center;
background-color: var(--fourth-color);
z-index: 4;
-webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
transition: all ease-in-out .5s;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
    overflow: auto;
}
.pdp-right-column .qnty-btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px 0 0;
  gap: 10px;
}
.quickview_popup_data .pdp-whislist-btn {
  background: var(--theme-color);
}
.quickview_popup_data .pdp-page-main-sec {
  padding: 0;
}
/*======== quickview custom css ======== */
.quickview-close{
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 3;
  cursor: pointer;
}
.quickview_popup_data .pdp-right-column .section-title{
max-width: 100%;
  text-align: left;
}
.quickview_popup_data .pdp-right-column{
    text-align: left;
}
.quickview_popup_data .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quickview_popup_data{
 padding: 20px 0px;
}
.qv-price{
margin-top:0px;
}
.qv_select__select{
margin-top:10px;
margin-bottom:10px;
}
.qv-price ins{
font-size: 22px;
  font-weight: 600;
}
/* sticky button */
.products_add-cart-sticky{
display: none;
z-index: 2;
position: -webkit-fixed;
position: fixed;
bottom: 0;
background-color: #f1ddc7;
font-size: 20px;
width: 100%;
max-height: 100%;
padding: 10px 50px;
}
.products_add-cart-sticky.show-btn{
display: block;
}
.products_add-cart-sticky .sticky-image{
height: 60px;
}
.products_add-cart-sticky .sticky-pro-inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding:15px 0px;
}
/*==== product bottom sticky css ======  */
.products_add-cart-sticky.pro-bottom-sticky-cart{
padding:0px;
}
.sticky-pro-info{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
gap: 10px;
}
.sticky-pro-info .sticky_title{
  font-size: 18px;
}
.sticky-pro-inn .size-select .radio-buttons{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sticky-pro-inn .size-select .button input[type="radio"]  {
  display: none;
}
.sticky-pro-inn .size-select .button label.sticky-active {
  border-color: var(--second-color);
  color: var(--second-color);
}
.sticky-pro-inn .size-select .button label  {
  cursor: pointer;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 14px;
  border: 2px solid #b8a672;
  color: #b8a672;
}
.products_add-cart-sticky .sticky-price {
  font-size: 16px;
  margin: 5px 0 0;
}
.products_add-cart-sticky .size-select {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products_add-cart-sticky .size-select.select-box {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 350px;
}
.products_add-cart-sticky .size-select.select-box select {
  margin: 0 20px 0 10px;
}
.products_add-cart-sticky .var-label{
padding: 5px;
}
.jdgm-write-rev-link.jdgm-write-rev-link{
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 25px;
}
/*======= product notify btn custom css =======*/
.notify-sold .notify-btn{
padding: 14px 35px;
border: 1px solid var(--theme-color);
background: var(--theme-color);
color: var(--white);
font-size: 14px;
line-height: 1;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-transition: all ease-in-out .5s;
-o-transition: all ease-in-out .5s;
transition: all ease-in-out .5s;
}
.notify-sold .notify-btn:hover, .notify-sold .notify-btn:focus {
  background-color: var(--third-color);
  color: var(--white);
  border-color: var(--third-color);
}
.out-of-stock-form{
position: fixed;
top: 50%;
padding: 50px 40px;
left: 0;
right: 0;
max-width: 30%;
max-height: calc(100% - 100px);
width: 100%;
margin: 0 auto;
text-align: center;
background-color: var(--fifth-color);
z-index: 5;
-webkit-transition: all ease-in-out .4s;
-o-transition: all ease-in-out .4s;
transition: all ease-in-out .4s;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
overflow: auto;
opacity: 0;
visibility:hidden;
-webkit-transform: scale(.9);
    -ms-transform: scale(.9);
        transform: scale(.9);
-webkit-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.out-of-stock-form.active {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
visibility:visible;
}
.notify-txt{
line-height:1.4;
}
.notify-popup-close{
   width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.notify-send-btn{
position:relative;
margin-top:20px;
}
.notify-send-btn input{
height: 45px;
width:100%;
padding: 15px 106px 15px 15px;
}
.notify-send-btn button{
    position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: auto;
  padding: 10px 35px;
  background: #000;
  color: #fff;
}
/*======= currency =======*/
.currency {
  padding-left: 20px;
}
/*======== infinty loader =========*/
.infinit-pagination a {
  margin: 30px auto 0;
  display: block;
}
.infinity-loader {
  width: 30px;
  height: 30px;
margin:0 auto;
}
.js-load-more .hide .infinity-loader {
  margin-left: 8px;
}
.js-load-more {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.load-more_wrap {
  margin: 15px auto 0;
}
/* load more btn */
.hide{
display:none;
}
/* load more btn */
.input-box {
position: relative;
}
/* silder zoom */
.pdp-slider-img.zoom img {
  background-color: #F6F6F6;
  cursor: crosshair;
}
/*===========================SHF FREE SHIPPING BAR=======================*/
.mini-cart-has-item .free_shipping_bar{
    margin-bottom: 20px;
}
.free_shipping_txt{
    font-size: 18px;
}
.free_shipping_txt .progress_bar_design{
margin-top:20px;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.bar_design_icon{
  width: 26px;
  height: 26px;
  border: 1px solid #ffbc11;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  background: #fff;
}
.free_shipping_txt .progress_bar_design .bar_design_icon svg{
width:12px;
height:12px;
}
.free_shipping_txt .progress_bar_design .bar_design_icon svg path{
fill:#ffbc11;
}
.progress_bar_design{
width: 100%;
  height: 6px;
  max-width: 100%;
  background-color: #e5e5e5;
}
.bar_design{
background:#ffbc11;
  height: 6px;
}
.success_progress .bar_design {
  background: #3d9851;
}
.success_progress .bar_design_icon {
  border-color: #3d9851;
}
.free_shipping_txt .progress_bar_design.success_progress .bar_design_icon svg path {
  fill: #3d9851;
}
/* ========================= cart popup custom css ====================== */
.site-header .menu-right .apply-coupan-btn{
  position:absolute;
top:0;
right:0;
height:45px;
}
.site-header .menu-right .apply-coupan-btn a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 10px 30px;
  background: #f3ebe4;
color:var(--black);
height:100%;
width:auto;
}
.coupan_code{
position:relative;
margin-bottom: 15px;
}
.coupan-txt{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
margin-bottom:10px;
color:var(--black);
}
.coupan-txt span{
margin-left:8px;
}
.coupan_code input{
height:45px;
width:100%;
border-color: var(--border-color);
    padding: 14px 100px 14px 15px;
}
/* ====compare and wishlist======== */
.compare-prod-remove svg,
.wishlist-prod-remove svg{
  margin: 0 auto;
  cursor:pointer;
}

.compare-head .section-title,
.wishlist-head .section-title{
text-align:center;
}
.pro-compare-wrap .pro-compare-left,
.pro-wishlist-wrap .pro-wishlist-left{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}
.pro-compare-wrap .pro-compare-left .compare-title,
.pro-wishlist-wrap .pro-wishlist-left .wishlist-title{
  max-width:25%;
  -webkit-box-flex:0;
      -ms-flex:0 0 25%;
          flex:0 0 25%;
  width:100%;
  text-align: center;
  padding: 10px;
  background: var(--border-color);
  font-size: 16px;
  font-weight: 500;
}
.pro-compare-scroll .compare-wrap .compare-val-prod,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
width:100%;
}

.pro-compare-scroll .compare-wrap .compare-val-prod  .compare-data-label,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label{
 max-width: 25%;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  text-align: center;
  padding: 15px;
}
.pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label .compare-prod-remove,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label .wishlist-prod-remove {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.compare-pro-detail .compare-val-prod .product-form .cart-form,
.wishlist-pro-detail .wishlist-val-prod .product-form .cart-form{
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
margin-right: 0px;
}
.compare-pro-detail .compare-val-prod .prod-title,
.wishlist-pro-detail .wishlist-val-prod .prod-title{
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
}
.prod-price del {
  margin-left: 5px;
}
.compare-pro-detail .compare-val-prod .prod-price,
.wishlist-pro-detail .wishlist-val-prod .prod-price{
margin:15px 0
}
.compare-pro-detail .prod-img a,
.wishlist-pro-detail .prod-img a{
position:relative;
padding-top: 80%;
display: block;
}
.compare-pro-detail .prod-img a img,
.wishlist-pro-detail .prod-img a img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.compare-wrap, .wishlist-wrap{
border-bottom:1px solid var(--border-color);
}
.pro-compare-section  .pro-compare-wrap,
.pro-wishlist-section  .pro-wishlist-wrap{
  margin-bottom:30px;
}
.pro-compare-section .compare-bottom-btn,
.pro-wishlist-section .wishlist-bottom-btn{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
}
.pro-compare-section .compare-bottom-btn a,
.pro-wishlist-section .wishlist-bottom-btn a{
min-width: 170px;
}
/*compare end  */

.site-header .menu-right .coupan-txt svg {
margin:0;
}
/* ========== feature start=========== */

button {
border: none;
-webkit-box-shadow: none;
        box-shadow: none;
cursor: pointer;
}
.cart-form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap:10px;
}
.no-js:not(html) {
display: none !important;
}
.product-form__input input,.shopify-payment-button__more-options {
display: none;
}
.cart-button span {
display: none;
}
.grecaptcha-badge {
z-index: 2;
}
.shopify-challenge__container {
min-height: 60vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
text-align: center;
}
.shopify-challenge__container .g-recaptcha {
  margin: 0 0 20px;
}
.edit-spacer {
margin: 30px 0 0;
}
.search-form-wrapper form {
position: relative;
}
.search-popup .close-search {
background: none;
border: none;
padding: 0;
}
.order-detail h4{
margin-bottom: 15px;
}
.order-detail p{
margin-bottom:20px
}
.order-detail{
margin-bottom:40px;
}
.order-history-tbl tr{
border-bottom: 1px solid #F0F0F0;
}
.adadress{
   border: 1px solid var(--border-color);
}
.addressheading{
padding-top:15px;
}
.adadress .form-container .continue-btn{
  width: auto;
}
.adadress .form-group label{
text-align: start!important;
width: 100%;
}
.newadress-btn{
text-align:center;
}
.my-add-sec .main-new-address{
border: 1px solid var(--border-color);
padding: 15px;
}
.my-add-sec .adress-main-list{
border: 1px solid var(--border-color);
padding: 15px;
margin: 30px 0 0;
}
.my-add-sec .adress-list .form-wrapper{
 border: 1px solid var(--border-color);
}
.my-add-sec .adress-list .continue-btn{
width: auto;
}
.acc-details p, .acc-details h4{
margin-bottom:20px;
}
.acc-details{
  margin-top: 15px;
}
.adress-list .btn{
  margin-right: 10px;
}
.acc-back-btn-wrp{
gap: 15px;
}
.my-add-sec .main-new-address .back-btn {
  color: var(--black);
  margin: 0 0 10px;
}
.acc-back-btn-wrp button {
  gap: 10px;
}
.acc-back-btn-wrp button svg{
margin: 0px
}
.my-add-sec select {
   padding: 14px 33px 14px 20px;
background-image: url(arrow-down-right.svg);
background-repeat: no-repeat;
background-size: 11PX;
background-position: calc(100% - 15px) 50%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.add-details {
background: var(--sixth-color);
padding: 20px 5px;
margin: 0px;
}
.add-details h5{
margin: 0 0 15px;
background: var(--border-color);
padding: 10px 15px;
}
.cart-btn[disabled], .sticky-btn[disabled]{
  cursor: not-allowed;
  opacity: 0.8;
}
.color_steel-blue {
  background-color: #496074 !important;
}
.color_maroon {
  background-color: #93453E !important;
}
.color_cream {
  background-color: #C1B1A1 !important;
}
.color_sea-green {
  background-color: #779388 !important;
}
.color_purple {
  background-color: #6B4787 !important;
}
.color_violet-red {
  background-color: #B78E8C !important;
}
.color_light-pink {
  background-color: #E4C2C0 !important;
}
.color_dark-blue {
  background-color: #292F44!important;
}
/*=================shf - recommandation ================*/
.product-notification{
background: var(--white);
-webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 10px 0px;
        box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 10px 0px;
max-width: 350px;
width:100%;
position: fixed;
bottom: 10px;
left: 30px;
padding:10px;
z-index:2;
transition: all 400ms ease-in-out 0s;
-webkit-transition: all 400ms ease-in-out 0s;
-moz-transition: all 400ms ease-in-out 0s;
-o-transition: all 400ms ease-in-out 0s;
-ms-transition: all 400ms ease-in-out 0s;
opacity: 0;
-moz-opacity: 0;
-khtml-opacity: 0;
-webkit-opacity: 0;
visibility: hidden; 
}
.product-notification.active {
bottom: 30px;
opacity: 1;
-moz-opacity: 1;
-khtml-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
visibility: visible;
}
.product-notification .product-suggest{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
gap: 25px;
}
.product-notification .closeNotify {
position: absolute;
top: 10px;
right: 10px;
z-index: 2;
}
.product-notification .closeNotify svg {
  width: 16px;
  height: 16px;
}

.product-notification .product-suggest .product-label {
  margin: 0 0 5px;
}
.product-notification .product-suggest .product-name {
  font: var(--h6);
  margin: 0 0 15px;
}
/*--------------shf recently view product css--------------------*/
#recently-viewed-products {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
}
#recently-viewed-products .product {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
padding: 0 15px;
}
#recently-viewed-products .product .product-inner{
border:1px solid var(--border-color);
}
#recently-viewed-products .product .image {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#recently-viewed-products .product .product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
padding:15px;
}

#recently-viewed-products .img-wrapper {
  padding-top: 122%;

}
/*--------------shf filter css--------------------*/
.product-grid-view .product-card-inner .product-image-wrapper {
  display: none;
}
.product-grid-view .product-card .cart-btn-content form {
  margin: 0;
}
.product-grid-view .product-card-inner .product-content .new-lbl {
  margin: 0;
}
/*------------------SHF search page ---------------------*/
.template-search .field {
  position: relative;
}
.template-search .form-control {
  border-radius: 5px;
}
.template-search .search__button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  right: 5px;
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  padding: 12px;
}
.template-search .search__button svg {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.template-search .search__button svg path {
  fill: var(--white);
}
.count-desc {
  margin: 20px 0;
  font: var(--h5);
  text-align: center;
  background: var(--sixth-color);
  padding: 15px 5px;
}
.template-search__results .grid__item {
  margin: 0 0 30px;
}
.page-card h4 {
  margin: 0 0 15px;
}
.template-search__results .grid__item.page-card {
  text-align: center;
}
.template-search__results .blg-cmnt {
  margin: 10px 0 0;
}
/*--------------------SHF Review form--------------------*/
.jdgm-star {
    font-weight: normal !important;
}
.reviews-stars-wrap .jdgm-widget{
  margin: 0px 0px 10px;
}
/*------------------- SHF msg ---------------------------*/
.newsletter-form__message {
position: absolute;
top: 100%;
bottom: auto;
left: 0;
right: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-column-gap: 10px;
   -moz-column-gap: 10px;
        column-gap: 10px;
margin: 10px 0 0;
font: var(--common-text);
}
.newsletter-form__message--success {
color: #0a942a;
border-color: #0a942a;
}
.newsletter-form__message--error {
color: #dc0000;
}
/*------------------- SHF error-msg---------------------------*/
.comment-form .errors {
  margin: 0 0 20px;
}
.comment-form .errors ul {
  padding: 15px 20px;
  border: 1px solid #ff0000;
  background: #ff00001f;
}
.comment-form .errors ul li {
  margin: 0 0 5px;
  color: #ff0000;
}
.comment-form .errors ul li:last-child{
margin: 0px;
}
.form__message {
  border: 1px solid #ff0000;
  display: block;
  padding: 10px;
  color: #ff0000;
  background: #ff00001c;
  margin: 0 0 15px;
}
.form__message_success {
  border: 1px solid #276221;
  display: block;
  padding: 10px;
  color: #276221;
  background: #27622147;
  margin: 0 0 15px;
}
/*------------------- SHF dropdown ---------------------------*/
.profile-header {
position: relative;
}
.profile-header .menu-dropdown {
position: absolute;
top: 100%;
right: 0;
background-color: var(--white)!important;
min-width: 160px;
margin: 26px 0 0;
padding: 15px;
transition: all 400ms ease-in-out 0s;
-o-transition: all 400ms ease-in-out 0s;
-webkit-transition: all 400ms ease-in-out 0s;
transform: scaleY(0);
-ms-transform: scaleY(0);
-webkit-transform: scaleY(0);
-webkit-transform-origin: top;
-ms-transform-origin: top;
transform-origin: top;
-moz-transition: all 400ms ease-in-out 0s;
-ms-transition: all 400ms ease-in-out 0s;
-moz-transform: scaleY(0);
-o-transform: scaleY(0);
}
.profile-header:hover .menu-dropdown {
transform: scaleY(1);
-ms-transform: scaleY(1);
-webkit-transform: scaleY(1);
-moz-transform: scaleY(1);
-o-transform: scaleY(1);
}
.profile-header .menu-dropdown li {
  padding: 0 !important;
  max-width: 100%;
  margin: 0 0 10px !important;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.profile-header .menu-dropdown .wishcount{
  margin: 0 2px;
}
.profile-header .menu-dropdown li:last-child {
margin: 0 !important;
}
.header-style-one .menu-right li.profile-header li {
  background: none;
}
.header-style-one .menu-right li.profile-header li a {
  color: var(--black);
}
#recover .section-title{
  margin-bottom: 20px;
}
#RecoverEmail-email-error{
  border: 1px solid #ff0000;
    display: block;
    padding: 10px;
    color: #ff0000;
    background: #ff00001c;
    margin: 0 0 15px;
}
#recover .btn {
  width: auto;
}
#recover button{
  margin-right: 10px;
}
.collection--empty h3 {
  margin: 0 0 10px;
}
/****** SHF CART DRAWER CSS ********/
.header-style-one .menu-right .cartDrawer svg#icon-cart-emty path {
  fill: var(--black);
}
.header-style-one .menu-right .cartDrawer {
padding: 0px;
}
.mini-cart-footer .js-contents {
display: none;
}
.cart-item__error-text:empty+svg {
  display: none;
}
.cart__items-wrapper .is-empty .cart__warnings{
display: block;
}
.cartDrawer.is-empty .cart__empty-text,.cartDrawer.is-empty .cart__warnings {
    color: var(--black);
      margin-bottom: 15px;
}
.cartDrawer.is-empty .cart__warnings {
margin: 20% 0 0;
text-align: center;
}
.cartDrawer.is-empty .cart__warnings svg {
  margin: auto;
  width: 70px;
  height: 70px;
}
.cartDrawer.is-empty .cart__warnings .btn-transparent svg{
  height: 18px;
  width: 18px;
  margin-right: 10px;
}
.cartDrawer.is-empty .cart__warnings .btn-transparent svg path{
  fill: var(--third-color);
}
.cartDrawer.is-empty .cart__warnings .btn-transparent:hover svg path{
  fill: var(--white);
}
.header-style-one .menu-right .cartDrawer svg#icon-cart-emty,.header-style-one .cartDrawer svg#icon-cart-emty {
width: 55px;
height: auto;
fill: currentColor;
margin: 0 auto 30px auto;
}
.header-style-one .menu-right li a.mini-cart-title {
display: block;
text-align: left;
overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.header-style-one .menu-right li a.closecart svg path {
fill: var(--white) !important;
}
.popup-toggle header:after, .open header:after, .quick-active header:after, .notify-active header:after,
.filter-open header:after{
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
z-index: 1;
background: rgba(0, 0, 0, 0.7);
}

.cartOpen header.head-sticky:after {
  height: calc(100% + 1px);
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li:not(.has-children) a svg,
.product-card .product__media-item:not(:first-child) {
display: none;
}
/*=================SHF address page =============*/
#recover,#recover + .recover-password,#recover:target ~ .back-toshop,#recover:target ~ .section-title,#recover:target ~ .login-form{
display: none;
}
#recover:target + .recover-password,#recover:target {
display: block;
}
.addresses [aria-expanded="false"] ~ div[id] {
display: none;
}
.addresses [aria-expanded="true"] ~ div[id] {
display: block;
margin: 30px 0 0;
}
#address_form_new .checkbox-custom label:before {
  border-color: var(--border-color);
}
/*=========== SHF home product image hover ===============*/
.card__media {
position: relative;
}
.card__media .hover-img {
opacity: 0;
visibility: hidden;
position: absolute !important;
top: 0;
bottom: auto;
left: 0;
right: 0;
padding: 0;
}
.card__media .hover-img img {
  width: 100%;
height:100%;
}
.card__media:hover .hover-img {
opacity: 1;
visibility: visible;
}
.card__media:hover .default-img  {
opacity: 0;
visibility: hidden;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
pointer-events:auto;
}
.site-footer-three .footer-row {
  padding: 0px 0px 30px;
  border-top: 0;
}
/*========== shf  end=======  */
/*========= HEADER STYLE ONE CSS ==========  */
.header-style-one.head-sticky .main-navigationbar .menu-items-col .main-nav>li>a{
color: var(--white);
}
/* =====================HEADER STYLE TWO CSS======================== */
.header-style-two .announcebar{
  padding: 12px 30px;
background: var(--second-color);
}
.header-style-two .main-navigationbar {
  padding: 20px 30px;
}
.header-style-two .announcebar p{
  color: var(--white);
}
.header-style-two .announcebar ul li{
  margin: 0px;
}
.header-style-two .announcebar ul li .nice-select{
border: 1px solid var(--white);
  padding: 10px 30px 10px 12px;
  background: url(down-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 11PX;
  background-position: calc(100% - 8px) 50%;
  right: 0;
color:var(--white);
}
.header-style-two .announcebar ul li .nice-select::after{
  right: 0px;
}
.header-style-two .main-navigationbar .main-menu-right{
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-style-two .main-navigationbar .menu-right{
  padding-left: 40px;
}
.header-style-two .main-menu-left{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header .menu-items-col .mobile-menu-button svg path{
  fill: var(--white);
}
.header-style-two .main-menu-left svg path {
fill:var(--theme-color) !important;
}
.header-style-two .main-menu-left .search-header a svg{
  height: 18px;
  width: 18px;
}
.header-style-two .main-menu-left li:not(:last-of-type){
  margin-right: 20px;
}
.header-style-two.head-sticky  .announcebar{
  padding: 0;
}
/*=== header style two custom css ====  */
.header-style-two.site-header.head-sticky .main-menu-left svg path{
fill: var(--white)!important;
}
.header-style-two .mobile-btn-right svg{
    width: 18px;
  height: 18px;
}
.header-style-two.site-header .menu-right li.profile-header{
margin-left:0;
}
body:not(.index) .header-style-two .main-menu-left svg path {
  fill: var(--white)!important;
}
/* ==================== HEADER STYLE THREE CSS========================= */
.header-style-three .announcebar p{
  color: var(--white);
}
.header-style-three .announcebar{
  background-color: var(--third-color);
  color: var(--white);
  padding: 12px 0;
}
.header-style-three.head-sticky  .announcebar{
  padding: 0;
}
.header-style-three .menu-items-col{
  padding-left: 40px;
}
.header-style-three .menu-right .search-header input{
  border: 1px solid var(--white);
  padding: 10px 40px 10px 20px;
  background: var(--white);
  color:var(--black);
  border-bottom: 0px !important;
}
.header-style-three .menu-right .search-header .input-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: none;
}
.site-header.header-style-three .menu-right li.currency{
padding:0;
}
.header-style-three .menu-right .search-header .input-btn svg{
  height: 18px;
  width: 18px;
}
.header-style-three .menu-right .search-header .form-inputs {
  position: relative;
}
.site-footer-three .footer-row {
 padding: 0px 0px 30px;
  border-top: 0;
}
.header-style-three .menu-right .search-header input::-webkit-input-placeholder{
color: var(--black);
}
.header-style-three .menu-right .search-header input::-moz-placeholder{
color: var(--black);
}
.header-style-three .menu-right .search-header input:-ms-input-placeholder{
color: var(--black);
}
.header-style-three .menu-right .search-header input::-ms-input-placeholder{
color: var(--black);
}
.header-style-three .menu-right .search-header input::placeholder{
color: var(--black);
}
.site-header .menu-items-col .mobile-menu-button svg path, .site-header .search-header a svg path {
  fill: var(--white) !important;
}
.header-style-one .lang-dropdown .nice-select, .header-style-three .lang-dropdown .nice-select {
background:none;
}

/*=== header style three custom css ====  */
.header-style-three.head-sticky .main-navigationbar .menu-items-col .main-nav>li>a{
color:var(--white);
}
.home-layout-three .site-header.head-sticky  .menu-items-col .main-nav .mobile-menu-button svg path{
    fill: var(--white);
}
body:not(.index) .site-header .menu-items-col .main-nav>.menu-lnk.has-item>a {
  color: var(--white);
}
.subscribe-popup .subscriber-info .sub-img,.subscribe-popup .subscriber-info .sub-right-inner {
width:100%;
}
.testi-card-inner .review-star {
  max-width: 40%;
  margin: 0 auto 15px;
}
.subscribe-popup .sub-left-inner
{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.register .form-container .btn{
  text-transform: uppercase;
}
.spr-form-title{
 margin-bottom:10px;
}
.spr-form-label+.spr-form-input{
 margin-top:7px !important;
}
.pdp-filter-cat-sec .pdp-filter-cat li a{
  text-transform: uppercase;
}
.pdp-right-column .size-guide-wrapper .see-size{
 gap:5px;
}
body:not(.index) .announcebar{
 background:var(--second-color);
}
.search-heading  a{
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.template-search__search .search__input {
  padding: 14px 50px 14px 20px;
}
.blg-elagant .product-card .price{
  margin-bottom:0;
 -webkit-box-pack: center;
     -ms-flex-pack: center;
         justify-content: center;
}
.facet-checkbox input[type=checkbox]{
  border-radius:0 !important;
}
.product-filter-right-column .row.product-grid-view{
  row-gap:15px;
}

.mobile-facets__close-button{
border-radius:0 !important;
}
.mobile-facets__wrapper .facets__price {
  margin: 10px 0 !important;
}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
  max-width: 100%;
  height: 100%;
  width: 100%;
}
.qv-pro-slider-img{
  display: block;
  position: relative;
  padding-top: 100%;
}
.qv-pro-slider-img img{
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
}
.qv-pro-slider-img img{
width:100%;
}
.quickview-popup .swiper-button-next,.quickview-popup .swiper-button-prev{
opacity: 1;
  visibility: visible;
}
.shop-category-sec .section-title{
padding:0 15px;
}
.partner-logo-item a{
display:inline-block;
}
.qv-pro-slider-img img{
width:100%;
height:100%;
}
.quickview-popup::-webkit-scrollbar {
  width: 8px;
}
.quickview-popup::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.quickview-popup::-webkit-scrollbar-track {
background: #8f887a5c;
}
#predictive-search-results #predictive-search-results-list .predictive-search__item-content{
padding:15px !important;
}
.predictive-search-main{
border:1px solid var(--border-color);
}
body.index .header-style-three.site-header .main-navigationbar{
background:transparent;
}
.pdp-thumb-image{
 border: 1px solid var(--border-color);
}
.pdp-thumb-image.swiper-slide-thumb-active {
  border: 3px solid var(--border-color);
}
.cms-sec .row{
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}
.megamenu-list .list-title h5{
color:var(--black) !important;
}
.subscribe-popup .close-sub-btn.btn:focus svg path{
fill:var(--white);
}
.spr-badge-starrating .spr-icon{
width:15px;
height:15px;
  top:0;
}
.cms-sec .row.row-reverse{
margin-top:40px;
}
.fashionable-about-sec .swiper-button-prev,.fashionable-about-sec .swiper-button-next{
background: var(--third-color);
}
.quickview_popup_data .pdp-right-column .pdp-top-content h3{
max-width:85%;
width:100%;
margin-bottom:0;
}
.quickview-popup .pdp-page-main-sec .pdp-right-column .pdp-top-content{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pdp-page-main-sec .pdp-right-column .pdp-top-content{
margin-bottom:10px;
}
.product-card .pro-compare.active, .product-card .pro-wishlist.active{
  background:var(--theme-color);
  border-color: var(--theme-color)
}
.product-card .pro-compare.active svg path, .product .pro-wishlist.active svg path{
  fill:var(--white);
}
.facet-checkbox .feather-check{
  z-index:1!important;
}
.site-header .main-navigationbar .menu-items-col .main-nav>li.mobile-menu-button {
cursor:pointer;
}
.product-card .price {
  margin: 0px 0px 15px;
}
.faq-right-itm form .row .col-12:last-of-type .form-group{
margin-bottom:0;
}
.blog-grid-sec .blg-elagant .flex-slider .flex-card{
margin-bottom:10px;
}
.spr-badge {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1;
}
.product-noslider .gallery-thumbs-center{
display:none;
}
.header-style-three .menu-right .disclosure__list-wrapper ,.header-style-three .profile-header .menu-dropdown{
  margin: 26px 0 0;
}
.collection-leftfilter .active-facets,.collection-rightfilter .active-facets{
  padding:0 !important;
}
.site-header .menu-right li.profile-header .menu-dropdown ul li.headwish a {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  gap:0px;
}
.site-header .menu-right li.profile-header .menu-dropdown ul li.headwish a .hyutr:first-of-type {
  margin-left:3px;
}
.banner-content-wrapper .banner-content-inner h2{
  overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.banner-content-wrapper .banner-content-inner p{
  overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* ============cart-gift============ */
.cart-page-sec #cart-gift-wrap {
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
    background-color: var(--border-color);
    padding: 15px;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
}
.cart-page-sec #cart-gift-wrap .continue-btn{
  margin-right: 0px;
}
.cart-page-sec #cart-gift-wrap .add-gift {
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
}
.coupon-popup,
.gift-popup {
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0);
            box-shadow: 0 4px 8px 0 rgb(0 0 0);
    z-index: 5;
    background: var(--white);
    color: var(--black);
    width: 450px;
    height: auto;
    -ms-transform: translateY(120%);
    -webkit-transform: translatey(120%);
    transform: translateY(120%);
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -o-transition: 0.5s all;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}
.coupon-popup.active,
.gift-popup.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translatey(0%);
        -ms-transform: translatey(0%);
            transform: translatey(0%);
}
.coupon-popup .coupon-txt {
    gap: 10px;
    margin-bottom: 12px;
    color: var(--black);
}
.coupon-popup .common-close,
.gift-popup .common-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
}
/* ****** coupon popup css **** */
.coupon-code {
    position: relative;
}
.coupon-code input {
    height: 45px;
    width: 100%;
    border-color: var(--border-color);
    padding: 14px 115px 14px 15px;
}
.grid-gallery .product-main-item {
    margin-top: 15px;
    display: flex;
    display: -webkit-box;
    row-gap: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-justify-content: space-between;
}
.two-grid-main .pdp-slider-img  .active-thumb-img, .one-grid-main .pdp-slider-img  .active-thumb-img {
    border: 2px solid var(--theme-color);
    padding: 5px;
    background: transparent !important;
}
.one-grid-main .product-img{
    overflow: hidden;
}
.gallery-main.one-grid-main, .gallery-main.two-grid-main, .gallery-main.grid-gallery-main  {
    max-width: 100%;
}
.one-grid-main .swiper-button-prev, .one-grid-main .swiper-button-next, 
.two-grid-main .swiper-button-prev,  .two-grid-main .swiper-button-next {
  opacity:0;
  visibility:hidden;
}
.template-search__results .grid__item .product-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}
/*================= reset password page =============*/
.reset-password{
  background-color: var(--sixth-color);
  padding: 20px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.reset-password .form-container {
  padding: 0;
  border: none;
}
.reset-password label {
  text-align: left;
  width: 100%;
}
.customer.reset-password {
  text-align: center;
}
.login-form  .form-message-success {
    font-size: 15px;
    padding: 5px 10px;
    background: #04490454;
    outline: none;
    color: var(--white);
    margin-bottom: 6px;
    display: block;
}
body.account table tr td:first-child a{
  text-decoration: underline;
}
.addresses .pagination-row {
    margin-top: 20px;
}
.cms-page ul li a {
    text-decoration: underline;
}
.articlebar .social-icon .social-ul li a svg path {
    fill: var(--theme-color);
}
.comment-wrapper {
    margin-top: 40px;
}
.comment-wrapper .section-title {
    margin-bottom: 15px;
}
.comment-wrapper .comment-text p{
  margin-bottom: 5px;
}
.comment-wrapper .comment-author{
  margin-left: 5px;
  font-weight: bold;
}
.cartOpen.quick-active .overlay:after{
   z-index:5;
}
.header-style-three .currency .nice-select .list{
      margin-top: 20px;
}
body.contact .subscribe-full-sec {
    margin: 0;
}
.collection-leftfilter .filter-title, .collection-rightfilter .filter-title, .product-main-item .grid-gall-thumb{
  cursor: pointer;
}
.select-box select{
    margin: 5px 0 15px;
    max-width: 70%;            
}
.pdp-whislist-btn.pro-wishlist.active{
    background: var(--theme-color);
    border-color: var(--theme-color);
}
 .grid-gallery .product-main-item .product-img img{
   width:100%;
   height:100%;
  -o-object-fit:cover;
     object-fit:cover;  
}
/*article page comment css start  */
.article-template__comments {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    background: var(--sixth-color);
}
.article-template__comments .article-template__comments-comment:not(:last-of-type) {
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}
.article-content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  color:var(--second-color);
}
.article-content-inner .author-image {
    width: 50px;
    height: 50px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
    padding: 5px;
}
.article-content-inner .author-image svg {
    width: 100%;
    height: 100%;
}
.article-content-inner .author-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.article-content-inner .author-content .right {
    margin-bottom: 10px;
}
.article-content-inner .author-content p {
    margin-bottom: 10px;
}
.article-content-inner .author-content .circle-divider {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}
#comments h2 {
    margin-bottom: 20px;
  color: var(--second-color);
}
.collection-leftfilter .filter-title, .collection-rightfilter .filter-title, .product-main-item .grid-gall-thumb{
  cursor: pointer;
}
.site-header.header-style-three .menu-right li.currency {
    padding: 0;
}
/*article page comment css end  */
.is-empty #cart-gift-wrap{
  display: none;
}
.shopify-challenge__button:hover {
    color: var(--theme-color);
}
/*=================[    !!!!!!!!   RESPONSIVE CSS  !!!!!!!!   ]=================*/
@media (min-width:768px) {
  .footer-row .acnav-list1{
    display: block !important;
  }
  .site-footer .footer-widget h5 svg{
    display: none;
  }
  .mobile-stickybar{
    display: none !important;
  }
  .gallery-main.left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .pdp-page-main-sec .sticky-column {
      position: sticky;
      top: 10%;
  }
  .one-grid-main .arrow-wrapper{
      display: none;
  }
  .two-grid-column .swiper-wrapper,
  .one-grid-column .swiper-wrapper {
      display: flex;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-justify-content: space-between;
      row-gap: 20px;
  }
  .two-grid-column .swiper-wrapper .swiper-slide,
  .grid-gallery .product-main-item .product-img {
      width: calc(50% - 10px);
  }
  .one-grid-main.swiper:hover .swiper-button-prev, .one-grid-main.swiper:hover .swiper-button-next,
  .two-grid-main.swiper:hover .swiper-button-prev, .two-grid-main.swiper:hover .swiper-button-next{
      opacity: 0;
      visibility: hidden;
  } 
  #ProductGridContainer .desk-only {
    display: block !important;
  }
  #ProductGridContainer .mobile-only {
    display: none !important;
  }
  /*********** PRODUCT LISTING LEFT CANVAS PAGE CSS  ***********/
  .collection-leftfilter .product-filter-column,.collection-rightfilter .product-filter-column {
    position: fixed;
    top: 0;
    background: var(--white);
    left: 0;
    max-width: 350px;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
    transition: all ease-in-out .5s;
    -webkit-transform: translate(-100%,0px);
    -ms-transform: translate(-100%,0px);
    transform: translate(-100%);
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    margin: 0;
    padding: 20px;
  }
  .collection-rightfilter .product-filter-column{
    -webkit-transform: translate(100%,0px);
    -ms-transform: translate(100%,0px);
    transform: translate(100%, 0px);
    left: auto;
    right: 0px;
  }
  .filter-open .collection-leftfilter .product-filter-column,.filter-open .collection-rightfilter .product-filter-column {
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
    overflow: auto;
    height: 100%;
  }
  .register-page .login-form-inner .form-container .forgot-pass{
    float:right;
  }
}
@media (min-width:992px) {
  .desk-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }  
  .header-style-one .main-navigationbar .menu-items-col .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-style-one .mobile-menu {
    display: none;
  }
  .site-header .main-navigationbar .menu-items-col .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-grid-view .product-card-inner .product-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
    padding:0;
  }
}    
@media (min-width:1200px) {
  .main-navigationbar .menu-right .serch-mobile-only{
    display: none;
  }
}
@media screen and (max-width:1399px){
  .main-category-sec .btn.btn-white{
    padding: 11px 15px;
  }
}
@media screen and (max-width:1199px){
  :root { 
    --h1: normal 600 40px/1.1 var(--first-font);
    --h2: normal 600 32px/1.1 var(--first-font);
    --h3: normal 600 26px/1.1 var(--first-font); 
    --h4: normal 600 20px/1.1 var(--first-font);
    --h5: normal 600 18px/1.1 var(--first-font);
    --h6: normal 600 16px/1.1 var(--first-font);
  } 
  .footer-col {
    padding-left: 25px;
  }
  .footer-subscribe-col {
    max-width: 300px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
  .main-navigationbar .menu-right .only-desk-show{
    display: none;
  }
  /**** HOME PAGE CSS ****/
  .main-category-sec .btn-white{
    padding: 11px 15px;
  }
  .category-img-box-body {
    padding: 150px 15px 15px 15px;
  }  
  .product-arrow-wrapper {
    position: unset;
  }
  .product-arrow-wrapper .swiper-button-next {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    top: 50%;
    right: 0;
  }
  .product-arrow-wrapper .swiper-button-prev {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    top: 50%;
    left: 0;
  }
    .swiper-button-next, .swiper-button-prev{
    opacity:0;
    visibility: hidden;
  }
  .blog-slider:hover .product-arrow-wrapper .swiper-button-prev,.blog-slider:hover .product-arrow-wrapper .swiper-button-next,
  .partner-logo-slider:hover .swiper-button-prev,.partner-logo-slider:hover .swiper-button-next,
  .testimonials-slider:hover .product-arrow-wrapper .swiper-button-prev,.testimonials-slider:hover .product-arrow-wrapper .swiper-button-next,
  .bestseller-slider:hover .product-arrow-wrapper .swiper-button-prev,.bestseller-slider:hover .product-arrow-wrapper .swiper-button-next,
  .product-slider:hover .product-arrow-wrapper .swiper-button-prev,.product-slider:hover .product-arrow-wrapper .swiper-button-next,
  .home-banner-slider:hover .swiper-button-prev,.home-banner-slider:hover .swiper-button-next,.pdp-page-main-sec .gallery-main .swiper-button-prev, .pdp-page-main-sec .gallery-main .swiper-button-next{
  opacity:1;
  visibility: visible;
  }
  .product-sec .section-title-center {
    max-width: 430px;
  }
  .shop-category-sec .shop-category-box .category-img-box-body {
    padding: 200px 15px 15px 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .shop-category-sec .shop-category-box .content-box-title {
    text-align: start !important;
  }  
  .bestseller-sec .tab-btn-wrapper {
    position: unset;
  }
  .bestseller-sec .tabs-container .swiper-button-prev, .bestseller-sec .tabs-container .swiper-button-next{
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    top: 50%;
  }
  .blog-slider {
    padding-bottom: 0PX;
  }
  /**** PRODUCT PAGE CSS ****/
  .pdp-tab-sec .pdp-tab-left {
    max-width: 100%;
  }  
  .gallery-thumbs {
    max-height: 400px;
  }  
  .pdp-right-column .size-guide-wrapper .see-size {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .pdp-right-column .size-guide-wrapper .see-size a{
    margin-left: 0px;
  }
  .pdp-img-bnr {
    padding: 40px 40px 40px 40px;
  }
  .pdp-page-main-sec .gallery-main .product-arrow-wrapper{
    position: absolute;
  }
  /**** PRODUCT-LIST PAGE CSS START ****/
  .text-checkbox .checkbox input[type=checkbox]+.checkbox-label{
    padding: 8px 8px;
  }
  .product-grid-view .product-card-inner .product-top-content {
    max-width: 270px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 270px;
            flex: 0 0 270px;
  }  
  /**** COLLECTION-LIST PAGE CSS START ****/
  .collection-main-sec .product-card-inner .product-content {
    padding: 15px;
  }  
  .collection-main-sec .product-card-inner .product-bottom-content .btn {
    padding: 11px 10px;
  }  
  /**** ARTICLE PAGE CSS START****/
  .articlebar h4 {
    font-size: 22px;
  }
  /**** BLOG PAGE CSS ****/
  .blog-grid-sec .blogleftbar .elegant-slider {
    padding: 10px 10px 10px;
  }   
  .blog-grid-sec .blg-recent .blog-itm .blog-image {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .blog-grid-sec .blg-recent .blog-itm .blog-content {
    margin-left: 0px;
    margin-top: 10px;
  }
    .main-banner-sec .banner-content-wrapper{
        padding: 230px 0 160px;
  }
   .pdp-tab-sec .pdp-tab-right ul.tabs li a {
    padding: 0 15px 10px;
    }
  .active-facets .btn-secondary {
    padding: 11px 17px;
      }
  .header-style-two .announcebar{
        padding: 12px 15px;
  }
  .header-style-two .main-navigationbar{
    padding: 20px 15px;
  }
       .search-popup .close-search{
        left: 15px;
    top: 15px;
  }
  .search-popup .close-search svg{
     width:20px;
  height:20px;
  }
  .blog-grid-sec .blg-elagant .flex-slider .flex-card {
    margin-bottom: 0px;
  }
    .pdp-page-main-sec .gallery-main .product-arrow-wrapper {
      bottom: 0px;
  }  
}
@media screen and (max-width:991px){
  .products_add-cart-sticky .size-select{
    display: none;
  }
  :root { 
    --h1: normal 600 36px/1 var(--first-font);  
  } 
  /**** HEADER CSS START ****/
  .home-layout-two .header-style-one .main-navigationbar{
    border-bottom: 1px solid var(--white);
  }
  .home-layout-two .header-style-one.head-sticky .main-navigationbar{
       border-bottom: 1px solid var(--theme-color);
  }
  .home-layout-three .site-header .main-navigationbar{
    background: var(--third-color);
    border-bottom: 1px solid var(--second-color);
  }
  .header-style-one .announcebar{
    display: none !important;
  }
   .header-style-two .main-navigationbar{
    padding: 15px;
  }
  .header-style-two .announcebar, .header-style-three .announcebar{
    display: none !important;
  }
  .header-style-two .menu-items-col .mobile-menu-button svg path, .header-style-two .search-header a svg path {
    fill: var(--white);
  }
  .site-header .main-navigationbar .menu-items-col .main-nav, .header-style-two .main-menu-left {
    display: none;
  }
  .header-style-one .count {
    top: -6px;
  } 
  .header-style-three .menu-items-col {
    padding-left:0px;
  }
  .main-banner-sec .banner-content-wrapper {
    padding: 150px 0px 80px;
  }  
  
  .header-style-two .main-navigationbar, .header-style-three .main-navigationbar{
    background: var(--theme-color) !important;
  }
  .header-style-three .main-navigationbar .menu-items-col{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  /**** FOOTER CSS START  ****/
  .site-footer {
  padding: 40px 0 20px;
  }
  .footer-row {
    padding: 30px 0px;
  }
  .footer-subscribe-col {
    max-width: 220px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
  }
  .site-footer .social-icon {
    padding: 0;
    max-width: 190px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 190px;
    flex: 0 0 190px;
  }
  .social-icon .footer-logo {
    margin-bottom: 15px;
  }
  .footer-subscribe-col .contactlink, .footer-subscribe-col .addresslink {
    font-size: 16px;
  }
  .site-footer .footer-widget h5 {
    padding: 0 0 15px 0;
  }
  .footer-subscribe-col h6 {
    font-size: 14px;
  }    
  .footer-bottom {
    margin-top: 25px;
  }
  .subscribe-popup {
    max-width: 100%;
  }  
  .subscribe-popup .sub-left-inner {
    padding: 20px 20px;
  }  
  /**** FOOTER CSS END  ****/
  .pt,.product-sec{
    padding-top: 40px;
  } 
  .pb{
    padding-bottom:40px;
  }   
  .section-title {
    margin-bottom: 20px;
  }
  .subtitle {
    margin-bottom: 10px;
  }  
  .container-fluid{
    padding: 0 15px;
    margin: 0 auto;
  }
  /********* BLOG PAGE CSS start  **********/ 
  .blog-widget-inner { 
    padding: 25px 15px;
  }
  .blog-widget-inner.big-blog-widget {
    padding: 35px 15px 25px;
  }
  .blog-widget-inner p {
    margin: 12px 0;
  }
  .blog-grid-section .blog-cat li {
    padding: 10px 10px;
    font-size: 10px;
  }
  .blog-grid-row .blog-content-top h4 {
    font-weight: 600; 
  }
  .blog-cat { 
    margin-bottom: 15px;
  }
  .blog-page-banner .common-banner-content p,
  .blog-page-banner .section-title {
    margin-bottom: 20px;
  }
  .article-section .about-user {
    margin-bottom: 25px;
  }
  /********* BLOG PAGE CSS end  **********/ 
  .submit-btn { 
    max-width: 200px;
    margin: 20px 0 0;
  }
  .article-banner .blog-cat {
    margin: 20px 0;
  } 
  .art-auther {
    margin-bottom: 15px;
  }
  .quote-box { 
    padding: 15px 0 25px 60px;
  }
  .quote-box h3 {  
    font-size: 15px;
  }
  .latest-article-slider-section .section-title { 
    padding-top: 40px;
    margin-bottom: 26px;
  }
  .common-banner-section {
    padding: 40px 0;
  }
  /**** HOME PAGE CSS ****/
  .main-category-sec .category-img-box {
    display: inline;
  }
  .main-category-sec .row [class*="col-"]{
    padding: 0 15px;
  }
  .main-category-sec .row [class*="col-"]:nth-child(2){
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main-category-sec .category-img-box{
    margin-bottom: 20px;
  }
  .fashionable-about-sec {
    margin-bottom: 0px;
  }
  .product-bottom-btn {
    padding-top: 25px;
  }
  .product-sec .section-title h2 {
    margin-bottom: 15px;
  }
  .offer-sec .offer-column {
    max-width: 380px;
    padding: 15px;
  }
  .offer-sec .offer-banner {
    padding: 15px;
  }  
  .section-title-center {
    margin: 0 auto 20px;
  }
  .bestseller-sec .section-title {
    margin: 0 auto 20px;
  }
  ul.tabs {
    margin-bottom: 25px;
  }  
  .subscribe-sec .subscribe-banner {
    padding: 15px;
  }
  .cms-sec .cms-content {
    max-width: 100%;
  }
  .cms-sec {
    padding-bottom: 40px;
  }
  .product-card .cart-btn-content, .product-card .pro-wishlist, .product-card .pro-compare, .product-card .quickview-btn {
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .home-layout-two .main-category-sec{
    padding-bottom: 0px;
  }
  .subscribe-full-sec{
    padding: 40px 0px;
     margin: 40px 0 0;
  }
  .subscribe-full-sec .subscribe-banner{
    padding: 0px;
  }
  /**** PRODUCT PAGE CSS ****/ 
  .pdp-right-column .pdp-rating {
    gap: 10px;
  }  
  .pdp-tab-sec .pdp-tab-right ul.tabs li a {
    padding: 0 0px 10px;
  }
  .gallery-main {
    max-width: 100%;
  }
  .gallery-thumbs {
    width: 100%;
    max-width: 100%;
    padding-right: 0px;
    margin-top: 20px;
  }
  .product-slider-right .gallery-thumbs{
    padding: 0px;
  }
  .pdp-tab-sec .review-content .review-wrp .review-btn .btn{
    padding: 11px 15px;
  }
  .pdp-img-bnr {
    padding: 20px;
  }
  .gallery-thumbs .pdp-thumb-image {
    display: block;
    position: relative;
    padding-top: 28%;
  }
  .pdp-tab-sec .row > div:last-child {
    margin: 20px 0 0;
  }
   /**** PRODUCT-LIST PAGE CSS START ****/
  .product-heading-row .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0 0px;
  }
  .product-heading-right-column .filter-list-wrp p{
    display: none;
  }
  .product-filter-right-column .product-grid-view .product-card{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .product-grid-view .product-card-inner .product-card-image{
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .product-grid-view .product-card-inner .product-bottom-content{
   max-width: unset;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .product-grid-view .product-card .simple-countdown{
    margin: 0 0 15px;
  }
  .product-grid-view .product-card-inner .product-content{
    height: auto;
  }
  .product-grid-view .product-card-inner .product-top-content {
    max-width: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 0px;
  }
  .product-grid-view .product-bottom-content .reviews-stars-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .product-filter-right-column .product-grid-view .product-card .product-card-inner {
    padding: 0px 0px;
  }
  .product-grid-view .product-card .simple-countdown {
      position: absolute;
      top: 60%;
      left: 0;
      margin-bottom: 0;
  }
  .product-grid-view .product-card-inner .wish-lbl-wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .product-grid-view .product-card-inner .top-lable {
    position: absolute;
    top:15px;
    left: 15px;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
  }
  .product-grid-view .product-card .pro-wishlist, .product-grid-view .product-card .pro-compare, .product-grid-view .product-card .quickview-btn {
    background: var(--white);
  }
  .product-grid-view .product-bottom-content .product-star-wrp, .product-grid-view .product-card .price, .product-grid-view .color-swatch-variants {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }  
  .product-grid-view .product-card .cart-btn-content .btn{
    width: 100%;
  }
  .product-grid-view .product-bottom-content .product-star-wrp{
    margin-top: 15px;
  }
  .product-grid-view .product-card-inner .product-top-content h4{
    margin-top: 0;
  }
  /**** ARTICLE PAGE CSS START****/
  .articlebar .art-top-heading {
    margin-bottom: 25px;
    padding-bottom: 0PX;
  }  
  .articlebar .quote-box h5 {
    font-size: 20px;
  }   
  .articlebar .quote-box {
    padding-left: 15px;
  }  
  /**** MY ACCOUNT PAGE CSS START ****/
  .my-acc-sec .order-history-frame {
    margin-bottom: 25px;
  }
  /**** ABOUT PAGE CSS START ****/
  .about-us-page .about-left-inner .section-title {
    max-width: 100%;
  }
  .about-us-page .about-left-inner .section-title h2 {
    margin-bottom: 20px;
  }
  .about-counter-sec .counting {
    font-size: 34px;
  }  
  /**** CONTACT PAGE CSS START ****/
  .contact-about-sec {
    margin-bottom: 0px;
  }
  .contact-direction-sec {
    padding: 50px 0px 0px;
  }
  .contact-right-inner {
    margin-bottom: -300px;
  }
  /**** CMS PAGE CSS START ****/
  .cms-page ul {
    padding-left: 0px;
  }
  /**** CART PAGE CSS START ****/
  .cart-page-sec .coupon-table {
    gap: 15px;
  }
  .cart-page-sec .coupon-text-btn-wrp{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .cart-table tr td:nth-child(2) {
    width: 47%;
  }
  .my-add-sec .adress-list{
    gap: 15px;
  }
  #recently-viewed-products .product{
    width: 33.33%;
    margin: 0 0 20px;
  }
  .product-widget>.pro-itm>.acnav-label{
    font-size: 13px;
  }
  .faq-page .set .acnav-label {
    padding: 15px 40px 15px 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home-btn-wrapper .swiper-button-next,.home-btn-wrapper .swiper-button-prev{
    transform: translateX(0px);
    width: 33px;
    height: 33px;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
  }
  .progress-wrap {
    bottom: 75px;
  }
  .pro-compare-section .compare-bottom-btn,.pro-compare-section .pro-compare-wrap,
  .pro-wishlist-section .wishlist-bottom-btn,.pro-wishlist-section .pro-wishlist-wrap{
    margin-bottom: 30px;
  }
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label,
  .pro-compare-wrap .pro-compare-left .compare-title,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label,
  .pro-wishlist-wrap .pro-wishlist-left .wishlist-title{
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
  
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label.compare-pro-detail,
  .pro-compare-wrap .pro-compare-left .compare-deatil.compare-title,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label.wishlist-pro-detail,
  .pro-wishlist-wrap .pro-wishlist-left .wishlist-title.compare-deatil{
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  } 
  
  .compare-wrap .product-form .product-form__submit,
  .wishlist-wrap .product-form .product-form__submit{
    padding: 10px 20px;
  }
  .out-of-stock-form {
    max-width: 50%;
    padding: 50px 30px;
  }
  .product-sec{
        padding-top: 40px;
  }
  .register-page .login-form-inner .form-container .forgot-pass{
    margin-bottom:0;
  }
  body.product .site-footer {
      padding: 40px 0 100px;
  }
  .pdp-left-column .gallery-thumbs .pdp-thumb-image{
    margin-bottom:0;
  }
  .header-style-two.site-header .menu-right li.profile-header{
    margin-left: 20px;
  }
  .subscribe-full-sec:before{
    background: rgb(253 253 253 / 80%);
  }
  .pdp-img-bnr::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fffdfb7d;
  }
  .pdp-img-bnr-sec .img-bnr-column{
    position: relative;
    z-index: 1;
  }
  .product-filter-right-column .row.product-grid-view{
          row-gap: 0px;
  }
  #product-grid .row.flex-slider .product-card .price{
       margin:0;
  }
  #product-grid .row.flex-slider .product-card  .color-swatch-variants{
   margin-top:19px;
  }
  .cms-sec .row.row-reverse {
    margin-top: 30px;
  }
  .profile-header .menu-dropdown{
       margin: 20px 0 0;
  }
  .pdp-tab-sec .pdp-tab-left{
    display:none;
  }

  .header-style-one .menu-right .disclosure__list-wrapper{
    margin-top:25px;
  }
  .index.cartOpen .main-navigationbar::after, .index.active-menu .main-navigationbar::after, .index.quick-active .main-navigationbar::after{
        content: " ";
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
    width: 100%;
        height: calc(100% + 1px);
    position: absolute;
  }
    .cartOpen .fixed .main-navigationbar, .active-menu .fixed .main-navigationbar, .quick-active .fixed .main-navigationbar{
      border-bottom:none;
    }
  }
@media screen and (max-width:767px){
  .compare-data-label:before, .wishlist-data-label:before {
    content: attr(data-label);
    display: block;
    text-align: center;
    padding-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--theme-color);
}
:root {
  --h2: normal 600 28px/1.1 var(--first-font);
}
.grid-gallery .product-main-item {
    display: none;
}
.product-filter-right-column{
  width: 100%;
}
.lang-dropdown, .currency {
  display: none;
}
#ProductGridContainer .filter-column-title, .main-navigationbar .localization-form, .main-navigationbar .currency, .products_add-cart-sticky .sticky-image, .products_add-cart-sticky .sticky-price
{
  display: none;
}
.products_add-cart-sticky.pro-bottom-sticky-cart .sticky-pro-inn {
  gap: 10px;
  padding: 10px 0;
}
/**** FOOTER CSS START  ****/
.header-style-one .menu-right li {
  display: block;
  line-height: 1;
} 
.footer-subscribe-col { 
  -webkit-box-flex: 0; 
      -ms-flex: 0 0 100%; 
          flex: 0 0 100%; 
  max-width:100%;
  margin-top: 0px; 
  padding-left: 0;
}
.site-footer .footer-widget p {
  padding: 0 0 15px;
}  
.footer-mobile{
  display: block;
}
.footer-desk{
  display: none;
}
.index .site-footer {
  padding: 40px 0 65px;
}
.site-footer .social-icon {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 25px;
  text-align:center;
}
  .social-icon .social-ul{
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
.social-icon .footer-logo{
      margin: 0 auto 15px;
}
.product-bottom-btn {
  padding-top: 15px;
}

.footer-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-left: 0px;
}  
.footer-col .footer-mobile  h5{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
}
.footer-col .footer-mobile  h5 svg{
  margin-left: auto;
  width: 14px;
}
.footer-col .footer-mobile  h5 .close-menu-ioc {
  display: none;
}
.cart-table tr td:nth-child(2) {
  width: 100%;
}
.footer-col .footer-mobile.is-open>.acnav-label .menu-open-arrow {
  display: none;
}
.footer-col .footer-mobile.is-open>.acnav-label .close-menu-ioc {
  display: block;
}
.site-footer .set {
  margin-bottom: 0px;
}
.footer-row {
  padding: 40px 0px 0px;
}
.footer-row .footer-link-1{
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}
.site-footer .footer-link .footer-mobile  ul {
  padding-bottom: 15px;
} 
.footer-row .acnav-list1{
  display: none;
  padding-top: 15px;
}
.site-footer .footer-widget h5 {
  padding: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-footer .footer-widget h5 .close-menu-ioc, .site-footer .footer-widget.is-open h5 .menu-open-arrow {
  display: none;
}
.site-footer .footer-widget.is-open h5 .close-menu-ioc {
  display: block;
}
.footer-row .footer-link, .footer-subscribe-col{
  padding-bottom: 15px;
}
.footer-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}
/** MINI CART **/
.cartDrawer {
  width: 100%;
}
.cartDrawer .mini-cart-body {
  padding: 15px;
}
.cartDrawer .mini-cart-header {
  padding: 16px 20px 16px 50px;
}
.cartDrawer .webi-mini-cart-footer .checkout-btn {
  max-width: 250px;
  padding: 10px;
}
.cartDrawer .webi-mini-cart-footer {
  padding: 15px;
}
.mini-cart-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.mini-cart-footer-total-row {
  font-size: 18px;
  line-height: 18px;
  margin: 0 -10px 12px;
}
.cart-header .closecart{
  left: 15px;
  right: auto;
  top: 15px;
}
.cart-header .closecart svg path {
  fill: var(--white);
}
/********* BLOG PAGE CSS start  **********/ 
.blog-widget-inner { 
  margin-bottom: 15px;
}
/********* BLOG PAGE CSS end  **********/ 
.abt-shp-column-right,.about-our-shop-section .row {
  margin-top: 30px;
}
.contact-right-column {
  margin-top: 0;
}
.blog-page-second .section-title {
  text-align: center;
}
.blog-col-right .nice-select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.blog-col-right {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
} 
.blog-col-left ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
} 
.blog-head-row{
  border: 0;
} 
.articlerightbar {
  padding-top: 40px;
} 
.aticleleftbar h5 {
  margin: 0 0 20px 0;
  line-height: 1.3;
}
.articlerightbar .blog-grid .blog-widget:last-of-type {
  margin-bottom: 0;
}
.latest-article-slider-section .section-title {
  padding-top: 40px; 
}
.post-lbl {
  margin: 0 0 0 10px; 
  font-size: 12px;
}
.article-section .abt-user-img { 
  margin-right: 5px;
}
.aticleleftbar p {
  margin-bottom: 15px;
}
.quote-box svg { 
  height: 20px;
  width: 20px;
}
.quote-box {
  padding: 15px 0 25px 35px;
}
.our-blog-section .section-title,
.my-acc-head {
  margin-bottom:26px;
}
.my-acc-rightbar {
  margin-top: 40px;
}
#scroll {
  background: var(--white); 
  top: 53px;
  padding: 0;
}
.checkbox-custom label{
  font-size: 13px; 
}
.set {    
  margin-bottom: 12px;
}
.meet-mentor-section .offset-container { 
  padding: 0px 15px;
}
.contact-left-inner ul li {
  margin-bottom: 20px;
}
/* .contact-form {
  padding: 24px 15px;
} */
/****  COMMON BANNER SECTION CSS ****/
.common-banner-content .back-btn {
  margin-bottom: 15px;
}
.common-banner-content .section-title h2 span { 
  font-size: 12px;
}  
.btn,.btn-secondary { 
  padding: 9px 16px;
}
.btn-secondary svg, .btn svg {
  margin-left: 6px;
  height: 15px;
  width: 15px;
}
/*** FAQ PAGE CSS ****/ 
.faq-page {
  padding-bottom: 0;
}
/*** ABOUT PAGE CSS ****/
.about-us-section .about-us-box {
  margin-bottom: 20px;
} 
/**** HOME PAGE CSS ****/ 
.mobile-menu-wrapper{
  max-width:100%;
}
.main-banner-sec .banner-content-wrapper {
  max-width: 430px;
}  
.fashionable-about-sec .fashionable-content-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fashionable-about-sec .fashionable-content{
  text-align: center;
}
.product-sec .section-title {
  text-align: start;
  max-width: 450px;
  margin: 0 0 26px;
}  
.shop-category-sec .row [class*="col-"]:not(:last-of-type){
  margin-bottom: 20px;
}
.testimonials-sec .testi-card-inner {
  padding: 15px;
}  
.our-insta-sec ul li {
  max-width: 33.3334%;
  padding: 20px 10px 0;
}
.our-insta-sec .section-title-center{
  margin: 0 auto 0px;
}
.subscribe-sec .subscribe-banner .subscribe-column {
  max-width: 100%;
}  
.product-card .cart-btn {
  width: auto;
}
.product-card .cart-btn-content{
  text-align: center;
}
.search-popup .close-search {
  left: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
}
.search-popup, .size-popup {
  padding: 0 15px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul{
      padding: 10px 15px;
}
/**** PRODUCT PAGE CSS ****/
.pdp-slider-img {
  position: relative;
  padding-top: 90%;
}  
.pdp-page-main-sec .pdp-right-column{
  margin:  20px 0 0; 
}
.pdp-right-column .price-qty-wrp .price ins {
  font-size: 18px;
}
.pdp-right-column .price-qty-wrp .price del {
  font-size: 12px;
}
.view-slider .swiper-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.size-popup {
  padding: 0 0px;
}
.size-popup .btn-white {
  margin-bottom: 15px;
}
.pdp-right-column .size-guide-wrapper .see-size {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}  
.size-table-wrapper {
  margin-top: 20px;
}
.pdp-right-column .pdp-timer .time-counter {
  padding: 6px 10px;
}  
.pdp-img-bnr-sec .img-bnr-column ul li .check-svg svg {
  height: 20px;
  width: 20px;
}
.size-popup .size-form-inner{
  position: relative;
}
.subscribe-sec .subscribe-column{
  margin: auto;
}
/**** PRODUCT-LIST PAGE CSS START ****/
.mobile-facets__open .icon {
  display: block;
  max-width: 25px;
  margin: 0 auto;
}
.mobile-facets__open{
  max-width: 35px;
  border: 1px solid var(--second-color);
  padding: 2px;
  display: block;
}
.product-heading-column .filter-title{
  display: none;
}
.product-heading-column .mobile-facets__open-wrapper{
  display: block;
  padding: 0;
  border: 0;
}
.mobile-facets{
  position: fixed;
  top: 0;
  background: var(--white);
  left: 0;
  max-width: 315px;
  width:100%;
  height: 100%;
  z-index: 4;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate(-100%, 0px);
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.mobile-open .mobile-facets{
  -ms-transform: translate(0);
  -webkit-transform: translate(0);
  transform: translate(0);
  overflow: auto;
  height: 100%;
}
.product-filter-body {
  padding: 40px 15px 0px 15px;
  background: var(--white);
  border: 0;
  margin:0px;
}
.close-filter {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0px;
  right: auto;
  left: 0px;
  z-index: 101;
  width: 30px;
  height: 30px;
  padding: 7px;
  opacity: 0;
  transition: opacity .4s ease;
  background: var(--theme-color);
  pointer-events: none;
  -webkit-transition: opacity .4s ease;
  -moz-transition: opacity .4s ease;
  -ms-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
}
.mobile-open .close-filter {
  opacity: 1;
  pointer-events: visible;
 }
.close-filter svg {
  height: 100%;
  width: 100%;
}
.product-filter-body .close-filter {
  display: block;
}
.product-widget {
  padding: 0px;
}
/**** ARTICLE PAGE CSS START ****/
.articlebar .section-title {
  max-width: 70%;
}  
.articlebar .about-user {
  margin-bottom: 20px;
} 
.articlebar p {
  margin-bottom: 15px;
} 

.articlebar h4, .articlebar h5 {
  margin-bottom: 15px;
}
.articlebar .art-top-heading {
  margin-bottom: 15px;
}  
.articlebar .quote-box {
  margin-bottom: 20px;
}
.articlebar .art-tags-icons-wrp{
  padding: 10px;
}
.articlebar .art-tags-icons-wrp .tags-ul li {
  padding: 4px 10px;
}  
.articlebar .art-tags-icons-wrp label {
  margin-right: 10px;
}
.articlebar .social-icon .social-ul li:not(:last-of-type) {
  margin-right: 10px;
}
.articlebar .art-tags-icons-wrp {
  margin-bottom: 20px;
}
.articlebar .comment-form {
  max-width: 100%;
  padding: 15px;
}
.article-banner-sec .common-banner-content {
  margin-bottom: 20px;
}
.article-banner-sec .common-banner-content .back-btn {
  margin-right: 30px;
}
/**** ACCOUNT PAGE CSS START ****/
table tr {
  padding: 0px 0 0;
}
.my-acc-sec .account-details ul li label {
  max-width: 100%;
  margin-bottom: 5px;
}  
.my-acc-sec .account-details ul li {
  padding: 10px 0px;
}  
/**** CMS PAGE CSS START ****/
.cms-page table tr th, .cms-page table tr td{
  text-align: center;
}
.cms-page .shipping-tbl {
  max-width: 100%;
}  
table.shipping-tbl tr td:before {
  content: attr(data-label) " : ";
  float: left;
  text-align: left;
  font-weight: 600;
}
table.shipping-tbl tr td {
    text-align: right;
}
/**** CART PAGE CSS START ****/
.cart-table tr th, .cart-table tr td{
  text-align: center;
}
.cart-table .price, .cart-table .product-option, .cart-table tr td .quantity-wrp{
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart-table .qty-spinner{
  margin: 0;
}
.cart-table{
  border: 1px solid var(--border-color);
  border-bottom: 0;
}
/**** LOGIN PAGE CSS START ****/
.login-page .login-left-inner {
  margin-bottom: 30px;
}
.register-page .login-form-inner .form-container .forgot-pass{
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.register-page .form-container .btn, .register-page .login-form-inner .create-btn {
  width: auto;
}
.register-page .login-btn-wrp, .register-page .account-btn{
  text-align: center;
}
.register-page .account-info-icon li a {
  height: 50px;
  width: 50px;
}  
.register-page .account-info-icon li a svg {
  height: 22px;
  width: 22px;
}
.register-page .shop-btn {
  margin-top: 20px;
}
.register-page .login-right-inner .login-right-top{
  text-align: center;
}
.mobile-stickybar{
  display: block !important;
}
.mobile-sticky-wrp {
  padding: 8px 20px;
  gap: 10px;
}
.mobile-sticky-wrp svg {
  height: 18px;
  width: 18px;
}  
.contact-right-inner {
  margin-bottom: 0px;
}
.subscribe-full-sec{
  margin: 40px 0 0;
}

/*---------shf-css------------*/
.small-hide, .medium-hide {
  display: none !important;
}
.product-widget .acnav-label:after{
  display: none;
}
.product-widget>.pro-itm>.acnav-label{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#recently-viewed-products .product{
  width: 50%;
}
#ProductGridContainer .filter-column-title{
  display:none;
}
.collection-leftfilter .product-widget, .collection-rightfilter .product-widget {
  padding: 0px 0;
}
  /*===== product sicky css =====  */
.products_add-cart-sticky .sticky-pro-info .sticky_title {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.compare-data-label, .wishlist-data-label{
  margin-bottom:20px;
}
.pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label,
.pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label.compare-pro-detail,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label.wishlist-pro-detail{
  max-width: 100%;
  padding: 0px;
}
.compare-wrap .product-form .product-form__submit,
.wishlist-wrap .product-form .product-form__submit{
      padding: 10px 30px;
}
.pro-compare-left, .pro-wishlist-left {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  display: none;
}
.pro-compare-scroll .compare-wrap .compare-val-prod, 
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod{
  display:block;
}
.pro-compare-scroll .compare-wrap .compare-val-prod .prod-img,
.pro-compare-scroll .compare-wrap .compare-val-prod .pro_detail-inner, 
.pro-compare-scroll .compare-wrap .compare-val-prod .product-form, 
.pro-compare-scroll .compare-wrap .compare-val-prod .compare-prod-remove,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .prod-img,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .pro_detail-inner,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .product-form, 
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-prod-remove{
    max-width:100%;
    padding:0 0 0px;
}
.compare-pro-detail .prod-img a,
.wishlist-pro-detail .prod-img a{
  padding-top: 30%;
}
.pro-compare-right,
.pro-wishlist-right{
  border:1px solid var(--border-color)
}
.compare-wrap, .wishlist-wrap{
  padding:20px 15px 0;
}
.compare-pro-detail .compare-val-prod .prod-title, 
.wishlist-pro-detail .wishlist-val-prod .prod-title {
  font-size: 14px;
}
.out-of-stock-form {
    max-width: calc(100% - 30px);
    padding: 40px 15px;
}
.notify-send-btn button {
  padding: 10px 22px;
  }
.product-notification.active{
  bottom: 65px;
}
.product-notification{
  left: 10px;
}

.pdp-tab-sec .row>div:last-child {
  margin: 0px 0 0;
}
.subscribe-popup .subtitle{
  font-size:12px;
}
  .subscribe-popup .sub-left-inner {
  padding: 15px;
}
.free_shipping_txt {
  font-size: 14px;
}
.cartDrawer .mini-cart-footer-total-row{
  font-size: 18px;
}
.offer-sec .offer-column .btn-white{
  font-size:12px;
}
 .filter-cat li a{
  font-size:12px;
}
.register-page .login-form-inner{
  padding:15px;
  width:100%;
}
.size-table-wrapper {
  max-width: calc(100% - 30px);
width:100%;
}
.spr-container{
  padding:15px !important; 
}
body.product .site-footer {
  padding: 40px 0 70px;
}
.qv-price ins{
    font-size: 18px;
}
.compare-head .section-title h1,
.wishlist-head .section-title h1{
  font-size:26px;
}
.articlebar .quote-box{
  padding:0;
}
.list-collections .product-card-inner .img-wrapper{
padding-top: 90%;
}
.cart-table tr td:first-child{
    padding-left: 10px;
}
 .cart-page-sec .subtotal .price ins {
  font-size: 16px;
  }
.about-us-page .about-left-inner .section-title{
margin-bottom:15px;
}
.contact-left-inner ul .social-link{
      margin-bottom: 20px;
}
.faq-page .set .acnav-label{
  font-size:14px;
}
.site-footer-three .footer-row{
      padding: 0 0 0px;
}
deferred-media.deferred-media{
      padding-top: 90%;
}
.product-arrow-wrapper .swiper-button-next,.product-arrow-wrapper .swiper-button-prev,.swiper-button-next, .swiper-button-prev{
  opacity: 1;
  visibility: visible;
}
    .subscribe-popup {
  max-width: calc(100% - 30px);
    width:100%;
}
.subscribe-popup .subscriber-form .btn-svg {
  right: 10px;
}
#predictive-search-results ins{
  font-size: 16px !important;
}
 .register-page .login-right-inner .login-right-top{
        padding: 20px 0;
  }
.site-footer-three .footer-row{
  padding-bottom:0;
}
 .site-footer-three .social-icon .footer-logo{
        margin-bottom: 25px;
  }
.site-header.header-style-three .menu-right li.currency{
      display: none;
}
 .mobile-facets__footer{
    margin-top:0 !important;
  }
.subscribe-popup .sub-left-inner h3{
  font:var(--h4);
}
.main-banner-sec .img-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: #00000040;
  z-index: 0;
}
.main-banner-sec .banner-content-wrapper{
position:relative;
z-index:1;

}
.swiper-button-prev, .swiper-button-next{
  width: 35px;
  height: 35px;
}
.quickview-close {
  width: 35px;
  height: 35px;
}
.quickview-close svg{
  height: 15px;
width: 15px;
}
.site-header .count {
  top: -6px;
  right: -7px;
}
.cart-page-sec .coupon-table {
  margin-top: 20px;
}
.faq-page .faq-acnav .set:not(:last-of-type) {
  margin-bottom: 20px;
}
.cms-page table tr td{
  padding:10px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li{
  margin-top: 8px;
}
footer-bottom .payment-image-wrapper {
  gap: 8px;
}
.contact-left-inner ul .social-link .social-icons li{
  margin-bottom:0;
}
.cms-page h4, .cms-page h6 {
  margin-bottom: 15px;
} 
.header-style-three .profile-header .menu-dropdown {
  margin: 20px 0 0;
}
.pro-compare-section .pro-compare-wrap, .pro-wishlist-section .pro-wishlist-wrap {
  margin-bottom: 20px;
}
.blog-grid-sec .blogrightbar .flex-slider:last-of-type .blog-card{
  margin-bottom:0;
}
.subscribe-sec .subscribe-column{
  max-width: 100%;
}
.footer-bottom p{
  text-align:center;
}
.mini-cart-top {
  padding: 15px;
}
.cartDrawer .closecart {
  left: 15px;
  opacity: 1;
  visibility: visible;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.cartDrawer .mini-cart-footer-total-row div {
  padding: 0px;
}
.coupon-popup, .gift-popup{
  width: 100%;
}
.coupon-popup .coupon-body, .gift-popup .gift-body{
  padding: 30px 15px;
}
.cartDrawer .mini-cart-footer-icons .footer-bottom-icon{
  padding: 10px 20px;
}
.cartDrawer .mini-cart-bottom .cart-bottom-btn{
  font-size: 14px;
  padding: 12px 15px;
}
.cartDrawer .mini-cart-footer-icons svg {
  width: 25px;
  height: 25px;
}
.contact-left-inner ul li h5 {
  margin-bottom: 10px;
}
.load-more_wrap {
  margin: 0px;
}
   /***********  NEW CARTDRAWER CSS  ***********/
.coupon-popup, .gift-popup{
  width: 100%;
}
.mini-cart-top {
    padding: 15px;
}
.coupon-popup .coupon-body, .gift-popup .gift-body {
    padding: 30px 15px 15px;
}
.cartDrawer .mini-cart-footer-total-row div{
  padding: 0px;
}
.cartDrawer .mini-cart-footer-icons .footer-bottom-icon{
  padding: 10px 20px;
}
.cartDrawer .mini-cart-footer-icons svg {
    width: 25px;
    height: 25px;
}
.cartDrawer .mini-cart-bottom .cart-bottom-btn{
    padding: 12px 15px;
  font-size: 14px;
}
.cartDrawer .related-image {
    max-width: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
}
.cartDrawer .related-cart-text h4 {
    margin-bottom: 10px;
}
.cartDrawer .related-cart-price {
    font-size: 16px;
}
  .contact-left-inner ul li h5 {
    margin-bottom: 10px;
}
.cart-table table tr td::before{
  display: none;
}
.jdgm-review-widget--small .jdgm-rev-widg{
  padding: 16px 0 0px !important;
}
.jdgm-question-form-wrapper, .jdgm-form-wrapper {
  padding: 24px 0 0px !important;
}
.home-banner-slider .swiper-button-next {
  right: 10px;
}
 .home-banner-slider .swiper-button-prev {
  left: 10px;
}
.size-popup table tr td:before {
  content: attr(data-label);
  display: block;
  text-align: center;
  padding-right: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  float: left;
}
.size-popup table tr td {
  text-align: right;
}
}
@media screen and (max-width:575px){  
  .compare-data-label:before, .wishlist-data-label:before {
        font-size: 14px;
    }
    .collection .pagination-row{
    margin-top: 15px;
  }
  .collection .tabs.filter-list{
    display: none;
  }
  .product-heading-right-column .product-sorting-row{
    border: 0;
  }
  :root {  
    --h2: normal 600 26px/1.1 var(--first-font);
    --h3: normal 600 22px/1.1 var(--first-font); 
    --h4: normal 600 20px/1.1 var(--first-font); 
  } 
  /**** HEADER CSS START ****/
  .site-header .main-navigationbar .logo-col {
    max-width: 100px;
  } 
  .site-header .menu-right li svg {
    width: 18px;
    height: 18px;
  }
  .site-header .count {
    height: 15px;
    width: 15px;
  }  
  .site-header .menu-right li svg {
    width: 18px;
    height: 18px;
  }  
  .site-header .main-navigationbar .menu-right {
    padding-left: 15px;
  }
  /**** HEADER CSS END ****/
  .footer-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 0;
    margin-top: 0;
  }
  .site-footer .social-icon {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    
  }
  .sticky-btn{
    padding:7px;
  }
  .footer-widget h4 {
    margin-bottom: 15px;
  }
  .footer-bottom {
    margin-top: 20px;
  }
  .blog-cat li:not(:last-of-type) {
      margin-right: 0;
  }
  .blog-cat li a {
    padding: 10px 11px; 
    font-size: 10px; 
  }
  .reg-lbl { 
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
  }
  .login-form .submit-btn {
    max-width: 170px;
    margin: 15px 0 0 0;
  }
  .mobile-direction-column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dated {
    width: 100%;
    margin-top: 12px;
  }
  .subtitle {  
    font-size: 12px;
  }
  .two-coll-media .tool-content {
    display: none;
  } 
  /********* BLOG PAGE CSS start  **********/ 
  .blog-cat li {
    padding: 6px 8px; 
    font-size: 10px; 
  }
  .blog-widget-inner h3 {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 15px;
    padding: 0;
  }
  .blog-widget-inner p {
    margin: 12px 0 15px;
  }
  .blog-grid-section .blog-cat li {
    padding: 10px 5px; 
  }
  /********* BLOG PAGE CSS end  **********/
  .input-wrapper input {  
    font-size: 14px;
  }  
  .articlerightbar .blog-cat li{
    padding: 10px 5px;
  }   
  .price-btn ins { 
    font-size: 12px; 
  }
  .produdt-filter-cat {
    display: none;
  }
  .filter-select-box {
    margin-left: 5px;
  }
  /**** HOME PAGE CSS ****/ 
  .main-banner-sec .banner-content-wrapper {
    padding: 90px 0px 40px;
    max-width: 100%;
  }
  .fashionable-about-sec .row [class*="col-"]:not(:last-of-type){
    margin-bottom: 40px;
  }
  .fashionable-about-sec .fashionable-content-inner {
    gap: 10px;
  }
  .offer-sec .offer-column{
    text-align: start;
  }
  ul.tabs {
    gap: 5px 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .our-insta-sec ul li {
    max-width: 50%;
  }
  .subscribe-section-form .input-wrapper {
    gap: 5px;
  }  
  .subscribe-section-form .input-wrapper .btn-subscibe {
    padding: 13.5px 10px;
    font-size: 12px;
  }  
  .subscribe-section-form .input-wrapper input{
    padding: 12px 10px;
  }
  
  .cms-sec {
    padding-bottom: 20px;
  }
  .subscribe-popup .sub-right-inner{
    display: none;
  }
  /**** PRODUCT PAGE CSS START ****/
    
  
  .pdp-filter-cat li:not(:last-of-type) {
    padding-right: 13px;
    margin-right: 6px;
  }  
  .pdp-right-column .pdp-social-icons {
    float: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }  
  .pdp-right-column .pdp-social-icons span{
    text-orientation: unset;
    -webkit-writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin-right: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .pdp-right-column .pdp-social-icons ul li:not(:last-of-type) {
    margin-bottom: 0px;
    margin-right: 15px;
  }
  .pdp-right-column .pdp-social-icons ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .pdp-whislist-btn {
    height: 30px;
    width: 30px;
  }  
  .pdp-right-column .section-title {
    max-width: 100%;
  }  
  .pdp-right-column .select-color-grp .radio-buttons .button .clr {
    width: 10px;
    height: 10px;
  }
  .pdp-right-column .select-color-grp .button label, .pdp-right-column .size-select .button label {
    gap: 5px;
  }    
  .pdp-right-column .free-dlvry-wrp .free-delivery{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .pdp-right-column .free-dlvry-wrp .delivery-svg svg{
    margin: 0 auto 10px;
  }
  .pdp-tab-sec .pdp-tab-right ul.tabs li a {
    padding: 0 0px 5px;
  }
  .pdp-tab-sec .pdp-tab-right .tab-head-row{
    margin-bottom: 15px;
  }
  .pdp-tab-sec .review-content .review-wrp .review-btn{
    margin-top: 10px;
  }
  .pdp-tab-sec .review-content .review-pdp-title .review-title-left {
    gap: 10px;
  }
  .pdp-tab-sec .review-content .review-title-left h6 {
    margin-left: 0px;
  }
  .filter-select-wrp .featured-select{
    display: none;
  }
  .product-heading-right-column .product-sorting-row{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: 0px;
    gap: 0px;
    padding: 5px;
  }
  .product-filter-right-column .product-grid-view .product-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .product-listing-section .product-heading-row .row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /**** ARTICLE PAGE CSS START ****/
  .blog-grid-sec .blogleftbar{
    margin-bottom: 30px;
  }
  .article-banner-sec .common-banner-content{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 10px;
  }
  .articlebar .section-title {
    max-width: 100%;
  }
  .articlebar .quote-box {
    padding-left: 0px;
    border-left: 0Px;
  }
  .articlebar .art-tags-icons-wrp{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; 
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .my-acc-sec .acc-btn-wrp .acc-btn {
    margin-right: 10px;
  }
  /**** ABOUT PAGE CSS START ****/
  .about-counter-sec .row [class*="col"]:not(:last-of-type){
      margin-bottom: 20px;
  }
  /**** FAQS PAGE CSS START ****/
  .faq-page .faq-left-itm .section-title h2 {
    margin-bottom: 15px;
  }
  .faq-page .faq-left-itm{
    margin-bottom: 30px;
  }
  /**** CART PAGE CSS START ****/   
  .cart-page-sec .continue-btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }  
  .cart-page-sec .subtotal {
    gap: 10px;
  }  
  /**** LOGIN PAGE CSS START ****/
  .register-page .account-info-icon{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  /**** ERROR PAGE CSS START ****/
  .error-main-sec .eroor-content .form-input {
    max-width: 100%;
  }  
  .error-main-sec .eroor-content .large-text {
    font-size: 70px;
  }
  .error-main-sec .eroor-content .section-title h3 {
    margin: 20px 0 15px;
  }  
  .add-details{
    gap:15px;
  }
  .pdp-right-column .free-dlvry-wrp .delivery-content{
    text-align: center;
    margin: 0px;
  }
  .mobile-facets__open .icon{
    height: 19px;
    width: 19px;
  }
  .mobile-facets__open {
    max-width: 25px;
  }
  .subscribe-full-sec{
    margin: 30px 0 0;
  }
  
  /*--------------shf-css----------------*/
  .product-notification{
    left: 10px;
    width: 300px;
  }
  .progress-wrap {
    right: 10px;
    bottom: 60px;
    height: 40px;
    width: 40px;
  }
  #recently-viewed-products .product{
    width: 100%;
  }
  .spr-summary.rte {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  }
   .spr-summary.rte > span{
       margin-bottom:10px;
    }
  .spr-summary.rte > span.spr-summary-actions{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom:0;
  }
  /*===== header custom css ======  */
  .site-header .menu-right li:not(:first-of-type) {
    margin-left: 15px;
  }
  /*=== home banner custom css =====  */
  .footer-row .acnav-list1{
    padding-top: 15px;
  }
  
  
  .pdp-filter-cat-sec .pdp-filter-cat li a{
    font-size: 12px;
  }
  .subscribe-sec .subscribe-column{
        max-width: 100%;
  
  }
  .load-more_wrap {
    margin: 10px auto 0;
  }
  .social-icon .social-ul li a svg {
    height: 18px;
    width: 18px;
  }
  .about-full-img-sec .about-full-img img{
    height:150px;
    -o-object-fit:cover;
       object-fit:cover;
  }
  #recently-viewed-products .img-wrapper {
    padding-top: 100%;
  }
  body.product .subscribe-full-sec ,body.index .subscribe-full-sec{
  margin: 0px 0 0 !important;
  }
  #recently-viewed-products .product:last-of-type{
    margin-bottom:0;
  }
  
  .header-style-two.site-header .menu-right li.profile-header {
    margin-left: 15px;
  }
  .bestseller-sec .section-title{
        max-width: 100%;
  }
  .cms-sec .row .cms-content {
    padding:20px 0;
  }
  
  .cms-sec .row.row-reverse .cms-content{
  padding-bottom:0;
  }
   .cms-sec .row.row-reverse{
  margin-top:0;
  }
  #recently-viewed-products .product:last-of-type{
    margin-bottom:0;
  }
  .articlebar .article-img {
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pdp-page-main-sec {
    padding: 30px 0;
  }
  .product-filter-right-column .product-card:last-of-type {
    margin-bottom: 0;
  }
  ul.tabs li {
    font-size: 12px;
  }
  .subscribe-popup .subscriber-form input {
    margin-top: 5px
  }
  .subscribe-popup .subscriber-form .enter-email-row {
    margin-bottom: 15px;
  }
}
@media screen and (max-width:480px){
   .spr-summary.rte > span.spr-summary-actions{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width:474px){  
  .product-card .product-content .product-top-content, .blog-card .blog-content .blog-top-content {
    -webkit-box-flex: unset;
    -ms-flex:unset;
    flex: unset;
    height: unset;
  }  
}
@media screen and (max-width:370px){  
  .announcebar .annouce-slider .annouce-inner::before {
    right: -15px;
  }  
}