/** Shopify CDN: Minification failed

Line 10654:84 Expected "}" to go with "{"

**/
*,
: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: 0 !important;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  background: var(--second-color);
  color: var(--white);
  font: var(--common-text);
  min-height: 100%;
  height: auto;
  width: 100%;
  overflow: visible;
  position: relative;
}

.wrapper,
#MainContent,
.page-wrapper,
.content-for-layout,
main {
  overflow: visible;
  height: auto;
  min-height: auto;
  max-height: none;
  position: relative;
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
.btn,
button {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: 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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-family: var(--second-font);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]: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;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

::-webkit-input-placeholder {
  color: var(--white);
}
:-ms-input-placeholder {
  color: var(--white);
}
::-moz-placeholder {
  color: var(--white);
}
::-ms-input-placeholder {
  color: var(--white);
}
::placeholder {
  color: var(--white);
}

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;
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,li,ul,ol {
    font-family: var(--second-font);
}
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);
}
.uppercase {
    text-transform: uppercase;
}
.text-center {
    text-align: center !important;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
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: var(--second-color);
    border: solid 1px var(--theme-color);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2;
    color: var(--theme-color);
    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;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.nice-select:after {
  border-bottom: 2px solid var(--second-color);
  border-right: 2px solid var(--second-color);
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.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);
}
.nice-select.disabled {
  border-color: var(--border-color);
  color: var(--border-color);
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: var(--white);
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -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;
  -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  -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%;
  border-radius:10px;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 13px;
  color: var(--theme-color);
  line-height: 1;
  padding: 10px 15px;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f3f0ee;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.slick-slide .nice-select .list {
    height: 70px;
    overflow: auto;
}
.slick-slide .nice-select .list::-webkit-scrollbar {
    width: 2px;
}
.slick-slide .nice-select .list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.slick-slide .nice-select .list::-webkit-scrollbar-thumb {
    background: #888;
}
.slick-slide .nice-select .list .option {
    font-size: 10px;
    min-height: 30px;
    line-height: 1;
}
/* ============================================= */
/* !!!!          SLICK SLIDER CSS           !!!! */
/* ============================================= */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
    outline: none;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1;
}
.slick-dots li:not(:last-child) {
    margin-right: 5px;
}
.slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 10px;
    width: 10px;
    background: var(--white);
    border-radius: 100%;
    border: 1px solid var(--theme-color);
  cursor:pointer;
}
.slick-dots li.slick-active {
    background: var(--theme-color);
}
.slick-dots li button {
    display: none;
}
span.sub-title {
    margin: 0 0 10px;
    display: block;
}
.slick-arrow {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 43%;
  font-size: 0;
  border: 0;
  outline: none;
  z-index: 1;
  border-radius: 0;
  padding: 0;
  background-color: #e5e5e5d9;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  border-radius:7px;
}
.product-slider-main:hover .slick-arrow,.product-tab-slider:hover .slick-arrow,.right-card-slider:hover .slick-arrow,.more-pro-slider:hover .slick-arrow,
.blog-main-slider:hover .slick-arrow,.testi-slider:hover .slick-arrow{
   opacity: 1;
  visibility: visible; 
}
.slick-arrow.slick-next {
    right: 0;
    left: auto;
}
.slick-arrow.slick-prev {
    right: auto;
    left: 0;
    -webkit-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    transform: translateY(-50%) scale(-1);
}
.slick-arrow:focus,
.slick-arrow:hover {
    background-color: #0000008e;
}
.slick-arrow:focus svg path,
.slick-arrow:hover svg path {
    fill: var(--white);
}
.slick-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
    background-color: transparent;
}
.slick-lightbox .slick-prev {
    left: 15px;
}
.slick-lightbox .slick-next {
    right: 15px;
} 
.slick-lightbox-inner .slick-arrow {
    background: var(--white) url(right-arrow.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
  visibility:visible;
  opacity:1;
}
.slick-lightbox-hide {
    opacity: 0;
} 
.slick-lightbox-hide-init {
    position: absolute;
    top: -9999px;
    opacity: 0;
} 
.slick-lightbox-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-lightbox-slick-item {
    text-align: center;
    overflow: hidden;
}
.slick-lightbox-slick-item:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    display: block;
    text-align: center;
}
.slick-lightbox-slick-item-inner {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-caption {
    margin: 10px 0 0;
    display: block;
    color: var(--white);
}
.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
} 
.slick-lightbox .close svg {
    height: 22px;
    width: 22px;
}
.slick-lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    opacity: 1;
    background: transparent;
    border: none;
    height: 27px;
    width: 27px;
    padding: 0;
}
a.product-item-img {
    display: block;
}
.slide-arrow svg {
    max-width: 20px;
    display: inline-block;
}
/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.shopify-challenge__container .shopify-challenge__button, 
.btn {
    text-align: center;
    padding: 11px 15px;
    font-family: var(--second-font);
    color: var(--white);
    background-color: var(--theme-color);
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    cursor: pointer;
    border: 1px solid var(--theme-color);
    position: relative;
    border-radius: 60px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    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-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.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.white-btn {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
}
.btn.white-btn svg path {
    fill: var(--black);
}
.btn.white-btn:hover {
    border-color: var(--white);
}
.btn:hover,
.btn:focus {
    background-color: var(--second-color);
    color: var(--white);
}
.btn:focus svg path,
.btn:hover svg path {
    fill: var(--white);
}
.link-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: capitalize;
    color: 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;
    text-decoration: underline;
}
.link-btn svg {
    fill: var(--white);
    margin-left: 13px;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.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: 10px 15px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    background: var(--second-color);
    min-width: 125px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    color: var(--white);
    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;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.btn svg,
.btn-secondary svg {
    width: 15px;
    margin-left: 10px;
    height: 15px;
}
.btn-secondary svg path {
    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;
    fill: var(--white);
}
.btn-secondary:hover {
    background: var(--theme-color);
    color: var(--white);
}
.btn-secondary:hover svg path {
    fill: var(--white);
}
.btn-secondary.white-btn {
     border: 1px solid var(--white);
    color: var(--white);
    line-height: 1;
}
.btn-secondary.white-btn svg path {
    fill: var(--white);
}
.btn-secondary.white-btn:hover {
    border: 1px solid var(--white);
    color: var(--black);
    background: var(--white);
}
.btn-secondary.white-btn:hover svg path {
    fill: var(--black);
}
.play-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.play-btn svg {
    margin-right: 15px;
}
.play-btn .a {
    fill: #9e715d
}
.play-btn .b {
    fill: none;
    stroke: #9e715d
}
/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
    position: relative;
    border: 1px solid var(--border-color);
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
  border-radius:10px;
}
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: 75%;
    line-height: 0;
    vertical-align: baseline;
}
.form-group label sup {
    color: red;
}
.checkbox-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.checkbox-custom label {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    vertical-align: middle;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    padding: 0 0 0 30px;
}
.checkbox-custom label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    padding: 8px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    left: 0;
    top: 50%;
    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(--theme-color);
}
.checkbox-custom input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 43%;
    left: 6px;
    width: 6px;
    height: 10px;
    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;
    display: inline-block;
    margin: 0 4px;
}
/** 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(--white);
    margin: 0;
    vertical-align: bottom;
}
.radio-group label::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid var(--white);
    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%);
}
.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;
    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;
    right: auto;
    -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: transform 400ms ease;
    -moz-transition: transform 400ms ease;
    -ms-transition: transform 400ms ease;
    -o-transition: transform 400ms ease;
}
.radio-group input[type="radio"]:checked+label::before {
    border-color: var(--white);
}
.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, body.no_scroll {
    overflow: hidden;
    position: relative;
}
.right-gliter {
    bottom: 0;
    right: 0;
}
.gliter-img {
    position: absolute;
    z-index: -1;
    height: 100%;
}
.padding-top {
    padding-top: 80px;
}
.padding-bottom {
    padding-bottom: 80px;
}
.section-title {
    margin-bottom: 26px;
}
.section-title b {
    font-weight: 300;
    display: inline-block;
}
.btn-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;
    margin-top: 24px;
    gap: 15px;
}
.section-title a,
.card-title a {
    font-family: inherit;
}
/* ============================================= */
/* !!!!     CUSTOMIZE THE NAVBAR            !!!! */
/* ============================================= */
.header-style-one {
    background: var(--theme-color);
    -webkit-box-shadow: 0px 4px 55px rgba(24, 58, 64, 0.12);
            box-shadow: 0px 4px 55px rgba(24, 58, 64, 0.12);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.header-style-one .announcebar-right ul li {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
}
.header-style-one .announcebar-right ul li:not(:first-of-type){
  padding-left:15px;
}
.header-style-one .announcebar {
    background-color: var(--theme-color);
    color: var(--white);
    text-transform: capitalize;
    position: relative;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.header-style-one .announcebar svg {
    fill: var(--white);
    width: 16px;
    height: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.header-style-one .announcebar p b {
    margin-right: 6px;
}
.header-style-one .announce-row {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-style-one .announcebar .annoucebar-left p svg {
    margin-right: 10px;
}
.header-style-one .announcebar .annoucebar-left p b {
    font-weight: 500;
}
.header-style-one .announcebar .announcebar-right a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.header-style-one .announcebar .announcebar-right a svg {
    margin-left: 10px;
}
/** Main navigation bar css **/
.header-style-one .mobile-menu .mobile-menu-button {
    border: 0;
    background: transparent;
    line-height: 0;
    padding: 0;
}
.header-style-one .mobile-menu .mobile-menu-button div {
    width: 100%;
    height: 2px;
    margin: 4px 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background: var(--white);
}
.menu-right .phone-icons {
    display: none;
}
.header-style-one .main-navigationbar .logo-col {
    max-width: 120px;
    width: 100%;
}
.header-style-one .main-navigationbar .logo-col a {
    display: block;
    position: relative;
}
.header-style-one .main-navigationbar .logo-col a::after {
    content: '';
    position: absolute;
    height: 40px;
    width: 1px;
    background: white;
    margin-left: 150px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.header-style-one .main-navigationbar .menu-items-col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav {
    display: none;
    padding-left: 50px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li {
    padding: 22px 0;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
    padding-right: 22px;
}
.main-nav li a {
    color: var(--white);
}
.menu-right .profile-suport {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-family: var(--second-font);
    font-size: 14px;
    color: var(--white);
    padding: 10px 20px;
    text-align: right;
}
.menu-right .profile-suport .support-span {
    font-size: 18px;
}
.header-style-one .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-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a {
    padding-right: 20px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a:after {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    right: 0;
    top: 7px;
    background: url('white-bottom-arrow.png');
    background-size: 10px;
    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;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item:hover>a:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.header-style-one .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(--theme-color);
    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-right: 8px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>.category-btn svg path {
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.cartOpen .header-style-one .menu-right li.cart-header .closecart {
    opacity: 1;
    visibility: visible;
}
.header-style-one .menu-right li.cart-header .closecart{
    position: fixed;
    right: 410px;
    top: 10px;
    border: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.account-header{
  position: relative;
}
.account-header .hmuser {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 33px;
    position: relative;
    margin-right: 15px;
    display: block;
}
.account-header .hmuser svg{
  position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);  
}
.account-header .dropdown-menu-right {
    right: 0;
    left: auto;
}
.account-header .hmuser svg path {
    fill: var(--theme-color);
}
.account-header .dropdown-menu {
    position: absolute;
    top: 132%;
    left: auto;
    z-index: 1;
    display: none;
    float: left;
    padding: 15px;
    color: var(--white);
    text-align: left;
    list-style: none;
    background-color: var(--white);
    color: var(--black);
    background-clip: padding-box;
    min-width: 180px;
  border-radius:0 0 10px 10px;
}
.account-header .dropdown-menu ul li{
  line-height: 1;
}
.account-header .dropdown-menu ul li:not(:last-of-type){
  margin-bottom: 10px;
}
/**  Megamenu css  **/
.header-style-one .main-navigationbar {
    position: relative;
}
.header-style-one .mobile-menu {
    display: inline-block;
    position: relative;
    width: 22px;
    margin-left: 10px;
}
.header-style-one .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%);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown {
    position: absolute;
    top: 100%;
    background-color: var(--theme-color);
    -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;
    -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);
  border-radius:0 0 10px 10px;
}
.header-style-one .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;
}
.header-style-one .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);
}
.header-style-one .menu-dropdown ul>li:not(:last-of-type) {
    margin-bottom: 10px;
}
.header-style-one .megamenu-list>li span {
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
}
/* MOBILE MENU CSS */
.mobile-menu-wrapper {
    position: fixed;
    z-index: 4;
    background: var(--theme-color);
    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;
    width: 100%;
}
.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(--theme-color);
}
.mobile-menu-wrapper .mobile-menu-bar>ul {
    height: calc(100vh - 115px);
    overflow: auto;
    padding: 10px 20px;
    background: var(--theme-color);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li {
    margin-top: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.mobile-menu-wrapper .menu-close-icon svg path {
    fill: var(--white);
}
/* CART DRAWER CSS */
.overlay.active,
.cartOpen .overlay::after,
.quick-active .overlay:after{
    content: " ";
    z-index: 4;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}

.cartDrawer {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5;
    background: var(--white);
    width: 410px;
    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);
}
.menu-right .cart-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    gap: 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.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;
}
.cartDrawer .closecart {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
}
.cartOpen .cartDrawer .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-color: var(--theme-color);
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-thumb {
    background: var(--black);
}
.cartDrawer .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);
  border-radius:10px;
}
.cartDrawer .qty-spinner button svg path {
    fill: #523636;
}
.cartDrawer .mini-cart-item:not(:last-of-type) {
    margin-bottom: 20px;
}
.cartDrawer .mini-cart-image {
    width: 80px;
    background: #8080801c;
}
.cartDrawer .mini-cart-image a {
    display: block;
    padding-top: 150%;
    position: relative;
    border: 0;
}
.cartDrawer .mini-cart-image img {
    top: 0;
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}
.cartDrawer .mini-cart-details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    padding-left: 15px;
}

.cartDrawer .mini-cart-title {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.cartDrawer .cart-variable {
    margin-bottom: 10px;
}
.cartDrawer .cart-variable p {
    margin: 0 0 5px;
    color: #4e4e4e;
}
.cartDrawer  .qty-spinner input {
    color: var(--black);
}
table tr:last-of-type {
    border-bottom: 0;
}
#main-cart-footer.is-empty {
    display: none;
}
.main-cart .cart__warnings h5 {
    color: var(--black);
}
.template-cart .back-btn {
    margin-top: 40px;
}
.qty-spinner {
    border: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100px;
    height: 30px;
    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;
    width: 10px;
}
.qty-spinner button svg path {
    fill: var(--white);
}
.qty-spinner input {
    border: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 29px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    color: var(--white);
}
del {
    opacity: 0.6;
    text-decoration: line-through;
}
.price {
    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;
}
.menu-close-icon svg {
    height: 25px;
    width: 25px;
}
.cartDrawer .mini-cart-details .price {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font: var(--common-text);
    color: var(--black);
}
.cartDrawer .pvarprice {
    margin-top: 10px;
}
.cartDrawer .price del {
    margin-left: 10px;
}
.cartDrawer .price ins {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cartDrawer .price .currency-type {
    font-weight: 500;
    font-size: 10px;
    margin-left: 3px;
    display: inline-block;
}
.cartDrawer .mini-cart-footer {
    border-top: 1px solid var(--border-color);
}
.cartDrawer .mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 20px;
    line-height: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--theme-color);
    margin: 0 -10px 20px;
}
.cartDrawer .mini-cart-footer .u-save {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--theme-color);
    margin-bottom: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.cartDrawer .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;
    border: 0;
}
.cartDrawer .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 .remove_item svg path {
    fill: red;
}
.cartDrawer .remove_item svg {
    height: 15px;
    width: 15px;
}
.cartDrawer .emptyCart {
    padding: 50px 0 0 0;
}
/***mobile wrapper *****/
.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;
    width: 100%;
}
.mobile-menu-wrapper.active-menu {
    -webkit-transform: translate(0%, 0px);
        -ms-transform: translate(0%, 0px);
            transform: translate(0%, 0px);
}
.mobile-menu-wrapper .mobile-menu-bar>ul {
    height: calc(100vh - 48px);
    overflow: auto;
    padding: 10px 20px;
    background: var(--second-color);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li {
    margin-top: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
    font-size: 18px;
    color: #f1f1f1;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.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;
}
.acnav-list {
    display: none;
    padding: 0 0 10px 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;
}
.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: 5px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a {
    font-size: 14px;
}
.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);
}
.menu-open-arrow path,
.close-menu-ioc path {
    fill: #f1f1f1;
}
/* home section start  */
.main-top {
    position: relative;
}
.design-img-chocolate,
.design-img-chocolate2 {
    position: absolute;
    z-index: -1;
}
.design-img-chocolate {
    left: 0;
    top: 60px;
    max-width: 130px;
}
.design-img-chocolate2 {
    max-width: 200px;
    right: 0;
    bottom: -15%;
}
.home-section {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-bottom: 200px;
}
.second-sec {
    margin-top: -180px;
    position: relative;
    z-index: 1;
}
.home-slider:not(.slick-initialized) *:not(:first-child) {
  display: none !important;
}
.home-slider-main .slick-dots li button {
    position: relative;
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 22px;
    margin: 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;
    height: 60px;
    width: auto;
    padding-left: 20px;
    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;
}
.home-slider-main .slick-dots {
    display: block !important;
    border-left: 1px solid var(--white);
    height: 180px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -84px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.home-slider-main .slick-dots li button:before {
    content: '0';
}
.home-slider-main .slick-dots li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    width: auto;
    background: transparent;
    border-radius: 100%;
    border: none;
}
.home-slider-main .slick-dots li.slick-active {
    background: transparent;
}
.home-slider-main .slick-dots li:not(:last-child) {
    margin-right: 0;
}
.home-slider-main .slick-dots li button:after {
    content: '';
    height: 0;
    width: 3px;
    background: var(--white);
    position: absolute;
    left: -2px;
    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;
    opacity: 0;
    visibility: hidden;
}
.home-slider-main .slick-dots li.slick-active button:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.home-slider-main .slick-arrow {
    font-size: 0;
    border: 0;
    outline: 0;
    padding: 0;
    height: 15px;
    width: 34px;
    position: absolute;
    bottom: 63px;
    background: url(left-white-arrow.svg) no-repeat;
    background-size: 32px;
    background-position: 50% 50%;
  opacity: 1;
  visibility:visible;
}
.home-slider-main .slick-prev {
    left: auto;
    right: -55px;
    top: 85px;
    transform: translateY(0) rotate(90deg);
    -webkit-transform: translateY(0) rotate(90deg);
    -moz-transform: translateY(0) rotate(90deg);
    -ms-transform: translateY(0) rotate(90deg);
    -o-transform: translateY(0) rotate(90deg);
}
.home-slider-main .slick-next {
    right: -55px;
    -webkit-transform: translateY(0) scaleX(-1) rotate(90deg);
    -ms-transform: translateY(0) scaleX(-1) rotate(90deg);
    transform: translateY(0) scaleX(-1) rotate(-90deg);
    bottom: 85px;
    top: auto;
}
.home-left-side.dark-p {
    max-width: 500px;
}
.service-tag {
    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;
    gap: 30px;
    margin-top: 70px;
}
.service-tag img {
    margin-right: 10px;
}
.service-tag .service-text b {
    display: block;
}
/* product card  */
.product-form button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.home-slider-main {
    max-width: 300px;
    margin-left: auto;
}
.product-card {
    padding: 10px 10px 0;
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
}
.product-card .product-card-inner {
    position: relative;
    background-color: var(--second-color);
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 20px 15px;
    -webkit-box-shadow: 0 0 17px 0px rgb(0 0 0 / 6%);
            box-shadow: 0 0 17px 0px rgb(0 0 0 / 6%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 12px;
}
.product-card .card-top {
   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;
    padding-bottom: 15px;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1;
}
.product-card .card-top .favorite-icon {
    margin-left: auto;
}
.product-card .card-top > span {
 border: 1px solid var(--white);
    border-radius: 5px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding: 2px 11px;
    font-size: 12px;
    color: var(--white);
} 
.blog-main-slider .slick-list,.blog-main-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-content-top {
    height: 100%;
}
.product-card-image,
.blog-card-image,
.product-card-image a,
.blog-card-image a,
.product-card-image a img,
.blog-card-image a img {
    -webkit-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
}
.product-card-image,
.blog-card-image {
    position: relative;
}
.product-card-image a {
    position: relative;
    display: block;
    padding-top: 60%;
}
.product-card-image a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}
.product-card .card-title {
    padding-bottom: 20px;
}
.product-card .card-title .jdgm-widget.jdgm-widget{
  margin-bottom: 0px;
}
.product-card .card-bottom .card-title b {
    font-weight: 300;
}
.product-card .card-bottom {
  padding-top: 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%;
}
.card-top-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.product-card .card-bottom .select-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 20px;
}
.product-card .card-bottom .select-box label {
    padding-right: 15px;
    text-transform: capitalize;
}
.product-card .card-bottom p {
    color: #636363;
    margin-bottom: 20px;
}
.product-card .price {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.tabs-wrapper .price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.price ins {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
}
.pagination-wrapper {
    margin-top: 30px;
}
.wbcur {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
}
.price .currency-type {
    font-size: 10px;
    display: inline-block;
}
.product-size-div {
    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;
}
.product-size-div>label {
    text-transform: uppercase;
    font-size: 12px;
    padding-right: 6px;
    font-weight: 500;
}
.product-card .card-btn-wrapper {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
}
.product-card .btn {
    font-size: 12px;
    padding: 10px 20px;
}
.second-sec .second-sec-right-side {
    max-width: 400px;
    margin-left: auto;
}
.second-sec .img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.second-sec-right-side p {
    max-width: 450px;
    padding-bottom: 15px;
}
/* product-slider-sec  */
.product-slider-sec .slick-arrow {
    top: 36%;
}
.product-slider-sec .slick-arrow.slick-next{
  right:15px;
}
.product-slider-sec .slick-arrow.slick-prev{
  left:15px;
}
.product-slider-sec {
    margin-bottom: -330px;
    position: relative;
    z-index: 1;
}
.product-slide.slick-slide {
    padding: 0 10px;
}
.product-slider-sec .slick-list {
    padding: 0 11% 150px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  margin:0 -10px;
}
.product-slider-sec .slick-track{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-sec {
    position: relative;
    padding: 330px 0 100px;
    background-repeat: no-repeat;
    color: var(--white);
    background-position: 50% 50%;
    background-size: cover;
}
.video-sec .video-content {
  text-align: center;
  position: relative;
}
.video-sec::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
}
.video-sec .video-content p {
    max-width: 600px;
    margin: auto;
}
.video-sec .play-btn .a {
    fill: var(--white)
}
.video-sec .play-btn .b {
    fill: none;
    stroke: var(--white)
}
/* tab  */
.product-tab-slider .slick-list,
.product-tab-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tab-content {
    display: none;
}
.tab-sec .slick-slider .slick-list,
.pro-base-slider-main.slick-slider .slick-list{
    margin: 0 -10px;
}
.tab-content.active {
    display: block;
}
.tab-sec li.active a {
    background: var(--theme-color);
    color: var(--white);
}
.tab-sec .tab-title {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
}
.tab-sec .tab-title .section-title {
    margin: 0;
}
.tab-title-left {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
}
.tab-sec ul li:not(:last-of-type) .btn-secondary {
    margin-right: 10px;
}
/* card slider  */
.card-slider-sec {
    position: relative;
    z-index: 1;
}
.card-slider-sec .right-card-slider.slick-slider .slick-list{
    margin: 0 -10px;
}
.right-card-slider .slick-track,
.right-card-slider .slick-list,
.right-card-slider,
.card-right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  -webkit-box-flex:1;
      -ms-flex:auto;
          flex:auto;
}
.card-slider-sec .right-card-slider .card-slides {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.card-slider-sec .img-box {
    position: relative;
    border-radius: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 20px;
    overflow: hidden;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    border: 1px solid var(--theme-color);
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    width: 100%;
}
.card-slider-sec .img-box .card-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.card-slider-sec .top-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 300px;
}
.card-slider-sec .top-content p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-slider-sec .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-top: 100px;
}
.card-slider-sec .left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.category-box {
    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;
    height: 100%;
}
/* two-col-variant-section  */
.more-pro-sec .left-side .btn-wrapper {
    margin-bottom: 24px;
}
.more-pro-sec .left-side p {
    max-width: 460px;
}
.more-pro-sec .btn-secondary.white-btn {
    background-color: transparent;
}
.more-pro-sec .btn-secondary.white-btn:hover {
    background-color: var(--white);
}
.more-pro-sec .btn.white-btn:hover {
    background-color: transparent;
}
.more-pro-sec .product-card .price {
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
}
.more-pro-sec .product-card-image a {
    padding-top: 65%;
}
.more-pro-sec .product-card .product-card-inner {
    padding: 20px 12px;
}
.three-col-sec .left-col .btn-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.three-col-sec .left-col {
    text-align: end;
}
.three-col-sec .img-wrapper {
    width: 100%;
}
.three-col-sec .img-wrapper img {
    display: block;
    margin: 15px auto;
}
.gradient-bg {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(12%, transparent), color-stop(12%, var(--theme-color)), to(var(--second-color)));
    background: -o-linear-gradient(top, transparent 12%, var(--theme-color) 12%, var(--second-color));
    background: linear-gradient(to bottom, transparent 12%, var(--theme-color) 12%, var(--second-color));
}
/* news-letter-sec  */
.news-letter-content {
    max-width: 60%;
    margin: auto;
    text-align: center;
}
.news-letter-sec .input-wrapper {
    margin: 20px auto;
    max-width: 570px;
}
.news-letter-sec .input-wrapper .input {
    background: transparent;
    border: 0;
    color: var(--white);
}
.news-letter-sec .input-wrapper .btn-subscibe {
    top: 20px;
    right: 0px;
}
.news-letter-sec .input-wrapper input {
    background: transparent;
    border-color: var(--theme-color);
}
.news-letter-sec .input-wrapper button {
    width: 43px;
    height: 40px;
    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;
    background: #FFFFFF;
    border: 0;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin: 8px;
}
.news-letter-sec .checkbox-custom label:before {
    border-color: var(--white);
}
.news-letter-sec .checkbox-custom label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
/* blog sec  */
.blog-sec .dark-p {
    max-width: 405px;
    margin: 0 auto 30px;
    text-align: center;
}
.blog-card {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    padding: 0 10px;
}
.blog-card .sub-title {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid var(--white);
    padding: 0 10px;
    border-radius: 20px;
    text-transform: capitalize;
}
.blog-grid-section .blog-card .btn {
    font-size: 12px;
    padding: 12px 14px;
}
.blog-main-slider.slick-slider .slick-list{
    margin: 0 -10px;
}
.blog-img a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.blog-img a {
    position: relative;
    display: block;
    padding-top: 70%;
    overflow: hidden;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.blog-content{
  padding : 10px;
}
.blog-card .blog-card-inner {
    position: relative;
    background-color: var(--theme-color);
    width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -o-border-radius: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.blog-content .subtitle {
   position: absolute;
    top: 10px;
    left: 10px;
    border: 1px solid var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: capitalize;
    font-size: 12px;
}
.blog-card-image {
    position: relative;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}
.blog-card-image a {
    position: relative;
    display: block;
    padding-top: 70%;
    background: var(--white);
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    border: 1px solid var(--theme-color);
    border-bottom: transparent;
}
.blog-card-image a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all ease-in-out 0.6s;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
}
.blog-card .blog-card-content {
    padding: 20px 10px;
    border: 1px solid #FCD7AD;
    border-top: transparent;
    border-radius: 0 0 20px 20px;
    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-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.blog-card .blog-card-content p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card .section-title {
    margin-bottom: 15px;
}
.blog-card .blog-card-bottom {
    margin-top: 15px;
    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;
}
.blog-card .blog-card-bottom .date {
    text-align: end;
    font-size: 14px;
    line-height: 1;
}
.blog-card .blog-card-bottom .btn {
    background-color: var(--black);
    font-size: 12px;
}
.blog-card .blog-card-bottom .btn:hover {
    background-color: var(--theme-color);
    border-color: var(--white);
}
/* testimonials-sec  */
.testimonials-sec .left-side {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
}.blog-grid .blog-widget
.section-title-main {
    margin-bottom: 30px;
}
.testi-slider .testi-card {
    padding: 2px 10px;
}
.testi-slider.slick-slider .slick-list{
    margin: 0 -10px;
}
.testi-card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #FCD7AD;
    padding: 20px 25px;
    border-radius: 20px;
}
.testi-card-inner .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;
    padding-bottom: 10px;
}
.testi-card-inner p{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card-inner .img-wrapper {
    max-width: 120px;
    width: 100%;
    padding-right: 15px;
}
.testi-card-inner h6 {
    padding-top: 10px;
}
.testi-card-inner .ratings span {
    padding-left: 10px;
}
/* footer start */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    background: var(--theme-color);
    color: var(--white);
}
.footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.footer-col {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 45px;
}
.footer-subscribe-col {
    max-width: 370px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 370px;
            flex: 0 0 370px;
    padding: 0;
}
.footer-widget h2 a {
    display: block;
    max-width: 72px;
}
.site-footer .footer-widget p {
    padding: 25px 0 20px;
}
.site-footer .footer-widget h4 {
    padding: 0 0 15px 0;
    font-family: var(--second-font);
}
.site-footer .footer-carrer span {
    margin: 15px;
}
.site-footer .footer-carrer ul {
    margin: 20px 0px;
}
.site-footer .footer-carrer ul li {
    font-family: var(--second-font);
    padding: 0 20px 0 0;
}
.site-footer .footer-link .footer-widget ul li:not(:last-of-type) {
    margin-bottom: 10px;
}
.site-footer .footer-col .footer-widget .social-ul {
    gap: 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.site-footer .footer-link .footer-widget .social-ul li:not(:last-of-type) {
    margin: 0;
}
.site-footer .footer-col .footer-widget .social-ul li a {
    background: var(--white);
    padding: 6px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: block;
}
.site-footer .footer-link-3 .footer-widget h4 {
    text-align: end;
}
.overlay-popup, .overlay-popup1 {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all ease-in-out 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    -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;
}
.overlay-popup.popup-show, .overlay-popup1.popup-show {
    opacity: 1;
    visibility: visible;
}
.popup-inner {
    border-radius: 0;
    max-width: 50%;
    width: 100%;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.popup-inner .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.close-popup {
    position: absolute;
    transition: 200ms ease-in;
    font-size: 30px;
    text-decoration: none;
    z-index: 1;
    top: -40px;
    right: 1px;
    width: 30px;
    height: 30px;
    font-weight: bold;
    background-color: var(--second-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;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 200ms ease-in;
    -moz-transition: 200ms ease-in;
    -ms-transition: 200ms ease-in;
    -o-transition: 200ms ease-in;
}
.close-popup svg {
    height: 15px;
    width: 15px;
}
.popup-inner .content iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
/* product page  */
.pdp-slider-sec .product-thumb-slider {
    max-width: 71px;
    padding-left: 15px;
    width: 100%;
}
.pdp-slider-sec .product-main-slider {
    position: relative;
    max-width: calc(100% - 71px);
    width: 100%;
    background-color: var(--white);
    border-radius: 15px;
}
.pdp-slider-sec .product-thumb-item {
    border: none !important;
    padding: 6.5px 0;
}
.pdp-slider-sec .product-thumb-item .thumb-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  cursor:pointer;
}
.pdp-slider-sec .product-item-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.pdp-slider-sec .product-main-slider .img-prew-icon {
    background: var(--theme-color);
    width: 30px;
    height: 30px;
    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;
    border-radius: 50%;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.pdp-slider-sec .product-item-img img,
.pdp-slider-sec .product-thumb-item .thumb-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: scale-down;
    border-radius: 12px;
    -o-object-position: center;
    object-position: center;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.pdp-slider-sec .product-thumb-item .thumb-img img{
  background-color: var(--white)
}
.pdp-slider-sec .pdp-right-inner .top-title {
    margin-bottom: 30px;
}
.pdp-slider-sec .pdp-right-inner .top-title .wishlist-num {
    border: 1px solid var(--white);
    padding: 0 6px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.pdp-slider-sec .pdp-right-inner .wishlist-btn svg {
    margin-left: 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.pdp-slider-sec .pdp-right-inner img {
    max-width: 90px;
    width: 100%;
    padding-right: 5px;
}
.pdp-slider-sec .select-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
}
.pdp-slider-sec .select-box label {
    padding-right: 10px;
}
.pdp-slider-sec .nice-select {
    max-width: 200px;
    background: url(selectbox-arrow.svg);
    background-position: 90% 50%;
    background-repeat: no-repeat;
}
.pdp-slider-sec .price ins {
    font-size: 22px;
}
.slider-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: var(--theme-color);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0 0 22px 0;
    padding: 20px 20px 20px 0;
    width: 100%;
}
.pdp-left-col {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
} 
.pdp-left-col:before {
    content: '';
    position: absolute;
    width: 50vw;
    left: -50vw;
    background: var(--theme-color);
    top: 0;
    height: 100%;
}
.pdp-right-col {
    background: var(--theme-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}  
.slider-wrapper:before {
    top: 0;
    height: 100%;
    z-index: -1;
} 
.pdp-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: 30px 30px 0;
    position: relative;
    border-radius: 22px 0 0 0;
    background: var(--second-color);
    width: 100%;
}
.pdp-right-inner  .section-title{
  margin-bottom: 15px;
}
.recent-slider{
  margin: 0 -10px;
}
.pdp-right-inner  .section-title h3{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.pdp-right-inner:after {
    background: var(--second-color);
    right: -50vw;
}
.pdp-slider-sec .slick-arrow.slick-next{
    right: auto;
    left: 50%;
    top: -50px;
    transform: scale(-1) rotate(90deg) translateX(-50%);
    -webkit-transform: scale(-1) rotate(90deg) translateX(-50%);
    -moz-transform: scale(-1) rotate(90deg) translateX(-50%);
    -ms-transform: scale(-1) rotate(90deg) translateX(-50%);
    -o-transform: scale(-1) rotate(90deg) translateX(-50%);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
}
.pdp-slider-sec .slick-arrow.slick-prev{
    right: auto;
    left: 50%;
    bottom: -50px;
    top: auto;
    transform: rotate(90deg) translateX(-50%);
    -webkit-transform: rotate(90deg) translateX(-50%);
    -moz-transform: rotate(90deg) translateX(-50%);
    -ms-transform: rotate(90deg) translateX(-50%);
    -o-transform: rotate(90deg) translateX(-50%);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
}
.description-sec .img-wrapper{
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.description-sec .img-wrapper img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
/************** Common banner section css *************/
.common-banner-section {
    padding: 70px 0;
    background: var(--theme-color);
    color: var(--white)
}
.common-banner-section h2{
    font-weight: 400;
    margin-top: 15px;
}
.common-banner-section h2 span{
    font-family: var(--second-font);
}
.common-banner-content .back-btn {
    margin-bottom: 26px;
}
.common-banner-content .back-btn svg path{
    fill: var(--white);
}
.back-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 500;
}
.back-btn span {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 100%;
    text-align: center;
    padding: 4px 0;
    margin-right: 10px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.common-banner-content .section-title h2 span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.common-banner-content .section-title {
    margin-bottom: 12px;
}
/********** SLICK SLIDE NOT FIRST NONE CSS ***********/
.home-main-slider:not(.slick-initialized) *:not(:first-child),
.card-slider-main:not(.slick-initialized) *:not(:first-child),
.pro-ring-main:not(.slick-initialized) *:not(:first-child),
.logo-slider-main:not(.slick-initialized) *:not(:first-child),
.main-blog:not(.slick-initialized) *:not(:first-child),
.product-main-slider:not(.slick-initialized) *:not(:first-child),
.desc-slider-main:not(.slick-initialized) *:not(:first-child),
.testi-main:not(.slick-initialized) *:not(:first-child){
   display: none !important;
}
/* ============================================= */
/* !!!!    PRODUCTS LIST  START  !!!! */
/* ============================================= */
.product-heading-row {
    border-bottom: 1px solid var(--theme-color);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.product-heading-column {
    padding: 14px 0 !important;
}
.product-heading-column .filter-title h4{
    font-family: var(--second-font);
}
.product-heading-right-column {
    padding: 14px 0 14px 22px !important;
    border-left: 1px solid var(--theme-color);
}
.filter-select-box {
    min-width: 160px;
}
.filter-title h4{
    font-weight: 600;
}
.product-heading-row .sort-lbl {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-right: 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: 0 0 10px 0;
}
.product-cat-widget .acnav-list {
    padding: 0 0 10px 10px;
}
.product-widget .acnav-label {
    display: block;
    position: relative;
    font-weight: 600;
}
.product-widget>.pro-itm>.acnav-label {
    font-weight: 600;
    padding: 12px 0;
    text-transform: uppercase;
}
.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 10px 10px;
}
.product-widget .acnav-label:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 2px;
    width: 10px;
    background: var(--white);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
}
.product-widget .acnav-label:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 10px;
    width: 2px;
    background: var(--white);
    transition: ease-in-out all 0.5s;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -webkit-transition: ease-in-out all 0.5s;
    -moz-transition: ease-in-out all 0.5s;
    -ms-transition: ease-in-out all 0.5s;
    -o-transition: ease-in-out all 0.5s;
}
.product-widget .is-open>.acnav-label:after {
    opacity: 0;
}
.product-widget {
    padding: 10px 10px 10px 0;
}
.product-widget:not(:last-of-type){
    border-bottom: 1px solid var(--theme-color);
}
.product-filter-right-column {
    border-left: 1px solid var(--theme-color);
    padding-left: 22px !important;
  padding-top: 22px !important;
}
.product-filter-right-column .product-card .btn{
    padding: 12px 14px;
}
#range-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 23px;
}
.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(--theme-color) !important;
}
.ui-widget-content {
    background: #dddddd !important;
    border: none !important;
    border-radius: 0 !important;
    height: 1px !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 {
    display: block;
    position: absolute;
    font-weight: normal;
    height: 15px !important;
    width: 15px !important;
    top: -7px !important;
    margin-left: 0 !important;
    background: var(--white);
    -webkit-box-shadow: inset 0 0 0 2px #fff;
            box-shadow: inset 0 0 0 2px #fff;
    border: 3px solid var(--theme-color) !important;
    border-radius: 10px;
    z-index: 1;
}
.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-range {
    position: absolute;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background-color: var(--theme-color);
    height: 3px !important;
    top: -1px !important;
}
.price-range-slider .range-bar .ui-slider-handle {
    border-radius: 25px;
    background: #fff;
    border: 2px solid var(--black);
    height: 20px;
    width: 20px;
    top: -9px;
    cursor: pointer;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.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: 10px 0 0;
}
.delete-all svg {
    height: 12px;
    margin-right: 5px;
    width: 12px;
}
.product-tag-widget ul li {
    margin: 6px;
    border-radius: 25px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    overflow: hidden;
    display: inline-block;
}
.product-tag-widget ul li span {
    text-align: center;
    padding: 4px 20px;
    display: block;
}
.product-tag-widget ul li span {
    text-align: center;
    padding: 4px 20px;
    display: block;
}
.product-tag-widget ul li input:checked+span {
    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;
}
.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: 0 20px 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;
}
.color,
.custom-checkbox input[type="checkbox"]+span.color {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    background-size: contain;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -o-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
}
.custom-checkbox input[type="checkbox"]:checked+span.color {
    border: 2px solid var(--theme-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(--theme-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;
}
.product-widget .acnav-list .colors-checkbox {
    margin-top: 8px;
}
.product-filter-right-column .row {
    margin: 0 -10px;
}
.product-filter-right-column .product-col {
    padding: 0 10px 20px;
}
.product-filter-right-column .product-content-bottom .price {
    width: 100%;
    margin-bottom: 10px;
}
.product-filter-right-column .addtocart-btn svg {
    fill: var(--theme-color);
}
.card-slider-sec.product-list-card{
    padding: 0;
}
.product-filter-right-column .product-card {
    padding: 0 10px 20px;
}
/* ============================================= */
/* !!!!             CART PAGE CSS                !!!! */
/* ============================================= */
.cart-page-section {
    padding-top: 40px;
}
.cart-page-section .section-title {
    margin-bottom: 50px;
}
.cart-page-section .section-title h2 {
    margin-top: 20px;
}
.cart-page-section .section-title h2 span {
    font-size: 18px;
}
.product-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    margin-top: 10px;
}
.product-option dt {
    font-weight: 500;
}
.product-option dd {
    font-weight: 400;
}
.remove-btn svg path {
    fill: red;
}
.cart-summery {
    border: 1px solid var(--border-color);
    padding: 20px;
}
.cart-summery 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;
    margin-bottom: 12px;
}
.cart-summery ul li span:last-child {
    font-weight: 600;
}
.cart-summery .btn {
    padding: 15px 10px;
    display: block;
    width: 100%;
    margin-top: 20px;
    text-transform: capitalize;
}
/****  TABLE CSS ****/
table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
}
table tr {
    padding: 20px 0 0;
    border-bottom: 1px solid rgba(237, 237, 237, 0.15);
    display: block;
}
table tr:first-child {
    border-top: 1px solid rgba(237, 237, 237, 0.15);
}
table tr th,
table tr td {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
table tr th {
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(237, 237, 237, 0.15);
    font-weight: 700;
    text-transform: uppercase;
}
table tr th:first-child,
table tr td:first-child {
    padding-left: 0;
}
table tr td:first-child a {
    vertical-align: middle;
}
.order-historycontent table tr td:first-child a ,
.order-confirmation-body table tr td:first-child a {
    background-color: var(--theme-color);
  border-radius:10px;
  overflow:hidden;
}
table tr td {
    display: block;
    text-align: center;
    padding: 0 0 20px;
}
@media (min-width: 992px) {
    .cart-tble tr th:first-child,
    .cart-tble tr td:first-child {
        width: 90px;
    }
    .cart-tble tr th:nth-child(2),
    .cart-tble tr td:nth-child(2) {
        width: 253px;
    }
    .cart-tble tr th:nth-child(4),
    .cart-tble tr td:nth-child(4) {
        width: 116px;
        padding-right: 9px;
    }
}
@media (max-width: 767px) {
    table tr td::before {
        content: attr(data-label);
        display: block;
        text-align: center;
        padding-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
    }
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        display: none;
    }
    table .qty-spinner {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 auto;
    }
    .remove-btn {
        height: 14px;
        width: 14px;
    }
}
@media (min-width: 768px) {
    table tr:first-child {
        border-top: none;
    }
    table tr {
        padding: 0;
        display: table-row;
    }
    table tr td {
        padding: 20px 10px 20px;
        display: table-cell;
        text-align: left;
        vertical-align: middle;
    }
    table tr th:last-child,
    table tr td:last-child {
        text-align: right;
        padding-right: 0;
    }
    table tr th:nth-child(5),
    table tr td:nth-child(5) {
        text-align: right;
    }
}
.cart #MainContent{
  padding-bottom: 80px;
}
/* ============================================= */
/* !!!!            CHECKOUT PAGE CSS        !!!! */
/* ============================================= */
.set .acnav-label:after {
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    background-image: url('white-bottom-arrow.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50% 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    -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;
}
.set.is-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);
}
.btn-flex {
    margin-top: 20px;
}
.btn-flex a:not(:last-of-type) {
    margin-right: 14px;
}
.jdgm-write-rev-link.jdgm-write-rev-link{
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}
.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(--second-color);
}
.mini-cart-item:not(:last-of-type) {
    margin-bottom: 30px;
}
.mini-cart-image {
    width: 80px;
    background: var(--white);
    border: 1px solid #ddd;
  border-radius:10px;
  overflow:hidden;
}
.mini-cart-image a {
    display: block;
    padding-top: 150%;
    position: relative;
}
.mini-cart-image img {
    top: 0;
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}
.mini-cart-title {
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}
.mini-cart-title a {
    color: inherit;
}
.cart-variable {
    margin-bottom: 10px;
}
.mini-cart-footer {
    border-top: 1px solid var(--border-color);
}
.mini-cart-footer-total-row div {
    padding: 0 10px;
}
.mini-cart-footer .u-save {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--theme-color);
    margin-bottom: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.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;
}
.mini-cart-footer .link-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.remove_item svg path {
    fill: #d17979;
}
.remove_item svg {
    height: 15px;
    width: 15px;
}
.cartDrawer .emptyCart {
    padding: 50px 0 0 0;
}
 .mini-cart-image span {
    background: var(--second-color);
    border: 1px solid var(--white);
    height: 20px;
    width: 20px;
    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: 20px;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: -10px;
    right: -10px;
}
.btn-flex {
    margin-top: 20px;
}
/* ============================================= */
/* !!!!        ORDER SUMMERY PAGE CSS        !!!! */
/* ============================================= */
.backbtn .btn-secondary svg {
    transform: scale(-1);
    margin-right: 12px;
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
}
.backbtn .btn-secondary {
    min-width: 190px;
    margin-top: 25px;
    background: var(--theme-color);
    color: var(--white);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.backbtn .btn-secondary svg path {
    fill: var(--white);
}
.backbtn .btn-secondary:hover{
    background: transparent;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
}
.backbtn .btn-secondary:hover svg path{
    fill: var(--theme-color);
}
.qv-pro-slider-img img{
  width: 100%;
}
/* ============================================= */
/* !!!!        LOGIN / REGISTER PAGE CSS        !!!! */
/* ============================================= */
.register-page{
  padding-bottom: 80px;
}
/* login*/
.login-form .submit-btn {
    max-width: 170px;
    margin: 0 0 0 15px;
    ;
}
.login-form .form-footer {
    padding: 0;
}
.forgot-pass {
    color: red;
    text-decoration: underline;
    font-size: 14px;
}
.login-form p {
    margin-bottom: 15px;
}
.register-btn {
    background: transparent;
}
.reg-lbl {
    font-size: 14px;
    margin-right: 10px;
}
.login-form .form-heading h4 {
    margin-bottom: 0;
    font-weight: 600;
}
/* register  */
.register-page .section-title h2{
    font-weight: 400;
}
.back-toshop {
    margin-bottom: 10px;
}
.register-page .back-toshop {
    margin-bottom: 30px;
}
.form-wrapper h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}
.form-wrapper .form-heading h4 {
    margin-bottom: 0;
    font-family: var(--second-font);
}
.form-wrapper h4 b {
    font-style: normal;
    font-weight: 600;
}
.form-wrapper form {
    border: 1px solid var(--border-color);
}
.form-container {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.form-footer {
    padding-top: 30px;
}
.form-container:last-child {
    border-bottom: 0;
}

/* ============================================= */
/* !!!!       MY ACCOUNT PAGE CSS        !!!! */
/* ============================================= */
.my-acc-body{
    overflow: unset;
}
.my-acc-rightbar h2 {
    font-weight: 400;
    font:var(--h3)
}
.my-acc-leftbar h5{
    padding: 15px 15px 10px;
}
.my-acc-leftbar {
    border: 1px solid var(--border-color);
}
.my-acc-leftbar li:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color);
}
.account-list a svg path{
    fill: var(--theme-color);
}
.account-list li a {
    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;
    padding: 15px;
    opacity: 0.7;
}
.account-list li a svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 10px;
}
.account-list li a span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.account-list li a span b {
    display: block;
}
.my-acc-leftbar li a:hover,
.my-acc-leftbar li.active a {
    opacity: 1;
}
.my-acc-leftbar li a svg path {
    fill: var(--theme-color);
}
.my-acc-leftbar h4 {
    padding: 15px 15px 10px;
}
.my-acc-head {
    margin-bottom: 50px;
}
.my-acc-rightbar .account-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.my-acc-rightbar .account-list li a {
    border: 1px solid var(--theme-color);
    width: 100%;
}
.my-acc-rightbar .account-list li.active a svg path,
.my-acc-rightbar .account-list li a:hover svg path {
    fill: var(--white);
}
.my-acc-rightbar .account-list li.active a,
.my-acc-rightbar .account-list li a:hover {
    opacity: 1;
    color: var(--white);
    background: var(--theme-color);
}
.account-list li.logout-link a svg path {
    fill: red;
}
.account-list li.logout-link a {
    opacity: 1;
    color: red;
}
.my-acc-right-content {
    padding-bottom: 50px;
}
#scroll {
    position: sticky;
    top: 130px;
    left: 0;
    z-index: 1;
}
.acc-back-btn-wrp button svg {
    width: 16px;
}
.acc-back-btn-wrp .back-btn-acc svg {
    margin-left: 0;
}
.acc-back-btn-wrp button {
    text-transform: capitalize;
    font-size: 14px;
}
.acc-back-btn-wrp{
  gap: 15px;
}
.back-btn-acc svg {
    transform: scale(-1);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    margin: 0 10px 0 0;
}

.quick-active.cartOpen .overlay:after {
    z-index: 5;
}
.product .jdgm-write-rev-link.jdgm-write-rev-link,
.product .jdgm-widget:not(.jdgm-review-widget--small) .jdgm-form__fieldset-actions .jdgm-cancel-rev,
.product .jdgm-widget .jdgm-btn.jdgm-btn{
  border-radius:60px !important;
}
 .product .jdgm-form-wrapper .jdgm-form,
 .product .jdgm-form-wrapper .jdgm-form input,
 .product .jdgm-review-widget .jdgm-form textarea{
   border-radius:10px !important;
 }
/* ============================================= */
/* !!!!       ABOUT US PAGE CSS        !!!! */
/* ============================================= */
.about-us-page h2,
.aboutpage-btm-sec h2,
.about-our-shop-section h2,
.about-our-shop-section h3{
    font-weight: 400;
    color: var(--theme-color);
}
.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.about-our-shop-section .row {
    margin-top: 50px;
}
.abt-shp-column-right img {
    width: 100%;
}
.aboutpage-btm-sec {
    background: var(--second-color);
}
.about-us-section .about-us-box svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    position: absolute;
    top: 15px;
    right: 15px;
}
.aboutpage-btm-sec .about-us-box {
    padding: 25px 18px;
    border: 1px solid var(--theme-color);
    position: relative;
}
.aboutpage-btm-sec .about-us-box p{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aboutpage-btm-sec .about-us-box svg {
    fill: var(--theme-color);
}
.about-us-section .about-us-box h4 {
    margin-bottom: 15px;
    color: var(--theme-color);
    font-weight: 400;
}
.aboutpage-btm-sec .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.aboutpage-btm-sec .section-title p {
    margin-top: 24px;
}
.about-us-box svg path{
    fill: var(--white);
}
/* ============================================= */
/* !!!!       CONTACT PAGE CSS        !!!! */
/* ============================================= */
.contact-right-column {
    margin-top: -270px;
}
.contact-right-inner h2 {
   font-weight: 400;
}
.contact-form {
    padding: 24px 20px;
    border: 2px solid var(--theme-color);
    background: var(--second-color);
}
.submit-btn {
    width: 100%;
    padding: 10.5px 10px;
    text-transform: capitalize;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.contact-left-inner {
    color: var(--white);
}
.contact-right-inner{
    position: relative;
    z-index: 1;
}
.contact-left-inner ul li {
    margin-bottom: 30px;
}
.contact-left-inner ul li h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: var(--second-font);
}
.contact-left-inner ul li p {
    margin-bottom: 0;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 500;
    word-break: break-all;
}
.contact-left-inner ul li .address {
    font-size: 15px;
    line-height: 26px;
}
/* ============================================= */
/* !!!!        CMS PAGES CSS        !!!! */
/* ============================================= */
.cms-page p:not(:last-of-type) {
    margin-bottom: 25px;
}
.cms-page h2,
.cms-page h3,
.cms-page h4,
.cms-page h5 {
    margin: 20px 0;
    font-weight: 400;
}
.cms-page p a {
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
}
.cms-page ul {
    margin: 20px;
}
.cms-page ul li {
    list-style: disc;
}
.cms-page ul li:not(:last-of-type) {
    margin-bottom: 9px;
}
/* ============================================= */
/* !!!!        FAQS PAGES CSS        !!!! */
/* ============================================= */
.faq-page h2{
    font-weight: 400;
}
.faq-page{
  padding-bottom: 50px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper input {
    background: var(--theme-color);
    border-radius: 50px;
    color: var(--white);
    padding: 18.5px 60px 18.5px 20px;
    font-size: 14px;
}
.faq-search-form {
    max-width: 400px;
    margin: 25px 0;
}
.faq-search-form input{
    border: 1px solid var(--white);
}
.input-wrapper .btn-subscibe {
    position: absolute;
    top: 28px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 5px;
    height: 45px;
    width: 45px;
    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: 50px;
    border: 0;
    padding: 0;
    background-color: var(--white);
}
.input-wrapper .btn-subscibe svg path{
    fill: var(--black);
}
.set {
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.set .acnav-label {
     padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.set .acnav-list {
    padding: 15px;
    border-top: 1px solid var(--border-color);
}
.set .acnav-list p {
    font-size: 14px;
}
/* ============================================= */
/* !!!!        BLOG PAGES CSS        !!!! */
/* ============================================= */
.blog-page-banner{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.blog-page-banner .section-title {
    margin-bottom: 30px;
    color: var(--white);
    max-width: 450px;
}
.blog-cat {
    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-bottom: 20px;
}
.blog-cat li:not(:last-of-type) {
    margin-right: 10px;
}
.blog-cat li a {
    padding: 5px 20px;
    color: var(--white);
    background: transparent;
    border-radius: 50px;
}
.blog-card-top {
    height: 100%;
}
.blog-cat li.active a,
.blog-cat li a:hover {
    background: var(--white);
    color: var(--theme-color);
}
.blog-grid-section .blog-card {
    padding: 0;
}
.blog-grid-section .blog-card .btn{
    font-size: 12px;
    padding: 12px 14px;
} 
.blog-grid .blog-widget-inner {
    border-color: var(--theme-color);
}
.blog-grid .blog-caption {
    border-top: 1px solid var(--theme-color);
}
.blog-grid .blog-btn {
    background: var(--theme-color);
}
.blog-grid .blog-btn svg {
    fill: var(--white);
}
.blog-grid .blog-widget {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog-head-row {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.blog-col-left ul li a {
    padding: 10px 15px;
    font-size: 14px;
    display: block;
    position: relative;
    opacity: 0.5;
    font-weight: 600;
}
.blog-col-left ul li a:before {
    content: '';
    height: 2px;
    width: 100%;
    bottom: -1px;
    background: var(--theme-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;
}
.blog-col-left ul li a:hover:before,
.blog-col-left ul li.active a:before {
    opacity: 1;
}
.blog-col-left ul li a:hover,
.blog-col-left ul li.active a {
    opacity: 1;
}
.blog-col-right .select-lbl {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
}
.blog-col-left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.blog-col-right .nice-select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: none;
}
.blog-col-right .nice-select:after {
    right: 0;
}
.blog-grid-section .section-title h2 b {
    font-style: normal;
}
/* ============================================= */
/* !!!!         ARTICLE PAGES CSS        !!!! */
/* ============================================= */
.article-banner .common-banner-content .back-btn {
    margin: 0 auto 26px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.article-banner .blog-cat {
    margin: 40px 0;
}
.post-lbl {
    margin-left: 50px;
}
.article-card-footer {
    margin-top: 10px;
}
.article-section .abt-user-img {
    border-color: var(--theme-color);
}
.about-user h6{
    font-family: var(--second-font);
}
.about-user h6 span {
    display: block;
    font-weight: 700;
}
.abt-user-img {
    border: 1px solid var(--white);
    border-radius: 72.2951px;
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 15px;
}
.abt-user-img img {
    width: 100%;
    height: 100%;
}
.article-section .section-title h2 {
    font-weight: 300;
    max-width: 520px;
    margin: 30px 0 0;
}
.aticleleftbar h5 {
    margin: 20px 0;
}
.aticleleftbar p {
    margin-bottom: 25px;
}
.aticleleftbar img {
    margin-bottom: 15px;
    width: 100%;
}
.art-auther {
    margin-bottom: 50px;
    font-size: 14px;
}
.quote-box {
    position: relative;
    padding: 40px 0 40px 60px;
}
.quote-box svg {
    position: absolute;
    left: 0;
}
.article-socials li a {
    height: 28px;
    width: 28px;
    background: var(--theme-color);
    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: 100%;
}
.article-socials li a svg {
    fill: var(--white);
    height: 12px;
    width: 12px;
}
.article-socials li:not(:last-of-type) {
    margin-right: 10px;
}
.article-socials li span {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
}
.latest-article-slider {
    margin: 0 -10px;
}
.latest-article-slider .blog-widget {
    padding: 0 10px;
}
.blog-media {
    position: relative;
}
.blog-widget-inner .blog-media .blog-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 35px;
    width: 35px;
    background: var(--theme-color);
    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;
    padding: 0;
    z-index: 1;
}
.latest-article-slider-section .section-title h2 b {
    font-style: normal;
}
.latest-article-slider-section .section-title {
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    margin-bottom: 40px;
}
.latest-article-slider-section .slick-arrow {
    opacity: 0;
}
.latest-article-slider-section .slick-slider:hover .slick-arrow {
    opacity: 1;
}
.latest-article-slider-section {
    padding-bottom: 50px;
}
.article-line {
    max-width: 1200px;
    margin: auto;
    opacity: 0.4;
    border: 1px solid #DFDFDF;
}
.color-varient .product-labl {
  width:100%;
  margin:0 0 7px;
}
.color-varient label.color-swatch.varcolor.var-image {
    width: 50px;
    height: 50px;
    margin: 0;
    background-size: contain;
  display:block;
}
.color-varient label.color-swatch.varcolor {
  width:25px;
  height:25px;
  display:block;
}
/* ============================================= */
/* !!!!          Shopify CSS Start          !!!! */
/* ============================================= */
.active-facets__button-wrapper a:hover {
    border: 1px solid var(--theme-color);
}
.product-widget.disclosure-has-popup[open] .acnav-label:after {
    opacity: 0;
}
.blog-post__full-image img {
    width: 100%;
}
#MainContent {
    overflow: hidden;
}
.template-cart .section-title h2 {
    margin-top: 15px;
}

.radio-btn:not(:last-child) {
    margin-right: 8px;
}
.radio-btn input.radio:empty~label {
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid var(--white);
    border-radius: 6px;
}
.radio-btn input.radio:checked~label {
    background: var(--white);
  border-width:2px;
  color:var(--black)
}

.radio-btn {
    margin-top: 7px;
}
.color-varient .radio-buttons:not(:first-of-type){
  margin: 15px 0 0 ;
}
.color-varient {
  margin: 0 0 20px;
}
.quickview_popup_data .qty-spinner input {
  padding:0;
}
#AddAddress .select select option,
.add-default select option{
    color: var(--black);
}
#address_form_new select,
.add-default select
{
    background: url(white-bottom-arrow.png);
    background-repeat: no-repeat;
    background-position: 98% 50%;
    background-size: 13px;
}
.add-default .btn{
  margin-right: 15px;
}
.grecaptcha-badge{
  z-index:4;
}
.mini-cart-details a {
    padding: 0!important;
}
.art-shopify .card-inner{
  border: 1px solid var(--theme-color);
}
.recover-password  .btn-secondary {
    margin-right: 5px;
}
.form-row {
    position: relative;
}
.form-row .btn-svg {
    background: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 0;
    height: 35px;
    width: 35px;
  background: 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;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  border-radius:8px;
}
.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;
}
/*===========================feature CSS start=======================*/
/* currency */
.currency select {
    color: var(--white);
    border: none;
    padding: 2px;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    cursor: pointer;
}
.currency select option {
    color: #000;
}
/*==== cart popup custom css ======  */
.site-header .menu-right .apply-coupan-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
}
.coupan-txt svg {
  width: 22px;
  height: 22px;
}
.site-header .menu-right .coupan-txt svg {
  margin: 0;
}
.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: var(--theme-color);
  color: var(--white);
  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;
  gap: 8px;
}
.coupan_code input {
  height: 45px;
  width: 100%;
  border-color: var(--border-color);
  padding: 14px 105px 14px 15px;
  border-radius: 20px;
    color: var(--black);
}
.coupan_code input::-webkit-input-placeholder{
    color: var(--black);
}
.coupan_code input::-moz-placeholder{
    color: var(--black);
}
.coupan_code input:-ms-input-placeholder{
    color: var(--black);
}
.coupan_code input::-ms-input-placeholder{
    color: var(--black);
}
.coupan_code input::placeholder{
    color: var(--black);
}
/*======= product notify btn custom css =======*/
.notify-sold .notify-btn {
  padding: 12px 35px;
  width: 100%;
  border: 1px solid var(--theme-color);
  background:var(--theme-color);
  color:var(--white);
  border-radius: 50px;
  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:transparent;
  color: var(--white);
  border-color: var(--theme-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(--theme-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;
  border-radius:10px;
}
.out-of-stock-form.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%) scale(1);
      -ms-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.notify-txt {
  line-height: 1.2;
  color: var(--white);
}
.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;
  border-radius:5px;
}
.notify-send-btn {
  position: relative;
  margin-top: 20px;
}
.notify-send-btn input {
  height: 45px;
  width: 100%;
  padding: 15px 106px 15px 15px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.notify-send-btn input::-webkit-input-placeholder {
  color: var(white);
}
.notify-send-btn input::-moz-placeholder {
  color: var(white);
}
.notify-send-btn input:-ms-input-placeholder {
  color: var(white);
}
.notify-send-btn input::-ms-input-placeholder {
  color: var(white);
}
.notify-send-btn input::placeholder {
  color: var(white);
}
.notify-send-btn input::-webkit-input-placeholder {
  color: var(--white);
}
.notify-send-btn input::-ms-input-placeholder {
  color: var(--white);
}
.notify-send-btn button {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: auto;
  padding: 10px 35px;
  border: 0px;
  background: var(--black);
  color: var(--white);
  border-radius:0 10px 10px 0;
}
/* ========quick-view===== */
.quickview-popup{
  display: none; 
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--theme-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: hidden;
  border-radius:10px;
}
.quickview_popup_data{
   padding: 30px 0px 15px;
  max-height:90vh;
  overflow-y:auto;
}
.quickview-popup .quickview_popup_data::-webkit-scrollbar {
    width: 6px;
}

.quickview-popup .quickview_popup_data::-webkit-scrollbar-track {
    background: var(--second-color);
}
.quickview-popup .quickview_popup_data::-webkit-scrollbar-thumb {
    background-color: var(--white);
}
.quickview_popup_data .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.quickview_popup_data .slick-arrow {
  opacity:1;
  visibility:visible;
}
.quickview_popup_data .product-page-first-section{
  background: none;
}
.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;
    z-index: 3;
}
.quickview-close svg{
  fill: var(--white);
  cursor: pointer;
}
.quickview_popup_data .pdp-right-column .section-title{
  max-width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
.quickview_popup_data .pdp-right-column .section-title h3{
  margin-bottom: 15px;
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.quickview_popup_data .pdp-right-column .section-title p{
      display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.quickview_popup_data .pdp-right-column{
    text-align: left;
    width: auto;
}
.quickview_popup_data .pdp-right-column 
.quickview_popup_data .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.qv-price{
  margin-top:15px;
}
.qv_select__select {
    margin-top: 10px;
    border: solid 1px var(--white);
    color: var(--white);
    border-radius: 50px;
    width: 70%;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(1.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
  background-position: calc(100% - 15px) 50%;
}
.qv_select__select option{
  color: var(--black);
}
.quickview_popup_data select:focus {
    margin-top: 10px;
}
.quickview_popup_data .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: 15px;
}
.quickview_popup_data .pdp-right-column .qty-spinner button, .qty-spinner input {
    width: 100%;
    max-width: 100px;
}
.quickview_popup_data .qty-spinner {
    border: 1px solid var(--white);
    height: 37px;
    border-radius: 50px;
}
.qv-price ins{
  font-size: 22px;
    font-weight: 600;
  line-height:1;
}
.quickview_popup_data .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;
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.quickview_popup_data product-form.product-form form .btn{
    width: 100%;
    border-radius: 50px;
}

.quickview_popup_data .pdp-top-content .wish-btn.add-wishlist {
    border-radius: 50%;
    background-color: var(--white);
    width: 34px;
    height: 34px;
    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;
    margin-left: auto;
}
.quickview_popup_data .pdp-top-content .wish-btn.add-wishlist svg path{
  fill: var(--theme-color);
}
.product-card .wish-lbl-wrp svg path{
  fill: var(--theme-color);
}
.product-card .wish-lbl-wrp {
    position: absolute;
    top: 10px;
    right: 10px;
    gap: 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: 10px;
    z-index: 1;
}
.product-card .pro-wishlist, .pro-compare, .quickview-btn {
    background: transparent;
    padding: 7.5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
  border: 1px solid var(--theme-color);
}
.pro-wishlist svg, .pro-compare svg, .quickview-btn svg {
    margin: auto;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.quickview_popup_data .section-title h2{
  margin-bottom:15px;
}
.quickview_popup_data .btn{
  background-color:var(--white);
  color:var(--black);
}
.quickview_popup_data .btn svg path{
  fill:var(--black);
}
/* =========compare and wishlist======== */
.compare-prod-remove svg, .wishlist-prod-remove svg {
    margin: 0 auto;
    cursor: pointer;
}
.pro-compare.active svg path,.pro-wishlist.active svg path {
    fill: var(--white);
}
.pro-compare.active,.pro-wishlist.active{
   background: var(--theme-color);
}
.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;
  border-radius:10px;
  overflow:hidden;
}
.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);
  color: var(--black);
  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;
}
.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;
    background: var(--theme-color);
  border-radius:10px;
  overflow:hidden;
}
.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;
}
.product-card-inner .wish-lbl-wrp{
  visibility:hidden;
  opacity:0;
  -webkit-transition:0.5s ease-in-out;
  -o-transition:0.5s ease-in-out;
  transition:0.5s ease-in-out;
}
.product-card-inner:hover .wish-lbl-wrp{
  visibility:visible;
  opacity:1;
}
/*===========================feature-CSS end=======================*/
/*------------------- SHF countdown ---------------------------*/
.flip-countdown.simple-countdown {
    background: var(--theme-color);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 5px;
    gap: 10px;
    visibility:visible;
    opacity:1;
    -webkit-transition:0.5s ease-in-out;
    -o-transition:0.5s ease-in-out;
    transition:0.5s ease-in-out;
}
.product-card-inner:hover .flip-countdown.simple-countdown{
  visibility:hidden;
  opacity:0;
}
.flip-countdown.simple-countdown svg {
    width: 18px;
    height: 18px;
}
.countdown-container.flip-countdown.countdown-block span {
    margin: 0 5px 0 0;
    color: var(--white);
}
.countdown-container.flip-countdown.countdown-block span.dots {
    margin: 0;
}
.pdp-timer .flip-countdown.simple-countdown {
  position: static;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 280px;
}
.pdp-timer .countdown-container.flip-countdown.countdown-block span{
  display: inline-block;
}
.bestpro-itm .countdown-container.flip-countdown.countdown-block span {
    font-size: 13px;
    margin: 0 3px 0 0;
}
.bestpro-itm .flip-countdown.simple-countdown svg {
    display: none;
}
/***** 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;
}
.lang-dropdown svg {
    width: 20px;
    height: 20px;
}
.lang-dropdown svg path {
    fill: var(--theme-color);
}
.lang-dropdown .nice-select {
  font-size: 14px;
  font-weight: 400;
  background: none;
  background-color: var(--white);
}
 .disclosure__list-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  margin: 5px 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);
   border-radius:10px;
   overflow:hidden;
   -webkit-box-shadow:0 0 0 1px #4444441c;
           box-shadow:0 0 0 1px #4444441c;
}
 .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);
}
 .disclosure__list-wrapper .disclosure__item {
  margin: 0;
   padding:0 !important;
  display: block;
  background: none;
    line-height: 1;
}
 .disclosure__list-wrapper .disclosure__item a{
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px 15px;
  color: var(--black) !important;
  width: 100%;
   -webkit-box-pack:start !important;
       -ms-flex-pack:start !important;
           justify-content:start !important; 
}

 .disclosure__list-wrapper .disclosure__item a.disclosure__link--active{
  font-weight: bold;
}
.languages .nice-select,
 .currency .nice-select-arrow,
 .currency .nice-select li,
 .languages .disclosure__list-wrapper ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
   color:var(--black);
}
 .currency .nice-select {
   background-color:var(--white);
 }
/***** SHF - SIZE POPUP *****/
.size-popup{
    position: fixed;
    background: rgba(20, 23, 8, 0.88);
    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: 5;
    padding: 0 30px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.5s;
    opacity: 0;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.product .jdgm-form-wrapper{
  padding-bottom:0 !important;
} 
.size-popup.active{
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.size-popup{
    display: table;
}
.size-close-btn{
    text-align: end;
}
.size-close-btn svg{
    margin-left: 0px;
    margin-right: 5px;
}
.size-popup table tr td{
    padding: 10px;
}
.size-table-wrapper{
    margin-top: 200px;
}
.size-popup .size-form{
  background-color: var(--white);
  color: var(--black);
  border-radius: 10PX;
  -webkit-border-radius: 10PX;
  -moz-border-radius: 10PX;
  -ms-border-radius: 10PX;
  -o-border-radius: 10PX;
  overflow:hidden;
}
.size-popup .size-form-inner{
      padding: 20PX;
    max-height: 80vh;
    overflow-y: auto;
}
.size-popup .size-form::-webkit-scrollbar {
    width: 6px;
}
.size-popup .size-form::-webkit-scrollbar-track {
    background: var(--second-color);
}
.size-popup .size-form::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
}
.size-popup .size-form H4{
  text-align:center;
    margin-bottom: 20px;
}
.size-popup .btn-white{
    border-radius: 10px;
    margin-bottom: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.size-btn{
  gap: 10px;
}
.see-size .size-btn svg, .size-share-wrap .share-button__button svg {
    width: 16px;
    height: 16px;
}
.see-size .size-btn svg path, .size-share-wrap .share-button__button svg path {
    fill: var(--white);
}
.see-size, .size-share-wrap .share-button__button {
    margin: 0 0 15px;
}
.size-share-wrap{
  gap: 40px;
}
.size-share-wrap .share-button__button{
  gap: 5px;
}
/* ======comment========== */
.comment-item-wrapper .comment-item {
    border: 1px solid var(--theme-color);
    padding: 20px;
  border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.comment-item-wrapper .comment-item .comment-item-inner {
    gap: 20px;
}
.comment-item-wrapper .comment-item .comment-item-image {
    width: 54px;
    height: 54px;
    border: 1px solid #dddddd;
    padding: 5px;
    border-radius: 50%;
}
.comment-item-wrapper .comment-item .comment-item-image svg {
    width: 100%;
    height: 100%;
}
.comment-item-wrapper .comment-item .comment-item-image svg path {
    fill: #dddddd;
}
.comment-item-wrapper .comment-item .comment-item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.comment-item-content .comment-top-content {
    margin-bottom: 15px;
}
.comment-item-content .comment-top-content h6 {
    font-family: var(--first-font);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 8px;
}
.comment-item-wrapper .comment-item:not(:last-of-type) {
    margin: 0 0 15px;
}
.comments.comment-item-wrapper {
    margin: 30px 0;
}
/*=================shf - recommendations ================*/
.product-notification{
  background: var(--theme-color);
  -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;
  width: 350px;
  position: fixed;
  bottom: 10px;
  left: 30px;
  padding: 10px;
  z-index: 3;
  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;
  color: var(--white);
  border-radius:10px;
}
.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-suggest .product-image img{
  border-radius: 5px;
}
.product-notification .product-suggest .product-label {
   margin: 0 0 5px;
  position: static;
}
.product-notification .product-suggest .product-name {
    font: var(--h5);
    margin: 0 0 10px;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
/*--------------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 h4 a {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
#recently-viewed-products .product h4{
  margin: 0 0 15px;
}
#recently-viewed-products .product .price ins{
  font-size: 20px;
}
.view-product-sec h3 {
    text-align: center;
    margin: 0 0 25px;
    color: var(--white);
}
/* ------cart css------ */
.cartDrawer.is-empty .cart__warnings{
  margin: 0;
  text-align: center;
  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;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.webi-mini-cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--black);
}
.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;
}
.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;
    width: auto;
    color: var(--black);
    background: transparent;
    border: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    text-decoration: none;
}
.webi-mini-cart-footer .link-btn svg{
     fill: var(--black);
}
.cart__footer .cart__note {
    float: left;
    width: 100%;
    margin: 0 0 20px;
}
.cart__footer .cart__note label {
    float: left;
    width: 100%;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.cart__ctas{
    margin-top: 10px;
}
.cart__warnings {
    display: none;
    text-align: center;
}
.cart__login-title {
    margin: 15px 0 10px;
}
.cart__login-paragraph a {
    font-weight: 700;
}
.carthead {
    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;
    margin: 30px 0 26px;
    float: left;
    padding: 0 15px;
    width: 100%;
}
.carthead a.underlined-link {
  text-decoration: underline;
  color: var(--primary-color);
  font-size: 20px;
}
.is-empty .cart__empty-text, .is-empty .cart__warnings {
  display: block;
  float: left;
  width: 100%;
  margin: 0 0 50px;
}
.is-empty .cart__empty-text {
    margin: 20px 0 ;
    color:var(--black);
}
.cart__warnings .btn svg{
  margin: 0 8px 0 0 ;
}
.cart__warnings {
  display: none;
  text-align: center;
}
h3.cart__login-title {
    margin: 15px 0;
}
.cart-item__quantity-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#cart-errors{
  margin-top: 10px;
}
.cart-item__quantity-wrapper quantity-input {
    border: 1px solid var(--border-color);
    position: relative;
    width: 120px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.cart-item__quantity-wrapper .quantity__input, .cart-item__quantity-wrapper .quantity__button {
    width: 40px;
    border: none;
    background: none;
    padding: 0;
}
.quantity__button svg {
    width: 1rem;
    pointer-events: none;
}
.cart-item__details {
    float: none;
    display: inline-block;
}
.cart-item__details .cart-item__vendor {
    font-size: 12px;
    line-height: 1;
    margin: 0 0 8px;
}
.cart-item__details .cart-item__name {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}
.cart-item__details .product-option {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
}
.cart-item__details .product-option dt {
    margin: 0 5px 0 0;
    float: none;
    display: inline-block;
    vertical-align: top;
    font-weight: 600;
}
.cart-item cart-remove-button {
    margin-left: 10px;
display: inline-block;
    vertical-align: top;
}
.cart-item__price-wrapper {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.remove-btn a {
      display: block;
} 
.remove-btn a svg {
    height: 100%;
    width: 100%;
}
.cookiestatus .cookie-block.bottom_to_right #cookie_message{
  border-radius:10px;
  z-index:3;
}
.cart-remove-button .icon-remove {
    height: 20px;
    width: 20px;
}
.cart-item__error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.cart-item__error-text {
    font-size: 1.2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
}
.cart-item__error-text+svg {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.2rem;
    margin-right: 0.7rem;
   margin-top: 0.4rem;
}
.cart-item__error-text:empty+svg {
    display: none;
}
.cart__footer .cart__note #Cart-note {
    min-height: 100px;
    padding: 10PX;
}
.cart__footer .cart__blocks {
    float: left;
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 25px 10px;
    text-align: center;
  border-radius:10px;
}
.cart__footer .cart__blocks .totals__subtotal {
    margin: 0 0 10px;
    line-height: 1;
}
.cart__footer .cart__blocks .totals__subtotal-value {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.cart__footer .cart__blocks .tax-note {
    font-size: 14px;
}
.product-content-bottom .product-content-top {
    margin-bottom: 40px;
}
.best-toy-card img{ 
    width: 45px;
    height: 45px;
    margin: auto;
}
.best-toy-outer{
  padding: 0 15px;
}
.continue-btn .btn-secondary:hover{
  border-color:var(--white);
}
.category-blog-slider{
  margin: 0 -15px;
}
.template-product .testimonials-sec .section-title-main{
  display: none;
}
.cart-item__price-wrapper {
    display: inline-block;
    vertical-align: top;
}

/*============= Product css ==============*/
.product__media-item:not(:first-child) {
    display: none;
}
.pdp-right-inner .price{
   margin:0 0 15px;
}
.pdp-right-inner p {
    margin: 0 0 15px;
}
.pdp-timer {
    margin: 0 0 15px;
}

.pdp-right-inner .pdp-cart-btn .pro-btn .btna.loading > svg {
  display: none;
}
.product-form__error-message-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #E90022;
  position: absolute;
  z-index: 1;
  background: yellow;
  padding: 10px;
  font-size: 12px;
  line-height: 1;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}
.product-form__error-message-wrapper svg{
      height: 20px;
    width: 20px;
}
.product-form__error-message{
      font-size: 12px;
    line-height: 1;
    margin-left: 10px;
}
/*-----------Shopify Article section css----------*/
.article_categories {
    padding: 15px;
    border: 1px solid var(--theme-color);
    margin: 30px 0;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.blog-content .btn-secondary:hover {
    border-color: var(--white);
}
.articlerightbar .blog-content h4,
.articlerightbar .blog-content p{
    margin-bottom: 10px;
}
.footer-copyright {
  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;
  gap:8px;
}
.articlerightbar .blog-content h4 a{
          display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
}
.articlerightbar .blog-content p{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article_categories h4 {
    margin: 0 0 15px;
    text-decoration: underline;
}
.article_categories ul a {
    text-transform: capitalize; 
    margin-bottom: 3px;
}
.article-comment {
    padding: 15px;
    border: 1px solid var(--theme-color);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.article-comment h4 {
    margin-bottom: 15px;
}
.article-comment .grid-item,
.article-comment .grid-item  .desc{
    margin-bottom: 10px;
}
.article-comment .grid-item input[type=submit] {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.article-comment .grid-item input[type=submit]:hover {
  background: transparent;
}
.article-section .blog-meta {
    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-bottom: 15px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1;
  }
.articlerightbar .blog-itm {
    margin-bottom: 30px;
}
.blog-meta>div {
    margin: 5px 10px 5px 0;
}
.blog-meta div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.blog-meta svg {
    height: 16px;
    width: 16px;
    margin-right: 5px;
}
.blog-inner {
    position: relative;
    background-color: var(--theme-color);
    border: 1px solid var(--second-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    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%;
}
/*-----------Shopify Collection-list section css----------*/
.collection-list {
    padding-top: 40px;
    padding-bottom: 40px;
}
.collection-list .card-wrapper {
    padding-bottom: 25px;
}
.collection-list .card-media {
    border: 1px solid var(--border-color);
}
.collection-list .card-media a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 100%;
}
.collection-list .card-media img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    top: 0;
    left: 0;
    right: 0;
}
.collection-list .card-content {
    margin-top: 10px;
    text-align: center;
}
.collection-list .card-content .card-heading {
    margin: 0 0 15px;
}
/*-----------Shopify blog list css----------*/
.card-inner {
    margin-bottom: 30px;
    border: 1px solid var(--second-color);
}
.recover-password .form-message{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    margin-bottom: 10px;
}
.newsletter-form__message--success {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15px;
    color: #448349!important;
    font-size: var(--common-text);
}
.card-bottom-inner variant-selects select {
  background: url(selectbox-arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
}
.form__message svg,
.recover-password svg,
.create-account-box svg{
    height: 20px;
    width: 20px;
    margin-right: 5px;
}
.template-search .h2 {
    margin: 0 0 15px;
}
.template-search .template-search__search {
    margin: 20px auto 0;
    position: relative;
}
.template-search__search button.search__button{
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 12px;
    border-radius: 7px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
}
.template-search__header .search-msg {
    margin: 40px 0 20px;
}
.template-search__results .row .product-card {
    margin-bottom: 25px;
}
.wish-vertical{
  padding-bottom: 40px;
}
variant-selects {
  margin:0 0 20px;
}
variant-selects .product-form__input:not(:first-of-type){
  margin:15px 0 0 ;
}
.wish-vertical {
    min-height: 40vh;
    -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;
}
.customer_account ul li a,
.customer_account ul .headwish{
    width: 100%!important;
    background-color: transparent!important;
    -webkit-box-pack: left!important;
        -ms-flex-pack: left!important;
            justify-content: left!important;
}
.profile-header{
  position:relative;
}
.customer_account .list-unstyled {
    padding: 0 15px;
}
.customer_account .list-unstyled li {
    margin-bottom: 7px;
}
.headwish .wishcount{
  margin: 0;
}
.mainwish .wish-btn {
    margin-right: 10px;
}
.template-search__search button svg {
    margin: 0;
}
td.cart-item__media a img {
    max-height: 100px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}
.recover-password {
    max-width: 600px;
    width: 100%;
    margin: 25px auto 0;
    padding: 15px;
}
#recover, #recover+.recover-password,#recover:target~.back-toshop,#recover:target~.section-title,#recover:target~.form-wrapper{
    display: none;
}
#recover:target+.recover-password,#recover:target {
    display: block;
}
input.shopify-challenge__button.btn {
    max-width: 170px;
}
.login-box, .register-box {
    border: 1px solid var(--border-color);
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}
.login-box .sub-title,
.register-box .sub-title{
    font-weight: 600; 
    margin-bottom: 20px;
    font: var(--h5); 
}
.login-box .fgt-pwd, .register-box .description,
.recover-content,
.customer .field,
.create-account-box p{
    margin-bottom: 15px;
}
.shopify-challenge__container * {
    margin-bottom: 20px;
}
.create-account-box {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.create-account-box form button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}
.form-message, .errors, .form__message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    color: #dc0000;
    outline: none;
    font-size: var(--common-text);
}
.acc-order-history{
  margin-bottom: 20px;
}
.acc-order-history h5{
  margin-bottom: 20px;
}
.acc-order-btn {
  margin-right: 10px;
}
.addresses [aria-expanded='false'] ~ div[id] {
    display: none;
}
.addresses [aria-expanded='true'] ~ div[id] {
    display: block;
}
.acc-order-history p {
    color: var(--white);
}
.newadd {
    text-align: center;
    margin: 0 0 15px;
}
.rtn-to-acc{
  margin-bottom: 10px;
  text-align: center;
    display: block;
}
.acc-details p {
    margin: 15px 0;
}
.search input {
    padding: 15px 50px 15px 20px;
}
#AddAddress{
  margin-top: 15px;
}
.add-default{
  border: 1px solid var(--border-color);
  padding: 20px;
  margin-top: 30px;
}
.edit-spacer{
  margin-top: 35px;
}
.add-default-check input{
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.add-default-btn button{
  padding: 0;
}
.add-default-btn{
  margin-bottom: 15px;
}
.delivery-page h3,
.notice-page h3{
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
}
.delivery-page h5,
.notice-page h5{
  margin-bottom: 10px;
}
.notice-page a{
  font-weight: bold;
}
.addresses .nice-select.open .list{
  overflow-y: scroll;
  max-height: 200px;
}
#address_form_new .nice-select,
.edit-spacer .nice-select{
  border-radius: 0;
  padding: 15px 20px;
}
.form-group label, .edit-spacer label, #AddAddress label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}
#AddressNewHeading {
    margin-bottom: 10px;
}
#MainContent{
  overflow: hidden;
}
.sale-labl, .sold-labl {
    position: absolute;
    top: 15px;
    left: 15px;
    text-align: center;
    font-size: 11px;
    line-height: 13px;
    padding: 5px 8px;
    color: var(--white);
    letter-spacing: 1px;
    border-radius: 33px;
    border: 1px solid var(--theme-color);
}
.product-img {
    position: relative;
    transition: all ease-in-out .6s;
    -webkit-transition: all ease-in-out .6s;
    -moz-transition: all ease-in-out .6s;
    -ms-transition: all ease-in-out .6s;
    -o-transition: all ease-in-out .6s;
}
.product-card-inner .favorite-icon .wishlist.wishremove:not(.wishactive) + a,.pdp-right-column .wishbtn.wishremove:not(.wishactive) + a {
    display: none;
}
.product-card-inner .favorite-icon .wishlist.wishremove.wishactive,.pdp-right-column .wishbtn.wishremove.wishactive {
    display: none;
}
.wishlist-action a {
    display: inline-block;
}
.wishremove.loadtowish .loadtowish{
    display: block;
}
.wishremove.wishactive .addtowish,.wishremove .loadtowish, .wishremove .wishirmv, a.go-to-wishlist,.wishremove.loadtowish .addtowish, .wishremove.wishadding .wishirmv, .wishremove.wishadding + a.go-to-wishlist{
    display: none;
}
.wishremove.wishactive .wishirmv, .wishremove.wishactive + a.go-to-wishlist{
    display: block;
}
.wishremove.wishactive.wishadding .wishirmv, .wishremove.wishactive.wishadding + a.go-to-wishlist{
    display: block;
}
.wishremove.loadtowish.wishadding .wishirmv, .wishremove.loadtowish.wishadding + a.go-to-wishlist{
    display: none;
}

.wishpg form .innerwimg {
    position: relative;
    height:100%;
}
ins {
    margin-right: 5px;
}
.wishpg .wishremove.wishactive {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    width: auto;
}
.wishpg .innerwish {
    border: 1px solid var(--border-color);
    padding: 15px;
}
.wishpg form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
}
.wishpg .wishdesc h5 a {
    font-size: 18px;
    margin-bottom: 3px;
    line-height: 1.15;
    font-weight: 500;
}
.hidden {
    display: none!important;
}
.set.is-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);
}
.visually-hidden {
    position: absolute!important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    word-wrap: normal!important;
}
.shipping-and-return .shipping-return {
    border: 1px solid var(--border-color);
    padding: 15px;
    background: rgba(24,58,64,.03);
}
.shipping-return ul {
    padding-left: 15px;
}
.shipping-return ul li {
    list-style: disc;
}
.quantity {
    color: #666;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    max-width: 110px;
    border-color: var(--theme-color);
    border-radius: 50px;
}
.quantity__button {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 1.8rem;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    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;
    color: #666;
    padding: 0;
}
.quantity__input {
    color: currentColor;
    opacity: .85;
    text-align: center;
    background-color: transparent;
    border: 0;
    padding: 0 0.5rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}
cart-remove-button .icon-remove {
    height: 20px;
    width: 20px;
}

.mini-cart-details .remove_item svg path {
    fill: var(--black)!important;
}
.webi-mini-cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    color:var(--black);
}
.mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--primary-color);
    margin: 0 -10px 20px;
}
.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;
}
.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;
    width: 100%;
    background: transparent;
    border: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.product-form__input {
    border: none;
}
.radio-btn-group {
    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;
}
.radio-btn input.radio {
    display: none;
}
.template-collection .common-banner-section .collection-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.template-collection .common-banner-section .collection-image img{
  margin: 0 auto;
}
.template-collection .collection-content{
  margin-top: 25px;
}
.product-heading-column {
    padding: 14px 0!important;
}
.filter-select-box {
    min-width: 160px;
}
.produdt-filter-cat li:not(:last-of-type) {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.produdt-filter-cat li a {
    font-weight: 500;
}
.product-heading-row .sort-lbl {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
}
.pdp-left-column .price{
    margin: 15px 0;
    max-width: 50%;
    width: 100%;
    color: var(--black);
    font-size: 31px;
}
.pdp-left-column .price del {
    color: var(--black);
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
}
.pdp-left-column .wbmydoles{
  font-size: inherit;
}
.pdp-price-section .quantity{
  max-width: 150px;
  height: 45px;
  border-color: var(--border-color);
}
.pdp-cart-btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5px;
}
.pdp-cart-btn .pro-checkout,
.pdp-cart-btn .product-cart{
  width: 50%;
}
.product-form__buttons button:first-of-type{
    background: var(--theme-color);
    color: #fff;
    border: 1px solid var(--second-color);
    border-radius: 50px;
    font-weight: 600;
    height: auto;
    padding: 11.5px 15px;
}
.article-comment .grid-item input, .article-comment .grid-item textarea {
    border-radius: 50px;
}
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
    background-color: transparent !important;
    color: var(--white);
    border-color: var(--theme-color);
}
.pdp-cart-btn  .pro-btn button{
  width: calc(100% - 10px);
}
.prorow-lbl-qntty {
    width: 150px;
    margin: 0 0 15px;
}
.no-js:not(html) {
    display: none!important;
}
.prorow-lbl-qntty label,
.pdp-right-inner variant-selects .form__label,
.pdp-price-section .product-form__input label{
  display: block;
  margin-bottom: 5px;
}
.active-facets-mobile {
    display: none;
}
.home-slider .slick-list{
  margin:0 -10px;
}
.product-img .hover-img {
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
}
.product-card-image:hover .default-img {
    display: none;
}
.product-img:hover .hover-img {
    opacity: 1;
    visibility: visible;
    display: block;
}
.cartOpen .cartDrawer .closecart {
    opacity: 1;
    visibility: visible;
}
.header-style-one .menu-right .cartDrawer svg#icon-cart-emty {
    width: 55px;
    height: auto;
    fill: var(--black);
    margin: 0 auto 15px;
}
.tt-cookie-inner {
    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;
    padding: 10px 0;
}
.no-transform .slick-track {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
}
.login-box form h2 svg,
.form-message-success svg{
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.form-message-success{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5px;
    outline: none;
}
#ProductGridContainer .collection--empty {
    padding-top: 40px;
}
.collection--empty .text-cenetr h4{
    line-height: 30px;
    font-weight: 500;
}
.pdp-left-column{
    position:relative;
}
.pdp-left-column .wishbtn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 35px;
}
.tt-cookie-inner .btn-secondary {
    min-width: unset;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li:not(.has-children)>a>svg {
    display: none;
}
.tt-cookie-inner span a {
    margin-left: 5px;
}
.card-bottom .label {
    margin-bottom: 5px;
}
.more-pro-slider .card-top > span{
  color: var(--third-color);
  border-color: var(--third-color);
}
.more-pro-slider .slick-list,
.more-pro-slider .slick-track{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.more-pro-slider .slick-list{
  margin: 0 -10px;
}
.template-index main {
    padding-bottom: 0;
}
.pro-base-slider-main .slick-list,
.pro-base-slider-main .slick-track{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-us-section .about-us-box img {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 15px;
    top: 15px
}
.subscribe-popup {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 550px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--theme-color);
    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%);
  border-radius:10px;
}
.subscribe-overlay.open {
    opacity: 1;
    visibility: visible;
}
.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(255,255,255,0.53);
    visibility: hidden;
    opacity: 1;
}
.subscribe-popup .close-sub-btn svg {
    height: 100%;
    width: 100%;
}
.subscribe-popup .close-sub-btn svg path{
  fill: var(--white);
}
.subscribe-popup .close-sub-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 0;
    height: 16px;
    width: 16px;
    padding: 0;
}
.subscribe-popup h2 {
    font-family: var(--second-font);
    font-weight: 500;
    font-size: 31px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-style: italic;
}
.subscribe-popup p {
    letter-spacing: 1px;
    max-width: 330px;
    margin: 0 auto 25px;
}
.product-card .card-btn-wrapper .price .price-item--sale {
    width: 100%;
    margin: 0;
}
.pdp-right-inner .wishbtn{
    position: absolute;
    top: 33px;
    right: 0;
}
.pdp-right-inner .back-btn {
    margin-bottom: 15px;
}
.product-title a {
    font: var(--h4);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.jdgm-preview-badge .jdgm-star.jdgm-star{
  color: var(--theme-color) !important;
}
.blog-card .section-title a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
input:-webkit-autofill,input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active  {
  -webkit-box-shadow: 0 0 0 100px transparent inset;
   -webkit-transition: background-color 5000s;
   transition: background-color 5000s;
  -webkit-text-fill-color: #fff !important;
}
.pagination-wrapper .pagination__list li a{
  border-radius:50%;
}
a.blog-post__full-image,.art-shopify img{
    width: 100%;
}

/*============SHF order =============*/
.order h2 {
    margin: 0 0 30px;
}
.order h4 {
    margin: 0 0 20px;
}
.order-detail {
    margin: 0 0 30px;
}
.order-detail > p {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
}
/* ============================================= */
/* !!!!        Shopify CSS End              !!!! */
/* ============================================= */
.enter-mail input[type="email"] {
    padding: 15px 50px 15px 15px;
}
.wishpg .innerwimg>a {
    display: block;
    width: 100%;
    padding-top: 100%;
}
.wishpg .innerwimg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}
.innerwish .wishremove.wishactive .addtowish {
    display: block;
    position: absolute;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
}
.wishpg .innerwish .wishremove.wishactive .addtowish {
    top: 15px;
    right: 15px;
}
.innerwish {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.wishdesc {
    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%;
}
.wishdesc h5 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.section-title-main {
    margin-bottom: 30px;
}
.footer-bottom {
    margin-top: 20px;
}
.js .mobile-facets__submenu {
  background-color: var(--second-color) !important;
}
/************** video product page css *************/
deferred-media.deferred-media {
    position: relative;
    display: block;
}
.media>*:not(.zoom):not(.deferred-media__poster-button), .media model-viewer {
   display:block;
    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%;
    -webkit-transform: translate(-50%,-50%) scale(1);
        -ms-transform: translate(-50%,-50%) scale(1);
            transform: translate(-50%,-50%) scale(1);
    z-index: 1;
    padding: 10px;
    background: var(--theme-color);
    border-radius: 30px;
}
.deferred-media__poster-button.motion-reduce svg {
    fill: var(--black);
    width: 20px;
    height: 20px;
}
.deferred-media:not([loaded]) template {
    z-index: -1;
}
.testi-card-inner .title h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.template-search main {
    padding-bottom: 70px;
}
.article-template__content h5 {
    margin-bottom: 15px;
}
.product .pro-base-slider-sec, .collection .pro-base-slider-sec {
    padding-bottom: 80px;
}
.product .pro-base-slider-sec{
  padding-bottom: 70px;
}
.jdgm-rev-widg__summary-stars{
    margin-bottom: 10px !important;
}
.jdgm-star {
    font-weight: normal !important;
}
.product .jdgm-widget-actions-wrapper {
    margin: 0;
}
.product .jdgm-rev-widg {
    border: none;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px 50px !important;
}
.jdgm-review-widget--small .jdgm-form__fieldset-actions .jdgm-btn {
    text-align:center;
}
.jdgm-widget .jdgm-btn.jdgm-btn {
    width: auto;
}
.jdgm-widget:not(.jdgm-review-widget--small) .jdgm-form__fieldset-actions .jdgm-cancel-rev {
    background: transparent;
}
.jdgm-form__title {
    margin-top: 15px !important;
    text-align: center;
}
.jdgm-form {
    border: 1px solid var(--border-color);
    background: var(--white);
    text-align: left;
}
.jdgm-row-actions {
    display: none !important;
}
.jdgm-rev-widg__body {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 15px;
}
.jdgm-rev-widg__body .jdgm-rev {
    border-top: 0;
    padding: 0;
}
.jdgm-rev-widg__body .jdgm-rev:last-of-type {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}
.jdgm-paginate {
    border-top: none !important;
}
.jdgm-row-rating {
    border-bottom: 1px solid rgba(51, 153, 153, 0.1);
    border-color: var(--jdgm-secondary-color);
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.jdgm-widget.jdgm-widget {
    margin-bottom: 15px;
}
.pdp-right-inner .jdgm-prev-badge {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    gap: 15px;
}
.jdgm-widget .jdgm-rev-widg .jdgm-star {
    font-size: 12px;
}
.jdgm-widget .jdgm-rev-widg__summary-stars {
    margin-bottom: 10px;
}
.jdgm-review-widget .jdgm-form input::-webkit-input-placeholder, .jdgm-review-widget .jdgm-form textarea::-webkit-input-placeholder{
  color:var(--theme-color) !important;
}
.jdgm-review-widget .jdgm-form input::-moz-placeholder, .jdgm-review-widget .jdgm-form textarea::-moz-placeholder{
  color:var(--theme-color) !important;
}
.jdgm-review-widget .jdgm-form input:-ms-input-placeholder, .jdgm-review-widget .jdgm-form textarea:-ms-input-placeholder{
  color:var(--theme-color) !important;
}
.jdgm-review-widget .jdgm-form input::-ms-input-placeholder, .jdgm-review-widget .jdgm-form textarea::-ms-input-placeholder{
  color:var(--theme-color) !important;
}
.jdgm-write-rev-link.jdgm-write-rev-link , .jdgm-form-wrapper,.jdgm-review-widget .jdgm-form .jdgm-star,.jdgm-review-widget .jdgm-form input[type="text"],
.jdgm-review-widget .jdgm-form input::placeholder,.jdgm-review-widget .jdgm-form textarea,.jdgm-review-widget .jdgm-form textarea::placeholder,.jdgm-review-widget .jdgm-form .jdgm-sort-dropdown, .jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow{
  color:var(--theme-color) !important;
}
.jdgm-widget:not(.jdgm-review-widget--small) .jdgm-form__fieldset-actions .jdgm-cancel-rev, .jdgm-widget input[type="submit"].jdgm-btn--solid{
   color:var(--theme-color) !important;
  border-color:var(--theme-color) !important;
}
a.product-write-review{
  gap: 5px;
}
.jdgm-form input[type="text"]:focus, .jdgm-form input[type="text"]:focus-visible, .jdgm-form input[type="email"]:focus, .jdgm-form input[type="email"]:focus-visible, .jdgm-form input[type="url"]:focus, .jdgm-form input[type="url"]:focus-visible, .jdgm-form textarea:focus, .jdgm-form textarea:focus-visible{
      border: 1px solid #e4e4e4!important;
}
.shopify-payment-button__more-options  {
  display:none;
}
.recentlyview .card-top-inner h4{
  font-size: 24px;
  margin-bottom: 15px;
}
.recentlyview .card-top-inner a{
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.recentlyview .product-card-image:hover .default-img{
  display: block;
}
/*================= reset password page =============*/
.reset-password {
    border: 1px solid var(--border-color);
    padding: 20px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.reset-password .section-title h3 {
  margin: 0 0 15px;
}
.reset-password .form-container {
  padding: 0;
  border: none;
}
.reset-password label {
  text-align: right;
  width: 100%;
}
.customer.reset-password {
  text-align: center;
}
.my-resetpwd-sec .row{
  margin:0;
}
.login-page .form-message-success{
  margin-bottom:10px;
  color:#24d57a;
}
.reset-password .form-container .row {
  margin: 0;
}
.reset-password .form-container .row [class*=col-] {
  padding: 0;
}
.site-footer .payment-image-wrapper {
    gap: 5px;
}
.site-footer .payment-image-wrapper .payment-image img {
    width: 40px;
}
.nice-select.disclosure__button[aria-expanded=true]:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}
.site-header .megamenu-card .megamenu-image {
    position: relative;
    background-color: var(--second-color);
  border-radius:10px;
  overflow:hidden;
}
.site-header .megamenu-card .megamenu-content {
    margin-top: 15px;
    text-align: center;
}
.site-header .megamenu-card .megamenu-content a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.site-header .megamenu-card .megamenu-image a {
    padding-top: 80%;
    position: relative;
    display: block;
}
.site-header .megamenu-card .megamenu-image a img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.site-header .megamenu-card .megamenu-content span {
    font-size: 18px;
    line-height: 1;
}
/*============ zoom  =========*/
.product-item-img .zoomImg {
    background: var(--white);
    cursor: crosshair;
}
.slick-lightbox-inner .slick-prev {
    transform: translateY(-50%) scale(-1);
    -webkit-transform: translateY(-50%) scale(-1);
    -moz-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    -o-transform: translateY(-50%) scale(-1);
}
/**** products-add-cart-sticky CSS ****/
.products-add-cart-sticky {
    display: none;
    z-index: 3;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    font-size: 20px;
    width: 100%;
    max-height: 100%;
    transition: all 500ms ease-in-out 0s;
    -webkit-transform: translateY(120px);
        -ms-transform: translateY(120px);
            transform: translateY(120px);
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    border-top: 1px solid var(--border-color);
  background-color: var(--second-color);
}
.products-add-cart-sticky.show-btn {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.products-add-cart-sticky .sticky-pro-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
    gap: 15px;
}
.products-add-cart-sticky .sticky-pro-inner .text-checkbox .checkbox input[type=checkbox]+.checkbox-label {
    padding: 8px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn {
    font-size: 14px;
}
.products-add-cart-sticky .text-checkbox .checkbox .clr {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.sticky-pro-info {
    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;
    gap: 10px;
  max-width:260px;
  width:100%;
}
.sticky-pro-info img {
    height: 60px;
    max-width: 80px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    border: 1px solid var(--border-color);
  border-radius:8px;
}
.sticky-pro-info .sticky-data .price ins {
    font-size: 16px;
}
.sticky-data h3 {
    font: var(--h6);
    margin-bottom: 8px;
      display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sticky-pro-info .sticky-data .price {
    margin-bottom: 0;
}
.products-add-cart-sticky .nice-select {
    max-width: 185px;
    padding: 10px 30px 10px 15px;
  background-image:none;
      border-color: var(--white);
    color: var(--white);
}
.products-add-cart-sticky .nice-select::after {
  border-color: var(--white);
}
.products-add-cart-sticky .nice-select .list {
  top: auto;
  bottom: 100%;
  margin: 0 0 5px;
  -webkit-transform: scale(.75) translateY(21px);
      -ms-transform: scale(.75) translateY(21px);
          transform: scale(.75) translateY(21px);
}
.products-add-cart-sticky .nice-select.open .list {
      -webkit-transform: scale(1) translateY(0);
          -ms-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
}
.products-add-cart-sticky .prorow-lbl-qntty {
  max-width: unset;
  width: auto;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn.loading>svg {
  display: none;
}
.loading-overlay__spinner {
  width: auto !important;
}
.products-add-cart-sticky .qty-spinner button svg path {
    fill: var(--white);
}
.products-add-cart-sticky .qty-spinner input {
  color: var(--white);
}
.products-add-cart-sticky .btn svg{
  margin:0 8px 0 0 ;
}
.products-add-cart-sticky .qty-spinner {
  height: 40px;
  border-color:var(--white);
}
.sticky-pro-info .sticky-data .price del{
  font-size:16px;
}
/* ============cartdrawer============== */
.cartOpen .cartDrawer .closecart {
    opacity: 1;
    visibility: visible;
}
.cartDrawer .closecart {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
}
/* cart-progress-bar */
.cart-progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

progress[value] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    position: relative;
    height: 7px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

progress[value]::-webkit-progress-bar {
    position: relative;
    border-radius: 5px;
    background-color: #F2F2F2;
}

progress[value]::-webkit-progress-value {
    position: relative;
    border-radius: 5px;
    background-color: var(--theme-color);
}

progress[value]::-moz-progress-bar {
    position: relative;
    border-radius: 5px;
    background-color: var(--theme-color);
}

progress:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -o-linear-gradient(315deg,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    -webkit-animation: move 5s linear infinite;
    border-radius: 5px;
    overflow: hidden;
    background-size: 45px 45px;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -60px -60px;
    }
}

@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -60px -60px;
    }
}

.progress-icon {
    position: relative;
    top: 25px;
    width: 55px;
    height: 55px;
    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;
    background: var(--theme-color);
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    -webkit-animation: blinkers 1.5s infinite;
    animation: blinkers 1.5s infinite;
}

.progress-icon svg {
    height: 40px;
    width: 40px;
}

.progress-icon svg path {
    fill: var(--white);
}

@keyframes blinkers {
    0% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }

    50% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }
}

@-webkit-keyframes blinkers {
    0% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }

    50% {
        -webkit-transform: translateY(-50%) scale(0.95);
        transform: translateY(-50%) scale(0.95);
    }

    100% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}

/* cart-progress-bar end */
/* releted product cart popup */
.cartDrawer .related-cart-wrp{
  margin-top: 25px;
}
.cartDrawer .related-cart-wrp h3{
  margin-bottom: 15px;
  font-size: 22px;
}
.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: 10px;
  border-radius:10px;
}
.cartDrawer .related-cart-inner .related-image a{
  position: relative;
  padding-top: 125%;
  display: block;
}
.cartDrawer .related-cart-inner a img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.cartDrawer .related-image{
    position: relative;
    max-width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 100%;
    background: whitesmoke;
    padding: 10px;
  border-radius:10px;
}
.cart-variable p {
    color: var(--black);
  margin-bottom:12px;
}
.cartDrawer .related-cart-text{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 15px;
}
.cartDrawer .related-cart-text h4{
  font-size: 16px;
  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: 16px;
  margin-bottom: 10px;
}
.cartDrawer .pvarprice svg path{
  fill: red;
}
.cartDrawer .cart-slider{
  position: relative;
}
/* releted product cart popup  end*/
.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 {
    margin-bottom: 15px;
}
.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: 10px;
}
.cartDrawer .mini-cart-footer-icons svg {
    width: 30px;
    height: 30px;
}
.cartDrawer .mini-cart-footer-icons svg path {
    stroke: var(--white);
}
.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-total-iteam p {
    font-size: 16px;
}
.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);
  border:0;
}
.cartDrawer .mini-cart-bottom .view-cart-btn {
    background-color: var(--theme-color);
}
/* ============cart-gift============ */
.cart-page-section #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(--theme-color);
  padding: 15px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-align-items: center;
  border-radius:10px;
}
.cart-page-section #cart-gift-wrap .continue-btn {
  margin-right: 0;
}
.cart-page-section #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;
  max-width: 300px;
  width: 100%;
}
.cart-page-section #cart-gift-wrap .add-gift svg path{
  fill:var(--white);
}
.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: 100%;
  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 .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);
}
/* ****** coupon popup css **** */
.coupon-code {
  position: relative;
}
.coupon-code input {
  height: 45px;
  width: 100%;
  border-color: var(--border-color);
  padding: 14px 115px 14px 15px;
   color: var(--black);
}
.coupon-code input::-webkit-input-placeholder {
  color: var(--black);
}
.coupon-code input::-moz-placeholder {
  color: var(--black);
}
.coupon-code input:-ms-input-placeholder {
  color: var(--black);
}
.coupon-code input::-ms-input-placeholder {
  color: var(--black);
}
.coupon-code input::placeholder {
  color: var(--black);
}
.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;
   color: var(--black);
}
.coupon-popup .coupon-txt svg {
  height: 30px;
  width: 30px;
}
.coupon-code .apply-coupon-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius:0 10px 10px 0px;
}
.checkbox-custom label::before {
  border: 1px solid var(--theme-color);
}
.cart__warnings {
  display: none;
}
.cart-page-section .cart-page-section {
  padding: 0;
}
.cart-item__vendor {
  margin: 0 0 10px;
}
.cart__footer-wrapper .cart__blocks .price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 12px;
    gap: 10px;
}
.cart__ctas {
    margin-top: 10px;
}
.cart__footer-wrapper .cart__blocks .btn {
    padding: 10px 12px;
    width: 100%;
}
.cart-slider .slick-dots {
  position: unset;
  margin: 20px 0 0;
}
.cart-slider .slick-list {
  margin: 0 -10px;
}
.cartDrawer .related-cart-inner {
  margin: 0 10px;
}
.mini-cart-details .remove-item svg {
    height: 15px;
    width: 15px;
}
.is-empty #cart-gift-wrap{
  display: none;
}
.is-empty .cart__warnings{
  display: block;
}
body.account table tr td:first-child a{
  text-decoration: underline;
}
#AddAddress .form-group label {
    width: 100%;
    text-align: left;
}
.disclosure__list-wrapper .disclosure__item a.disclosure__link--active, .disclosure__list-wrapper .disclosure__item a:hover {
    background-color: #f3f0ee;
}
/* ============================================= */
/* !!!!         Responsive Css              !!!! */
/* ============================================= */
@media (hover: hover) {
    a:hover,
    a:focus {
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .site-footer .footer-col .footer-widget .social-ul li a:hover {
        color: var(--white);
        background-color: var(--black);
    }
    .site-footer .footer-col .footer-widget ul li a:hover svg path {
        fill: var(--white);
    }
}
@media (min-width: 992px){
      .cart-items tr th:first-child, .cart-items tr td:first-child {
        width: 140px;
      }
      .cart-items tr th:nth-child(2), .cart-items tr td:nth-child(2) {
        width: 200px;
      }
      .cart-tble tr th:first-child,  .cart-tble tr td:first-child {
          width: 130px;
      }
      .cart-tble tr th:nth-child(2),  .cart-tble tr td:nth-child(2) {
          width: 253px;
      }
      .cart-tble tr th:nth-child(4),  .cart-tble tr td:nth-child(4) {
          width: 116px;
          padding-right: 9px;
      }
}
@media (min-width: 768px) {
  .jdgm-write-rev-link.jdgm-write-rev-link{
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
  }
  .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;
  }
  .mobile-only {
    display: none !important;
  }
  .desk-only {
    display: block!important;
  }
}
@media screen and (max-width:1400px) {
  .home-slider-main {
    max-width: 100%;
    margin-left: 0;
    padding-right: 85px;
  }
}
@media screen and (max-width:1200px) {
  .service-tag {
    margin-top: 30px;
  }
  .design-img-chocolate,
  .design-img-chocolate2 {
    opacity: .4;
  }
  .card-slider-sec .img-box {
    padding: 24px 10px;
  }
  .home-slider-main {
    padding-right: 0;
  }
  .product-slider-sec .slick-list {
    padding: 0 11% 100px!important;
  }
  .news-letter-sec .input-wrapper{
    margin-bottom: 0;
  }
  .home-slider-main .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    border-top: 1px solid var(--white);
    height: auto;
    top: auto;
    transform: translateY(0);
    left: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px auto 0;
    right: 0;
    text-align: center;
    border-left: 0;
    position: relative;
    max-width: 200px;
  }
  .home-slider-main .slick-dots li {
    height: 100%;
    width: 100%;
  }
  .home-slider-main .slick-dots li button {
    height: auto;
    width: 100%;
    padding: 16px 0 0 0;
  }
  .home-slider-main .slick-dots li button:after {
    height: 3px;
    width: 0;
    left: auto;
    opacity: 0;
    visibility: hidden;
    top: -2px;
  }
  .home-slider-main .slick-dots li.slick-active button:after {
    height: 3px;
    width: 100%;
  }
  .menu-right .profile-header {
    display: none;
  }
  .menu-right .phone-icons {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 33px;
    position: relative;
    margin-right: 15px;
  }
  .menu-right .phone-icons svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
  }
  .menu-right .phone-icons svg path {
    fill: var(--theme-color);
  }
}
@media screen and (max-width:1024px) {
  .header-style-one .main-navigationbar .logo-col a:after {
    content: "";   
    margin-left: 120px;
  }
  .header-style-one .main-navigationbar .menu-items-col .main-nav {
    padding-left: 20px;
  }
}
@media screen and (max-width:991px) {
  .cart__footer-wrapper .cart__blocks .btn{
    width:-webkit-max-content;
    width:-moz-max-content;
    width:max-content;
  }
    .jdgm-row-stars, .jdgm-rev-widg__summary {
        margin-bottom: 15px !important;
    }
   .template-cart .order-historycontent .back-btn{
    margin:0 !important;
  }
  
  .header-style-one .announcebar-right ul li:not(:first-of-type) {
    padding-left: 12px;
}
   .out-of-stock-form {
   max-width: 65%;
   padding: 50px 30px;
}
  :root {
    --h1: normal 500 28px/1.1 var(--first-font);
    --h2: normal 500 26px/1.1 var(--first-font);
    --h3: normal 500 24px/1.1 var(--first-font);
    --h4: normal 500 22px/1.1 var(--first-font);
    --h5: normal 500 18px/1.1 var(--first-font);
  }
  /********* HEADER START **********/
  .padding-bottom {
    padding-bottom: 40px;
  }
  .padding-top {
    padding-top: 40px;
  }
  .menu-right .cart-header a {
    border: none;
  }
  .main-cart .hcart span {
    display: none;
  }
  .header-style-one .menu-right li.cart-header .closecart {
    right: 400PX;
  } 
  .menu-right .profile-suport {
    display: none;
  }
  .header-style-one .announce-row {
    padding: 10px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-style-one .menu-right {
    gap: 10px;
  }
  .header-style-one .main-navigationbar .logo-col a::after,
  .cart-header .count,
  .bottom-icons-header {
    display: none;
  }
  .second-sec {
    margin-top: -50px;
    position: relative;
    z-index: 1;
  }
  .product-slider-sec .slick-list {
    padding: 0 8% 65px !important;
  }
  .video-sec {
    padding: 330px 0 50px;
  }
  .card-slider-sec .right-card-slider .card-slides{
    padding: 20px 10px 0;
  }
  .more-pro-sec .more-pro-itm {
    padding: 20px 10px;
  }
  /****about us ****/
  .about-our-shop-section {
    padding-bottom: 30px;
  }
  .about-us-page {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .abt-shp-column-left p {
    margin-bottom: 30px;
  }
  /* my account */
  .my-account-page {
    padding-top: 10px;
  }
  /* footer  */
 .footer-subscribe-col {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 0px;
    margin-bottom: 25px;
  }
  .site-footer .footer-col {
    padding-left: 0px;
  }
  .site-footer .footer-col:nth-child(2) .footer-widget h4{
    padding-top:0;
  }
  .submit-btn {
    margin: 15px 0;
  }
  .cart-summery {
    margin-top: 30px;
  }
  .cart-summery .btn {
    max-width: 300px;
    margin-left: auto;
  }
  .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;
  }
  .my-acc-right-content .qty-spinner input,
  .my-acc-right-content table tr th,
  .my-acc-right-content table tr td {
    font-size: 12px;
  }
  .header-style-one .count {
    top: -11px;
    right: -9px;
    height: 16px;
    width: 16px;
    font-size: 9px;
    border: 0;
  }
  .card-slider-sec .section-title {
    padding-bottom: 0;
  }
  .site-footer .footer-link-3 .footer-widget h4 {
    text-align: left;
  }
  .site-footer .footer-col .footer-widget .social-ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  /*-------------Shopify 991------------*/
  .main-detail{
    margin-bottom: 30px;
  }
  .account-header .hmuser,.menu-right .phone-icons {
    background-color: var(--theme-color);
  }
  .menu-right .phone-icons{
      width:20px;
      height:22px;
      margin-right:0;
  }
  .account-header .hmuser svg path,.menu-right .phone-icons svg path {
    fill: var(--white);
  }
  .large-up-hide, .medium-hide {
    display: none!important;
  }
  .quote-box h4 {
    font-weight: 400;
  }
    .account-header .hmuser {
      margin-right: 0;
  }
  .cart__footer .cart__note {
    margin: 15px 0 20px;
  }
  .menu-right .cart-header .hcart {
    padding: 0;
  }
  .card-slider-sec .right-card-slider.slick-slider .slick-list{
    margin: 0 -10px;
  }
  .testi-card-inner .ratings span {
    padding-left: 5px;
    font-size: 12px;
  }
  .testi-card-inner { 
      padding: 15px 15px;
      border-radius: 20px;
  }
  .more-pro-sec .left-side .btn-wrapper {
      margin-bottom: 15px;
  }
  .site-footer { 
      padding: 40px 0 30px; 
  }
  .header-style-one .main-navigationbar .logo-col {
      max-width: 72px; 
  }
  .account-header .hmuser{
      width: 32px;
      height: 32px;
  } 
    #recently-viewed-products .product{
    width: 33.33%;
    margin: 0 0 20px;
  }
  .lang-dropdown{
    margin-right: 2px;
  }

  .lang-dropdown svg path {
    fill: var(--white);
  }
  .site-footer .footer-widget p {
    padding: 25px 0 0px;
  }
  .product .pro-base-slider-sec {
    padding-bottom: 40px;
  }
  .product .pro-base-slider-sec, .collection .pro-base-slider-sec {
    padding-bottom: 40px;
  }
  .cart #MainContent {
    padding-bottom: 40px;
  }
  .cart__footer .cart__blocks{
    padding: 15px;
  }
  .register-page{
  padding-bottom: 80px;
}
  .section-title {
    margin-bottom: 18px;
}
}
@media screen and (max-width:767px) {
    .size-popup table tr td:before {
        content: attr(data-label) ":";
        float: left;
        font-weight: 600;
        color: var(--black);
        text-transform: capitalize;
      padding:0;
    }
    .size-popup table tr td {
        text-align: end;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 5px 0;
    }
  .cart-page-section .section-title{
    text-align:center;
  }
    .sticky-pro-info, .products-add-cart-sticky .qty-spinner {
        display: none;
    }
  .cart-page-section #cart-gift-wrap{
    margin:10px 0 0 ;
  }
  .flip-countdown.simple-countdown{
    top:80%;
   width: -webkit-fit-content;
   width: -moz-fit-content;
   width: fit-content;
    margin: 0 auto;
  }
 .products-add-cart-sticky .nice-select {
        max-width: 60%;
    }
      .products-add-cart-sticky .sticky-pro-inner {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
      .video-sec {
        padding: 310px 0 40px;
    }
  
  .compare-wrap, .wishlist-wrap{
    border-bottom:0;
  }
  .wishlist-wrap:not(:last-of-type),
  .compare-wrap:not(:last-of-type){
     border-bottom:1px solid var(--border-color);
   }

  .product-card-inner .wish-lbl-wrp{
    opacity:1;
    visibility:visible;
  }
  .quickview-popup{
    max-width:calc(100% - 30px);
    width:100%;
  }
  .quickview_popup_data .pdp-right-column{
    margin:20px 0 0 ;
  }
  .slick-arrow{
    opacity:1;
    visibility:visible;
  }
         .progress-icon {
        width: 45px;
        height: 45px;
    }
  .coupon-popup .coupon-body, .gift-popup .gift-body ,
  .mini-cart-top{
        padding: 15px;
    }
  .cartDrawer .mini-cart-footer-total-row{
    font-size:20px;
  }
	.progress-icon svg {
        height: 30px;
        width: 30px;
    }
    .cartDrawer .mini-cart-bottom .cart-bottom-btn {
        padding: 12px 8px;
        font-size: 14px;
    }
  .mobile-menu-wrapper .mobile-lag {
    padding: 15px;
    border-bottom: 1px solid var(--black);
    gap: 15px;
}
  .lang-dropdown .nice-select{
    border:1px solid var(--theme-color)
  }
  .mobile-lag .languages, .mobile-lag .currency {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.out-of-stock-form {
  max-width: calc(100% - 30px);
}
.compare-wrap, .wishlist-wrap {
    padding-top: 20px;
}
.pro-compare-right, .pro-wishlist-right {
    border: 1px solid var(--border-color);
  border-radius:10px;
  overflow:hidden;
}
.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 .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: 0;
}

.compare-data-label:before, .wishlist-data-label:before {
   display: none;
}

.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;
}
.compare-pro-detail .prod-img a, .wishlist-pro-detail .prod-img a {
    padding-top: 30%;
    background: transparent;
}
.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;
}
.compare-data-label, .wishlist-data-label {
    margin-bottom: 20px;
}  
  .section-title {
    margin-bottom: 20px;
  }
  .bottom-icons-header {
    display: none;
  }
  .pdp-right-inner {
    padding-top: 35px;
}
  .price ins { 
    font-size: 20px; 
}
  .footer-bottom {
    margin-top: 15px;
  }
  .header-style-one .main-navigationbar .menu-items-col {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .menu-right .profile-suport .phone-icons svg path {
    fill: var(--white);
  }
  .main-home-first-section .chocolate-fist-button {
    margin: 20px 0;
  }
  .our-client-section .chocolate-favor-section {
    margin-top: 20px;
  }
  .header-style-one .main-navigationbar {
    padding: 15px 0;
  }
  /** MINI CART **/
  .cartDrawer {
    width: 100%;
  }
  .cartDrawer .mini-cart-body {
    padding: 20px;
  }
  .cartDrawer .mini-cart-header {
    padding: 16px 20px 16px 50px;
  }
  .mini-cart-footer .checkout-btn {
    max-width: 100%;
    padding: 12px 11px;
  }

  .mini-cart-footer-total-row {
    font-size: 18px;
    line-height: 18px;
    margin: 0 -10px 12px;
  }
  .cartDrawer .closecart {
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .cartDrawer .closecart svg path {
    fill: var(--white);
  }
  .mini-cart-footer .u-save {
    font-size: 15px;
    margin-bottom: 15px;
  }
  /* home  */
  .service-tag {
    gap: 20px;
  }
  .design-img-chocolate,
  .design-img-chocolate2 {
    display: none;
  }
  .home-slider-main {
    max-width: 100%;
    padding: 30px 0 0;
  }
  .second-sec .img-wrapper {
    margin-top: 30px;
  }
  .second-sec .second-sec-right-side {
    max-width: 100%;
    margin: auto;
  }
  .pdp-right-inner,
  .slider-wrapper{
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 22px 0;
  }
  .pdp-left-col:after{
    content: '';
    position: absolute;
    width: 50vw;
    right: -50vw;
    background: var(--theme-color);
    top: 0;
    height: 100%;
  }
  .tab-title-left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 20px;
  }
  .more-pro-sec .left-side {
    margin-bottom: 30px;
  }
  .news-letter-content {
    max-width: 100%;
  }
  .site-footer .footer-link-3 .footer-widget h4 {
    text-align: start;
  }
  .site-footer .footer-col .footer-widget .social-ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .popup-inner {
    max-width: 90%;
  }
  .common-banner-section {
    padding: 40px 0;
  }
  .common-banner-content .back-btn {
    margin-bottom: 15px;
  }
  .common-banner-content .section-title h2 span {
    font-size: 12px;
  }
  .product-filter-body {
    padding: 30px 15px;
    overflow: auto;
    height: 100%;
    background-color: var(--second-color);
  }
  .close-filter {
    -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;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    background: var(--black);
    pointer-events: none;
  }
  .close-filter svg {
    height: 100%;
    width: 100%;
  }
     .mobile-open .close-filter {
      opacity: 1;
      pointer-events: visible;
   }
  .filter-open .product-filter-column {
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .product-heading-right-column {
    border-left: 0;
  }
  .icon-filter {
    max-width: 22px;
    margin: auto;
  }
  .product-filter-body .mobile-facets__submenu {
    bottom: inherit !important;
  }
  .product-filter-right-column {
    border-left: 0;
    padding-left: 0 !important;
  }
  .filter-title div {
    width: 32px;
    border: 1px solid var(--theme-color);
    padding: 2px;
  }
  .cart-page-section .section-title {
    margin-bottom: 26px;
  }
  .abt-shp-column-right,
  .about-our-shop-section .row {
    margin-top: 0;
  }
  .contact-right-column {
    margin-top: 0;
  }
  .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;
  }
  .blog-grid-section .section-title {
    text-align: center;
  }
  .blog-col-left ul li a:before {
    display: none;
  }
  .articlerightbar {
    padding-top: 40px;
  }
  .aticleleftbar h5 {
    margin: 0 0 20px 0;
  }
  .articlerightbar .blog-grid .blog-widget:last-of-type {
    margin-bottom: 0;
  }
  .latest-article-slider-section .section-title {
    padding-top: 26px;
  }
  .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;
  }
  .my-acc-head {
    margin-bottom: 26px;
  }
  .my-acc-rightbar {
    margin-top: 40px;
  }
  #scroll {
    background: var(--white);
    top: 92px;
  }
  #account-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #account-nav li a svg path {
    fill: var(--white);
  }
  #account-nav li a svg {
    margin-right: 0;
    height: 15px;
    width: 15px;
  }
  #account-nav li a span {
    display: none;
  }
  #account-nav li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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;
  }
  .my-acc-leftbar li:not(:last-of-type) {
    border-bottom: 0;
  }
  .my-acc-leftbar h4 {
    padding: 15px 15px;
    color: var(--black);
  }
  .my-acc-leftbar{
    border: 0;
  }
  #account-nav li a {
    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;
    padding: 5px;
    width: 100%;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--theme-color);
  }
  .form-container{
    padding: 20px 15px;
  }
  .logo-slider {
    padding-top: 40px;
    border-top: 1px solid var(--second-color);
  }
  .service-tag-div .service-tag {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-us-section .about-us-box {
    margin-bottom: 20px;
    padding: 15px;
  }
      /*---------Shopify 767 responsive----------*/
    .header-style-one .menu-right li.cart-header .closecart {
        right: auto;
        left: -10px;
        top: 10px;
    }
    .menu-right .cart-header .hcart{
      padding: 0 0px 0 0;
    }
    .template-search__header .search-msg {
        margin: 25px 0 20px;
    }
    .blog-img a{
      padding-top: 50%;
    }
    .cart-item__details {
        display: block;
    }
    .pdp-slider-sec .product-item-img {
        padding-top: 72%;
    }
    .small-hide {
        display: none!important;
    }
    .product-option {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: block;
      font-size: 14px;
  }
    .mobile-facets {
      position: fixed;
      top: 0;
      background: var(--white);
      left: 0;
      max-width: 315px;
      height: 100%;
      z-index: 4;
      overflow: hidden;
      -webkit-transition: all ease-in-out .5s;
      -o-transition: all ease-in-out .5s;
      transition: all ease-in-out .5s;
      -webkit-transform: translate(-100%,0px);
      -ms-transform: translate(100%,0px);
      transform: translate(-100%);
      pointer-events: none;
    }
    .cartDrawer .closecart {
        left: 19px;
        width: 15px;
        height: 22px;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
    .cart-item__quantity-wrapper {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .carthead a.underlined-link {
        font-size: 16px;
    }
    .remove-btn { 
        height: 14px;
        width: 14px;
    }
    .order-history-tbl tr td[data-label="quantity"],
    .order-history-tbl tr td[data-label="Name"],
    .order-history-tbl tr td[data-label="Product"] {
        max-width: 100%;
        width:100%;
    }
    .mobile-facets__open-wrapper div {
        max-width: 40px;
        border: 1px solid var(--theme-color);
        padding: 2px;
    }
    .mobile-open .mobile-facets {
       -ms-transform: translate(0);
       -webkit-transform: translate(0);
       transform: translate(0);
       pointer-events: visible;
   }
  /*    home-slider */

  .home-slider ,
  .home-slider  .slick-track,
  .home-slider .slick-list {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  }
  .home-slider-main .slick-arrow {
    height: 30px;
    width: 30px;
    background: url(left-white-arrow.svg) no-repeat;
    background-size: 16px;
    background-position: 50% 50%;
    background-color: #b5b5b59c;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .home-slider-main .slick-next {
    right: 0;
    -webkit-transform: translateY(-50%)  scaleX(-1);
    -ms-transform: translateY(-50%) scaleX(-1);
    transform: translateY(-50%) scaleX(-1);
    bottom: auto;
    top: 50%;
  }
  .home-slider-main .slick-prev {
    left: 0; 
    right: auto;
    top: 50%;
    transform: translateY(-50%) ;
    -webkit-transform: translateY(-50%) ;
    -moz-transform: translateY(-50%) ;
    -ms-transform: translateY(-50%) ;
    -o-transform: translateY(-50%) ;
  }
  .order h2 {
    margin: 0 0 10px;
  }
  .order-detail {
    text-align: center;
  }
  .main-detail {
    margin: 0 0 30px;
  }
    .register-form .form-footer {
      padding-top: 0;
  }
  .facets__price {
    margin: 20px 0;
  } 
  .footer-subscribe-col {
    margin-top:0;
  }
    .size-table-wrapper {
    margin-top: 20px;
  }
    #recently-viewed-products .product{
    width: 50%;
  }
  .qv-price ins,.quickview_popup_data h2{
    font-size:20px;
  }
  .subscribe-popup p {
    margin: 0 auto 15px;
  }
  .subscribe-popup{
      max-width: calc(100% - 30px);
      width: 100%;
  }
  .cartDrawer .mini-cart-item:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .webi-mini-cart-footer {
    padding: 15px;
  } 
  .tab-sec .tab-title {
    margin-bottom: 15px;
  }
  .blog-card .blog-card-content{
    padding: 15px;
  }
  .product-card .product-card-inner{
    padding: 15px;
  }
  .header-style-one .mobile-menu {
    margin-left: 15px;
  }
  .size-popup{
    padding: 0px;
  }
  .size-tbl tr{
    border-top: 1px solid var(--border-color);
        padding: 10px 0 0;
  }
   .size-tbl tr:first-child{
        border-top: 1px solid var(--border-color);
  }
  .product .jdgm-rev-widg {
    padding: 0 15px 30px !important;
  }
  .pdp-right-inner{
    padding: 22px 0 0;
  }
      .site-footer .footer-widget p {
        padding: 15px 0 0;
    }
  .slick-lightbox .close svg {
    height: 20px;
    width: 20px;
  }
  .aboutpage-btm-sec .section-title p {
    margin-top: 15px;
  }
  .aboutpage-btm-sec{
    padding-top: 0px;
  }
  .cms-page h4{
    font-size: 20px;
  }
  .contact-left-inner ul li h4 {
    margin-bottom: 10px;
  }  
  .contact-left-inner ul li {
    margin-bottom: 20px;
  }
  .contact-form{
    padding: 15px;
  }
  .set {
    margin-bottom: 15px;
  }
  .article_categories {
    margin: 20px 0;
  }
  .pro-compare-section .pro-compare-wrap, .pro-wishlist-section .pro-wishlist-wrap {
    margin-bottom: 20px;
  }
     .cart-tble tr td::before{
      display: none;
  }
}
@media screen and (max-width: 575px) {
  .cart-page-section #cart-gift-wrap{
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
     .products-add-cart-sticky .sticky-pro-inner .sticky-btn span {
        display: none;
    }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn{
    padding:10px 15px;
  }
.products-add-cart-sticky .sticky-pro-inner .sticky-btn svg {
        width: 15px;
        height: 15px;
        margin-right: 0;
    }
      .tab-sec .tab-title {
        margin-bottom: 10px;
    }
  .quickview_popup_data .pdp-right-column .section-title{
    margin:0 0 12px;
  }
  .compare-data-label, .wishlist-data-label, .section-title {
        margin-bottom: 15px;
    }
  .footer-copyright p{
    font-size:13px;
  }
  .cartDrawer .related-cart-wrp h3{
    font-size:18px;
  }
  .free-shipping-txt {
    font-size: 14px;
}
  .btn-secondary {
    padding: 10px 13px;
  }  
  .play-btn svg{
    height: 35px;
    width: 35px;
  }
  .out-of-stock-form {
    padding: 50px 15px 20px;
  }
  .notify-txt{
    font-size: 19px;
  }
  .btn {
    font-size: 12px;
    padding: 10px 20px;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
  /********* HEADER START **********/
  .header-style-one .announce-row {
    padding: 0px;
    border-bottom: 0;
  }
  .announcebar {
    display: none;
  }
  .tab-sec .btn-secondary {
    font-size: 12px;
    padding: 7px 9px;
    min-width: 100px;
  }
  .tab-sec .btn-secondary svg,
  .more-pro-sec .left-side .btn-wrapper svg {
    display: none;
  }
  .testimonials-sec .left-side {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 20px;
  }
 
  .produdt-filter-cat {
    display: none;
}
  /***blog ***/
  .common-banner-section .section-title h2 {
    font-size: 24px;
  }
  .gradient-bg {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, var(--theme-color)), to(var(--second-color)));
    background: -o-linear-gradient(top, var(--theme-color) 10%, var(--second-color));
    background: linear-gradient(to bottom, var(--theme-color) 10%, var(--second-color));
    padding: 40px 0 0 0;
  }
  .pdp-slider-sec .slider-wrapper {
    display: block;
  }
  .pdp-slider-sec .product-main-slider {
    max-width: 100%;
    padding-right: 0;
  }
         .pdp-slider-sec .product-thumb-slider {
        max-width: 72%;
        margin: 0 auto;
        padding: 0;
    }
  .pdp-right-inner,
  .slider-wrapper {
    padding: 20px 0;
  }
      .pdp-right-inner {
        padding: 20px 0 0;
    }
  .recentlyview .section-title h2{
      font-size: 22px;
  }
  .recentlyview .section-title{
    margin-bottom: 15px;
  }
  .pdp-slider-sec .product-thumb-item {
    padding: 15px 6px 0;
  }
  .pdp-slider-sec .slick-arrow.slick-next {
    right: auto;
    left: -42px;
    top: calc(50% - 23px);
    bottom: auto;
    transform: scale(-1) translateY(-50%);
    -webkit-transform: scale(-1) translateY(-50%);
    -moz-transform: scale(-1) translateY(-50%);
    -ms-transform: scale(-1) translateY(-50%);
    -o-transform: scale(-1) translateY(-50%);
    -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
            transform-origin: unset;
  }
  .pdp-slider-sec .slick-arrow.slick-prev {
    left: auto;
    right: -42px;
    top: calc(50% + 6px);
    bottom: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
            transform-origin: unset;
  }
  .description-sec .desc-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .description-sec .img-wrapper {
    margin-bottom: 25px;
  }
  .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;
  }
  .section-title.d-flex {
    -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: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section-title.d-flex h2 {
    margin-bottom: 20px;
  }
  .blog-cat li:not(:last-of-type) {
    margin-right: 0;
  }
  .blog-cat li a {
     padding: 8px 11px;
    font-size: 12px;
  }
  #scroll {
    top: 50px;
  }
  .subscribe-popup{
    padding: 20px;
  }
  .site-footer .footer-col {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .site-footer .footer-widget h4{
    padding: 20px 0 15px;
  }
    #recently-viewed-products .product{
    width: 100%;
  }
  .product-notification{
    width: 300px;
    left: 10px;
  }
}
@media screen and (max-width: 420px) {
  .header-style-one .menu-right .currency{
    display: none;
  }
  .backbtn .btn-secondary {
    width: 100%;
  }
  .cartb.product-form__submit {
    margin: 0;
}
    /*====== Shopify css ======*/
    .acc-order-button a,
    .update-add-button button,
    .mainwish .wish-btn {
      margin-bottom: 10px;
    }
    .tab-sec .btn-secondary {
      margin-bottom: 10px;
    }
    .recover-password .btn-secondary {
      min-width: 105px;
    }
    .subscribe-popup h2 {
        font-size: 22px;
        margin-top: 20px;
    }
}
@media screen and (max-width: 370px) {
  .btn-flex a {
    min-width: 117px;
  }
  .testi-card-inner {
    display: block;
  }
  .testi-card-inner .img-wrapper {
    padding-bottom: 0;
    margin: auto;
    padding-bottom: 15px;
  }
  .post-lbl {
    margin: 10px 0 0;
    width: 100%;
  }
  .acc-back-btn-wrp button {
    min-width: 108px;
  }
  .checkout-page .forgot-pass {
    font-size: 11px;
  }
  .btn-flex a {
    min-width: 117px;
  }
  .center-descrp {
    display: none;
  }
  .post-lbl {
    margin: 10px 0 0;
    width: 100%;
  }
}
.product-form__error-message-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin: 0 0 10px;
    color: red;
}
/* Burnett Coffee – Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  background: #1E3832; /* dark background */
}

::-webkit-scrollbar-track {
  background: #1E3832; /* same as site background */
}

::-webkit-scrollbar-thumb {
  background-color: #E54E23; /* bold primary thumb */
  border-radius: 4px;
  border: 2px solid #1E3832; /* outline using background to inset */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #7FAAA0; /* subtle shift on hover */
}

/* Firefox support */
html {
  scrollbar-width: thin;
  scrollbar-color: #E54E23 #1E3832;
}
@media (max-width: 768px) {
  .home-section {
    min-height: 400px !important;
  }
}

/* Target the password input within the modal */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"] {
    background-color: #f4f4f4;  /* Light gray background */
    color: #333;  /* Dark text color */
    border: 1px solid #ccc;  /* Light border */
    padding: 10px;  /* Some padding for spacing */
    border-radius: 4px;  /* Rounded corners */
}

/* Focus state for the password input */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]:focus {
    outline: none;  /* Removes default focus outline */
    border-color: #e54e23;  /* Orange border color on focus */
    box-shadow: 0 0 5px rgba(229, 78, 35, 0.5);  /* Optional: orange glow */
}

/* Target the placeholder text color */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]::placeholder {
    color: #e54e23;  /* Light gray color for the placeholder text */
}

/* Ensure typed text remains visible */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]:not(:placeholder-shown) {
    color: #e54e23;  /* Ensure text is visible once typed */
}

/* Fix for auto-filled password text being invisible */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]::-webkit-input-placeholder {
    color: #e54e32 !important;  /* Light gray placeholder color */
}

/* Ensures auto-filled password text is visible */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]:autofill {
    color: #e54e23 !important;  /* Ensures auto-filled text is visible */
    background-color: #f4f4f4 !important;  /* Ensures background stays consistent */
}

/* Firefox-specific autofill fix */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]:moz-placeholder {
    color: #e54e23 !important;  /* Light gray color for Firefox placeholder */
}

/* Ensures auto-filled password text is visible in Firefox */
#shopify-section-main-password-header > div > div > password-modal > details input[type="password"]:moz-autofill {
    color: #e54e23 !important;  /* Ensures text is visible in Firefox */
    background-color: #f4f4f4 !important;  /* Ensures background stays consistent */