

*,
:after,
:before {
  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%;
   overflow-y: auto;
  scrollbar-width: thin;
}

body::-webkit-scrollbar {
  display: none;
}
body::-moz-scrollbar {
  display: none;
}
svg,
img {
  max-width: 100%;
  display: block;
}
a,
.btn,
button {
  text-decoration: none;
  outline: none;
  color: inherit;
  transition: all 0.4s ease-in-out 0s;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  outline: none;
  font-family: var(--second-font);
}
.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}
::-webkit-input-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;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  list-style: none;
  vertical-align: baseline;
}
body {
  font: var(--common-text);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: var(--black);
  color: var(--white);
}
p,
li,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--common-text);
 
}
p {
  color: var(--white);
}
h1,
.h1 {
  font: var(--h1);
}
h2,
.h2 {
  font: var(--h2);
}
h3,
.h3 {
  font: var(--h3);
}
h4,
.h4 {
  font: var(--h4);
}
h5,
.h5 {
  font: var(--h5);
}
h6,
.h6 {
  font: var(--h6);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
b {
  font-weight: 700;
  display: inline-block;
}
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
.product-title b {
  color: var(--white);
  display: inline;
  font-weight: 700;
}
p:not(:last-of-type) {
  margin-bottom: 15px;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.container-fluid {
  margin: 0 auto;
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -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: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.align-items-start {
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-items-end {
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-items-center {
  -ms-flex-align: center;
  align-items: center;
}
.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.justify-content-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.row-reverse {
  flex-direction: row-reverse;
}
.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.desk-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  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 {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    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 {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    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 {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    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 {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    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 {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    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%;
  }
}
.offset-right {
  margin-right: calc((100% - 900px) / 2);
  margin-left: 0;
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: solid 1px var(--black);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  min-width: 50px;
  line-height: 1;
  outline: none;
  position: relative;
  text-align: left !important;
  transition: all 0.4s ease-in-out 0s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 5px 25px 5px 10px;
  width: 100%;
  border: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  background: url(angle-down-small-white.svg);
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  transition: transform 0.4s linear;
  -webkit-appearance: none;
  appearance: none;
}
.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: #ccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.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 {
  color: var(--black);
  background-color: var(--white);
  box-shadow: 0 0 0 1px #444444b3;
  box-sizing: border-box;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  min-width: 110px;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 120%;
  right: 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;
  transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  z-index: 2;
  -moz-transform: scale(0.75) translateY(-21px);
  -o-transform: scale(0.75) translateY(-21px);
  -moz-transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  -ms-transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  -o-transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  outline: none;
  text-align: left;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  margin: 0 !important;
}
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #eae9e9;
}
.nice-select .option.selected {
  font-weight: 700;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}
.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}
.btn {
  text-align: center;
  padding: 12px 30px;
  color: var(--white);
  background-color: var(--theme-color);
  appearance: none;
  outline: none;
  border: 1px solid var(--theme-color);
  line-height: 1;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn:before,
.btn-secondary:before,
.btn:after,
.btn-secondary:after,
.pdp-right-column .qnty-btn-wrp .buy-btn button:before,
.pdp-right-column .qnty-btn-wrp .buy-btn button:after {
  content: "";
  background: var(--white);
  height: 52%;
  width: 0;
  z-index: -1;
  position: absolute;
  transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-secondary:before,
.btn-secondary:after,
.pdp-right-column .qnty-btn-wrp .buy-btn button:before,
.pdp-right-column .qnty-btn-wrp .buy-btn button:after {
  background: var(--theme-color);
}
.btn:before,
.btn-secondary:before,
.pdp-right-column .qnty-btn-wrp .buy-btn button:before {
  top: 0;
  left: 0;
  right: auto;
}
.btn:after,
.btn-secondary:after,
.pdp-right-column .qnty-btn-wrp .buy-btn button:after {
  bottom: 0;
  right: 0;
  left: auto;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary:active:before,
.pdp-right-column .qnty-btn-wrp .buy-btn button:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}
.btn:hover:after,
.btn:focus:after,
.btn:active:after,
.btn-secondary:hover:after,
.btn-secondary:focus:after,
.btn-secondary:active:after,
.pdp-right-column .qnty-btn-wrp .buy-btn button:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: var(--theme-color);
}
.btn-secondary svg,
.btn svg {
  margin-right: 10px;
  height: 15px;
  width: 15px;
}
.btn svg path {
  fill: var(--white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.btn:hover svg path,
.btn:focus svg path,
.btn:active svg path {
  fill: var(--theme-color);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 11px 30px;
  border: 1px solid var(--second-color);
  color: var(--white);
  background: var(--second-color);
  justify-content: center;
  -webkit-justify-content: center;
  line-height: 1;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.btn-secondary svg path {
  fill: var(--white);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.btn-transparent {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.btn-transparent svg path {
  fill: var(--white);
}
.btn-transparent:hover svg path,
.btn-transparent:focus svg path,
.btn-transparent:active svg path {
  fill: var(--white);
}
.btn-white {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--theme-color);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  border: 1px solid var(--theme-color);
  background: transparent;
  color: var(--white);
}
.btn-white svg path {
  fill: var(--theme-color);
}
.btn-white:hover svg path,
.btn-white:focus svg path,
.btn-white:active svg path {
  fill: var(--white);
}
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="button"]),
input:not([type="radio"]),
select,
textarea {
  position: relative;
  border: 1px solid var(--border-color);
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
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: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-group .nice-select .list,
.form-group .form-control {
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
sup {
  top: -0.5em;
}
sub,
sup {
  position: relative;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
}
.form-group label sup {
  color: red;
  font-size: 10px;
  line-height: 0;
  margin-right: 3px;
}
.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox-custom label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
  padding: 0 0 0 30px;
  color: var(--black);
}
.checkbox-custom label:before {
  content: "";
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--black);
  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(--second-color);
  border-color: var(--second-color);
}
.checkbox-custom input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0px 1px 1px 0;
  transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}
.checkbox-custom label a {
  text-decoration: underline;
  font-weight: 600;
}
.radio-group input[type="radio"] {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.radio-group label {
  cursor: pointer;
  position: relative;
  font-size: 12px;
  padding-left: 24px;
  color: var(--second-color);
  margin: 0;
  vertical-align: bottom;
}
.radio-group label:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 2px solid var(--second-color);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 0.4s ease;
  -webkit-transition: border-color 0.4s ease;
  -moz-transition: border-color 0.4s ease;
  -ms-transition: border-color 0.4s ease;
  -o-transition: border-color 0.4s ease;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.radio-group label:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  top: 50%;
  left: 1px;
  right: auto;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  -o-transform: translateY(-50%) scale(0);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.radio-group input[type="radio"]:checked + label:before {
  border-color: var(--second-color);
}
.radio-group input[type="radio"]:checked + label:after {
  transform: translateY(-50%) scale(0.55);
  -webkit-transform: translateY(-50%) scale(0.55);
  -moz-transform: translateY(-50%) scale(0.55);
  -ms-transform: translateY(-50%) scale(0.55);
  -o-transform: translateY(-50%) scale(0.55);
}
body.active-menu,
body.no_scroll {
  overflow: hidden;
  position: relative;
}
.right-gliter {
  bottom: 0;
  right: 0;
}
.gliter-img {
  position: absolute;
  z-index: -1;
}
.pt {
  padding-top: 70px;
}
.pb {
  padding-bottom: 70px;
}
.section-title {
  margin-bottom: 26px;
}
.section-title h2 {
  position: relative;
  z-index: 1;
}
.section-title.text-center p {
  margin-top: 14px;
}
.subtitle {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}
.img-wrapper {
  position: relative;
  width: 100%;
  display: block;
}
.img-wrapper img,
.img-wrapper svg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: scale-down;
  object-position: center;
}
.flex-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.flex-slider .flex-card,
.blog-grid-sec .flex-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.flex-slider .flex-card-inner,
.blog-grid-sec .flex-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.arrow-header {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
}
.arrow-header .arrow-wrapper {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  gap: 15px;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 35px;
  height: 35px;
  background: var(--theme-color);
  border: 1px solid var(--theme-color);
  z-index: 2;
  outline: none;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev:before,
.swiper-button-next:before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(swiper-arrow.svg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.swiper-button-next:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--border-color);
  border: 1px solid var(--white);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.site-header {
  background-color: var(--black);
  position: relative;
  z-index: 3;
}
.site-header .annoucebar-left {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 15px;
}
.site-header .menu-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.site-header .annoucebar-left li a {
  display: block;
}
.site-header .annoucebar-left li a svg {
  height: 18px;
  width: 18px;
}
.site-header .annoucebar-left li a svg path {
  fill: var(--white);
}
.site-header .annoucebar-center p a {
  color: var(--theme-color);
  text-decoration: underline;
  line-height: 1;
  margin-left: 5px;
  font-family: var(--first-font);
}
.site-header .annoucebar-center,
.site-header .announcebar .annoucebar-right {
  gap: 10px;
}
.nice-select-arrow:after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 1;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(225deg);
  transition: all ease-in-out 0.5s;
  border-top: 1px solid;
  border-left: 1px solid;
}
.site-header .nice-select,
.products-add-cart-sticky .nice-select {
  background: none;
}
.site-header .nice-select {
  padding: 5px 18px 5px 10px;
}
.currency select option {
  color: #000;
}
.currency select {
  padding: 5px 18px 5px 10px;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
}
.languages,
.currency {
  position: relative;
}
.disclosure__list-wrapper {
  position: absolute;
  top: 27px;
  right: 0;
  left: auto;
  min-width: 100px;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  margin: 0;
  opacity: 1;
  pointer-events: auto;
  background-color: var(--white);
  border: 1px solid var(--black);
  transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
}
.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;
  color: var(--black);
}
.disclosure__list-wrapper .disclosure__item a {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 10px;
  width: 100%;
  text-align: start;
}
.disclosure__list-wrapper .disclosure__item a.disclosure__link--active {
  font-weight: 700;
  background-color: #eae9e9;
}
.disclosure__list-wrapper .disclosure__item a:hover {
  background-color: #eae9e9;
}
.site-header .announcebar {
  background-color: var(--third-color);
  padding: 10px 0;
  text-align: center;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.site-header .announcebar p {
  line-height: 1;
  font-family: var(--first-font);
}
.site-header .main-navigationbar .logo-col a {
  display: block;
}
.main-navigationbar.sticky-header.fixed {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  position: fixed;
  width: auto;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  border-bottom: 1px solid var(--border-color);
}
.site-header .main-navigationbar .main-nav > li > a {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  padding: 0;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  font-weight: 500;
  align-items: center;
  -webkit-align-items: center;
  font-size: 14px;
  text-transform: capitalize;
}
.site-header .menu-items-col .main-nav > li > a:before,
.site-header .menu-dropdown ul > li > a:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: -3px;
  right: 0;
  background: var(--theme-color);
  margin: 0 auto;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.site-header .menu-items-col .main-nav > li > a:hover:before,
.site-header .menu-dropdown ul > li > a:hover:before {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.site-header .main-navigationbar .main-nav > .menu-lnk.has-item > a:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 16px;
  right: 0;
  top: 4px;
  padding: 6px 0;
  background: url(angle-down-small-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.site-header
  .main-menu
  .main-menu-items-col
  .main-nav
  > li.has-item.menu_active
  > a:after,
.site-header .main-menu .main-menu-items-col .drop.menu_active > a:after,
.site-header .main-navigationbar .main-nav > li.has-item.menu_active > a:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.site-header
  .main-navigationbar
  .main-menu-items-col
  .main-nav
  > li.menu-lnk.has-item
  > a {
  padding-right: 20px;
}
.site-header .main-navigationbar .menu-items-col .main-nav {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.site-header .main-navigationbar {
  padding: 15px 0;
  background-color: var(--black);
}
.site-header .main-navigationbar .menu-items-col .main-nav > li {
  padding: 10px 0;
}
.site-header
  .main-navigationbar
  .menu-items-col
  .main-nav
  > li:not(:last-of-type) {
  padding-right: 20px;
}
.site-header .main-navigationbar .menu-items-col .main-nav .has-item > a {
  padding-right: 20px;
}
.site-header .menu-right-item .search-header .forms-input {
  position: relative;
  z-index: 1;
}
.site-header .menu-right-item .search-header input {
  border: 0;
  background-color: var(--grey-color);
  padding: 10px 35px 10px 10px;
}
.site-header .menu-right-item .search-header .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: none;
}
.site-header .menu-right-item .search-header .search-btn svg {
  height: 15px;
  width: 15px;
}
.site-header .search-form-wrapper .form-inputs svg {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.site-header .search-form-wrapper .form-inputs svg path {
  fill: var(--black);
}
.site-header .search-form-wrapper .form-control {
  border-color: var(--theme-color);
  padding: 13px 87px 13px 40px;
  border: none;
  background: var(--third-color);
}
.site-header .input-search-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.site-header .main-navigationbar .menu-items-col {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .input-search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  padding: 10px 20px;
  height: 100%;
  background: var(--theme-color);
  border: none;
  color: var(--white);
}
.site-header .menu-right-item {
  gap: 15px;
}
.site-header .menu-right-item li > a {
  position: relative;
}
.site-header .menu-right-item li {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
}
.site-header .count {
  position: absolute;
  top: -7px;
  right: -6px;
  height: 15px;
  width: 15px;
  background: var(--theme-color);
  color: var(--white);
  font-size: 10px;
  border-radius: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: 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;
  line-height: 1;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.site-header .cart-icon {
  position: relative;
}
.site-header .menu-right-item li.mobile-menu {
  display: none;
}
.site-header .menu-right-item > li > a svg {
  width: 20px;
  height: 20px;
}
.site-header .mobile-menu {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 20px;
  height: 25px;
}
.site-header .mobile-menu .mobile-menu-button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  padding: 0;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: transparent;
  border: none;
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: tra nslate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translateY(-50%);
}
.site-header .mobile-menu .mobile-menu-button div {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--white);
}
.site-header .search-form-wrapper .form-control::placeholder {
  color: var(--black);
}
.site-header .menu-right .cart-header .cart-price {
  margin-left: 15px;
}
.site-header .megamenu-card .megamenu-image {
  position: relative;
  background-color: var(--third-color);
}
.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;
  object-fit: cover;
  object-position: center;
}
.site-header .megamenu-card .megamenu-content span {
  font-size: 18px;
  line-height: 1;
}
.main-menu-items-col .main-nav > li.menu-lnk .menu-dropdown,
.site-header .main-navigationbar .main-nav > li.menu-lnk .menu-dropdown {
  position: absolute;
  top: 100%;
  background-color: var(--black);
  color: var(--white);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  padding: 15px;
  max-width: 150px;
  z-index: 2;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 10px 40px #0000000d;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  min-width: 200px;
  overflow: hidden;
}
.menu-items-col .main-nav > li.menu-lnk .menu-dropdown li {
  text-transform: capitalize;
}
.site-header .menu-dropdown ul > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.site-header .menu-dropdown ul > li span {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
.site-header .main-navigationbar .main-nav > li .menu-dropdown.open_menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  -webkit-transform: scaleY(100%);
  -moz-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  -o-transform: scaleY(100%);
}
.site-header .menu-dropdown ul > li > a:not(.img-col) {
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  padding: 0;
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.site-header .main-navigationbar .main-nav > li.menu-lnk .mega-menu {
  max-width: 100%;
  padding: 15px 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
}
.mobile-menu-wrapper {
  position: fixed;
  z-index: 5;
  background: var(--white);
  top: 0;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translate(100%, 0px);
  -moz-transform: translate(100%, 0px);
  -ms-transform: translate(100%, 0px);
  -o-transform: translate(100%, 0px);
  transform: translate(100%);
  right: 0;
  display: block;
  width: 100%;
  max-width: 400px;
}
.mobile-menu-wrapper.active-menu {
  transform: translate(0);
}
.mobile-menu-wrapper .menu-close-icon {
  text-align: right;
  padding: 15px 20px;
  background: var(--theme-color);
}
.mobile-menu-wrapper .menu-close-icon svg path {
  fill: var(--white);
}
.mobile-menu-wrapper .mobile-menu-bar > ul {
  height: calc(100vh - 48px);
  overflow: auto;
  padding: 10px 20px;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  margin-top: -35px;
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li a {
  font-size: 18px;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li:not(:first-child) {
  margin-top: 30px;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li.is-open
  > a.acnav-label
  .menu-open-arrow {
  display: none;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li.is-open
  > a.acnav-label
  .close-menu-ioc {
  display: block;
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li a .close-menu-ioc {
  display: none;
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li .acnav-list {
  margin: 12px 0;
  display: none;
  padding: 0;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li
  .menu-h-drop.is-open
  .acnav-label
  .close-menu-ioc {
  display: block;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li
  .menu-h-drop.is-open
  .acnav-label
  .menu-open-arrow {
  display: none;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li
  .mobile_menu_inner
  .menu-h-link
  ul
  li:not(:last-of-type) {
  margin-bottom: 8px;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  > ul
  > li
  .mobile_menu_inner
  .menu-h-link
  ul
  li
  a {
  font-size: 14px;
  line-height: 18px;
  text-transform: lowercase;
}
.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: 15px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children > ul {
  margin: 12px 0 0;
}
.mobile-menu-wrapper
  .mobile-menu-bar
  .has-children
  > ul
  > li:not(:last-of-type) {
  margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children > ul > li > a {
  font-size: 14px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children > ul > li > a.acnav-label {
  font-weight: 600;
}
.search-popup .common-close:hover:after,
.search-popup .common-close:hover:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0);
}
.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  width: 25px;
  height: 25px;
}
.search-popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 50px 15px;
  background-color: var(--white);
  color: var(--black);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  z-index: 4;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.search-popup .search-top {
  display: block;
  transition: all 0.5s ease;
  transform: translateY(-30px);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.search-popup.active .search-top {
  transform: translateY(0);
}
.search-popup .search-top .section-title {
  text-align: center;
}
.search-popup .search-top .section-title h2 {
  font: var(--h3);
}
.search-popup .search-form .search-input {
  border: none;
  border-bottom: 2px solid var(--border-color);
  padding: 12px 35px 12px 0;
  color: var(--black);
}
.search-popup .search-form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-color: transparent;
  border: none;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.search-popup .predictive-search-bottom button {
  position: relative !important;
}
.search-popup .result-prod {
  margin-top: 20px;
}
.search-popup .search-form .search-form-inner {
  position: relative;
}
.search-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.search-popup .search-form .search-input::placeholder {
  color: var(--black);
}
.search-popup .result-prod p {
  color: var(--black);
}
.subscribe-overlay {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 3;
  background: #000000b3;
  visibility: hidden;
  opacity: 1;
}
.subscribe-overlay.open {
  opacity: 1;
  visibility: visible;
}
.subscribe-popup {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 900px;
  overflow-y: auto;
  max-height: 90vh;
  width: 100%;
  margin: 0 auto;
  background: var(--second-color);
  color: var(--white);
  z-index: 4;
  padding: 15px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.subscribe-popup .subscribe-right-col .section-title .subtitle {
  letter-spacing: 1px;
}
.subscribe-popup .subscribe-right-col .logo-col {
  max-width: 70px;
  width: 100%;
  margin-bottom: 15px;
}
.subscribe-popup .subscribe-right-col .logo-col img {
  height: 100%;
  width: 100%;
}
.subscribe-popup .section-title h2 {
  font-size: 26px;
}
.subscribe-popup .subscribe-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.subscribe-popup .subscribe-right-col p {
  margin-bottom: 40px;
}
.subscribe-popup .subscriber-form {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  gap: 15px;
}
.subscribe-popup .subscriber-form input {
  border: 0;
  border-bottom: 1px solid var(--theme-color);
  display: inline-flex;
  padding: 12px 0;
}
.subscribe-popup .subscriber-form .btn {
  width: 100%;
  letter-spacing: 1px;
  padding: 11px 20px;
}
.subscribe-popup .subscribe-left-col {
  position: relative;
  padding-top: 100%;
  width: 100%;
  height: 100%;
}
.subscribe-popup .subscribe-left-col img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subscribe-popup .common-close {
  position: absolute;
  top: 11px;
  right: 11px;
  padding: 0;
  background: transparent;
  border: none;
  width: 22px;
  height: 22px;
}
.subscribe-popup .common-close:before,
.subscribe-popup .common-close:after,
.quick-view-popup .common-close:before,
.quick-view-popup .common-close:after {
  background-color: var(--white);
}
.overlay {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.site-header .menu-right .cartDrawer {
  padding: 0;
}
.overlay.active,
.cartopen .overlay:after,
.active-menu .overlay:after,
.subscribe-overlay.open {
  content: " ";
  z-index: 4;
  background: #000000b3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}
.cartDrawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  background: var(--white);
  color: var(--black);
  width: 410px;
  height: 100%;
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translate(100%);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.cartopen .cartdrawer {
  opacity: 1;
  visibility: visible;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translate(0);
}
body.cartOpen {
  overflow: hidden;
  position: relative;
}
.site-header .mini-cart-footer-icons svg,
.coupon-popup .coupon-body .coupon-txt svg {
  width: 30px;
  height: 30px;
}
.coupon-code .apply-coupon-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.cartDrawer .mini-cart-footer-icons .mini-cart-footer-icons:hover svg {
  -webkit-animation-name: beat;
  animation-name: beat;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes beat {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.site-header .cart-header .coupon-popup .close-coupon svg,
.site-header .cart-header .gift-popup .close-gift svg {
  height: 15px;
  width: 15px;
}
.cartDrawer .mini-cart-has-item .free_shipping_bar {
  margin-bottom: 20px;
}
.cartDrawer .free_shipping_txt {
  font-size: 16px;
  line-height: 22px;
}
.cartDrawer .free_shipping_txt .progress_bar_design {
  margin-top: 20px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  width: 100%;
  height: 6px;
  background-color: #e5e5e5;
}
.bar_design_icon {
  width: 26px;
  height: 26px;
  border: 1px solid #ffbc11;
  border-radius: 30px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
}
.cartDrawer .free_shipping_txt .progress_bar_design .bar_design_icon svg {
  width: 12px;
  height: 12px;
}
.site-header .menu-right li svg {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transform: rotateY(0);
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
}
.mini-cart-title a.mini-cart-pro-title {
  font-size: 16px;
  line-height: 1.1;
  max-width: 180px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.site-header .cartDrawer .mini-cart-body .mini-cart-item .mini-cart-title {
  flex-wrap: wrap;
  color: var(--black);
}
.site-header
  .cartDrawer
  .mini-cart-body
  .mini-cart-item
  .mini-cart-title
  a.remove_item
  svg
  path {
  fill: var(--red);
}

.qty-spinner {
  border: 1px solid var(--black);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  max-width: 100px;
  height: 35px;
  width: 100%;
}
.qty-spinner button {
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}
.qty-spinner button svg,
.site-header .cartDrawer .qty-spinner button svg {
  margin: auto;
  height: 10px;
  width: 10px;
  pointer-events: none;
}
.qty-spinner button svg path,
.site-header .cartDrawer .qty-spinner button svg path {
  fill: var(--black);
}
.qty-spinner input,
.site-header .cartDrawer .qty-spinner input {
  border: 0;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  width: 30px;
  color: var(--black);
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}
del {
  color: var(--theme-color);
  opacity: 0.6;
  text-decoration: line-through;
}
.price {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  font-size: 20px;
  margin-bottom: 15px;
}
.price del {
  font-weight: 500;
  margin-left: 8px;
  font-size: 16px;
}
.price ins.text-danger {
  color: red;
}
.cartDrawer .mini-cart-details .price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 0;
  font-size: 16px;
}
.cartDrawer .pvarprice {
  margin-bottom: 12px;
}
.cartDrawer .pvarprice .price-lable {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  margin-right: 5px;
}
.cartDrawer .price del {
  margin-left: 10px;
  color: var(--second-color);
}
.cartDrawer .price ins {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.cartDrawer .mini-cart-footer {
  position: relative;
  box-shadow: 0 0 8px #0000004d;
}
.cartDrawer .mini-cart-footer .cart-footer-top {
  padding: 15px;
}
.minicart-btn-wrapper {
  width: 100%;
}
.mini-total-lbl {
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
  line-height: 1;
  font-size: 20px;
}
.cartDrawer .mini-cart-footer .mini-cart-footer-total-row .mini-total-iteam p,
.cartDrawer .mini-cart-footer .mini-cart-footer-total-row .mini-Subtotal p {
  font-size: 16px;
  color: var(--black);
}
.cartDrawer .minicart-btn-wrapper .cart-bottom-btn {
  padding: 15px 35px;
  width: 50%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}
.cartDrawer .minicart-btn-wrapper .view-cart-btn {
  background: #3d3d3d;
}
.cartDrawer .minicart-btn-wrapper .Check-btn {
  background-color: var(--black);
}
.cartDrawer .mini-cart-footer-total-row {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  display: -moz-box;
  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-icons {
  margin-bottom: 15px;
}
.cartDrawer .mini-cart-footer-icons .footer-bottom-icon {
  width: auto;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 12px 35px;
  border: none;
  width: 47%;
  background-color: var(--grey-color);
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.cartDrawer .mini-cart-footer-total-row div.mini-Subtotal {
  text-align: right;
}
.cartDrawer .mini-cart-footer .u-save {
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  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: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  padding: 12px 30px;
}
.cartDrawer .mini-cart-footer .link-btn {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.link-btn svg {
  fill: var(--black);
  margin-left: 10px;
  width: 20px;
  height: auto;
}
.cartDrawer .remove_item svg {
  height: 15px;
  width: 15px;
}
.cartDrawer .emptyCart {
  padding: 50px 0 0;
}
.cartDrawer .link-btn:before {
  display: none;
}
.cartopen header:after,
.active-menu header:after,
.filter-open header:after,
.cartOpen header .main-navigationbar.fixed:after,
.active-menu header .main-navigationbar.fixed:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background: #000000b3;
}
.cartOpen header .main-navigationbar.fixed,
.active-menu header .main-navigationbar.fixed {
  border-bottom: none;
}
.cartOpen .header-style-nine:after,
.active-menu .header-style-nine:after,
.filter-open .header-style-nine:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
}
.coupon-popup,
.gift-popup {
  position: fixed;
  right: 0;
  bottom: 0;
  box-shadow: 0 4px 8px #000;
  z-index: 5;
  background: var(--white);
  width: 410px;
  height: auto;
  -ms-transform: translateY(120%);
  -webkit-transform: translatey(120%);
  transform: translateY(120%);
  display: flex;
  display: -webkit-box;
  display: -moz-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.4s all;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.coupon-popup.active,
.gift-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
}
.coupon-popup .coupon-txt {
  gap: 10px;
  margin-bottom: 12px;
  color: var(--black);
}
.coupon-popup .close-coupon,
.gift-popup .close-gift {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.coupon-popup .close-coupon svg path,
.close-gift svg path {
  fill: var(--black);
}
.coupon-code {
  position: relative;
}
.coupon-code input {
  height: 45px;
  width: 100%;
  border-color: var(--border-color);
  color: var(--black);
  padding: 14px 115px 14px 15px;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.coupon-code input::placeholder {
  color: var(--black);
}
.cartDrawer .free_shipping_txt .progress_bar_design .bar_design_icon svg path {
  fill: #ffbc11;
}
.coupon-code .apply-coupan-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.coupon-code .apply-coupan-btn a {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  padding: 10px 30px;
  background: var(--black);
  color: var(--white);
  height: 100%;
  width: auto;
  border-radius: 0;
  -webkit-border-radius: 0 0px 0px 0;
  -moz-border-radius: 0 0px 0px 0;
  -ms-border-radius: 0 0px 0px 0;
  -o-border-radius: 0 0px 0px 0;
}
.quick-view-popup.active {
  opacity: 1;
  visibility: visible;
}
.quick-view-popup {
  position: fixed;
  background: #000000bf;
  height: 100%;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
  padding: 0 15px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.quick-view-wrapper {
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  background-color: var(--second-color);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.quick-view-popup.active .quick-view-wrapper {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.quick-view-inner .color-variant-swatch {
  margin-bottom: 15px;
}
.quick-view-inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  position: relative;
}
.quick-view-right-inner {
  width: 100%;
  padding: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.quick-view-right .quickview-card {
  padding: 0;
}
.quick-view-right .quickview-card .quickview-card-image {
  position: relative;
  padding-top: 100%;
}
.quick-view-right .quickview-card .quickview-card-inner {
  background-color: var(--third-color);
}
.quick-view-right .quickview-card .quickview-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
}
.quick-view-left-inner {
  padding: 25px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.quick-view-left-inner .section-title {
  text-align: left;
  margin-bottom: 15px;
}
.quick-view-left-inner .section-title h3 a {
  font-family: var(--first-font);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quick-view-left .price,
.quick-view-left .color-swatch-variants {
  margin-bottom: 15px;
}
.color-swatch-variants input[type="radio"] {
  display: none;
}
.quick-view-left .color-swatch-variants span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  width: 100%;
  line-height: 1;
  font-size: 16px;
}
.quick-view-wrapper::-webkit-scrollbar {
  width: 6px;
}
.quick-view-wrapper::-webkit-scrollbar-track {
  background: var(--white);
}
.quick-view-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.pro-color:not(:last-of-type) {
  margin-right: 8px;
}
.pro-color.active label:after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  outline: 1px solid var(--black);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.quick-view-left .price ins {
  font-size: 22px;
}
.quick-view-left .quick-product-dis p {
  margin-bottom: 15px;
}
.quick-view-left .quick-product-dis p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quick-view-left .view-more {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 600;
}
.quick-view-left .qnty-btn-wrp {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.quick-view-left .qnty-btn-wrp .quantity-select {
  max-width: 90px;
  width: 100%;
  background-color: var(--white);
}
.quick-view-left .qnty-btn-wrp .pro-cart-btn .btn {
  width: 100%;
}
.quick-view-left .qnty-btn-wrp .pro-cart-btn {
  flex: 1;
  width: 100%;
  height: 100%;
}
.quick-view-popup .quick-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 15px;
  background: var(--theme-color);
  border: none;
  z-index: 1;
  width: 22px;
  height: 22px;
}
.quick-view-popup .quick-close-btn svg {
  width: 20px;
  height: 20px;
}
.quick-view-left .qty-spinner {
  height: 41px;
}
.quick-view-right .arrow-wrapper {
  position: absolute;
  z-index: 5;
  padding: 0 16px;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  transform: translate3d(0, -50%, 0);
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -ms-transform: translate3d(0, -50%, 0);
  -o-transform: translate3d(0, -50%, 0);
}
.quick-view-right .arrow-wrapper .swiper-button-prev,
.quick-view-right .arrow-wrapper .swiper-button-next {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  width: 30px;
  height: 30px;
}
.quick-view-right .arrow-wrapper .swiper-button-next {
  transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
}
.quick-view-right-inner:hover .swiper-button-prev,
.quick-view-right-inner:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.quick-view-right-inner .swiper-button-prev {
  left: 10px;
  opacity: 0;
  visibility: hidden;
}
.quick-view-right-inner .swiper-button-next {
  right: 10px;
  opacity: 0;
  visibility: hidden;
}
.quick-view-right-inner:hover .swiper-button-next,
.quick-view-right-inner:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.common-close {
  position: relative;
}
.common-close:after,
.common-close:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  top: 50%;
  left: calc(50% - 10px);
  margin-top: -1px;
  background-color: var(--black);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.common-close:before {
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.common-close:hover:after,
.common-close:hover:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0);
}
.common-close:after {
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.scroll-top {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.scroll-progress .scroll-text {
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  margin-bottom: 15px;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
.scroll-progress .scroll-line {
  width: 2px;
  height: 60px;
  position: relative;
  background-color: var(--black);
  color: inherit;
  display: block;
}
.scroll-progress .scroll-point {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 9px;
  background-color: var(--black);
  top: -4px;
  left: -4px;
}
.scroll-progress {
  position: fixed;
  top: 40%;
  right: 10px;
  z-index: 2;
  opacity: 0;
  background-color: var(--white);
  padding: 15px 0;
  border-radius: 15px;
  box-shadow: 0 5px 30px #00000042;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.scroll-progress.visible {
  opacity: 1;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: var(--third-color);
  color: var(--white);
  padding: 15px 0;
  transition: all 0.4s ease-in-out 0s;
}
.cokkie-popup-title p {
  letter-spacing: 0.2px;
}
.cokkie-popup-title h2 {
  margin-bottom: 10px;
  font: var(--h5);
}
.cookie-popup .btn-secondary:before,
.cookie-popup .btn-secondary:after {
  background-color: var(--white);
}
.cookie-popup .btn-secondary:hover {
  color: var(--theme-color);
}
.product-suggest .column-right {
  color: var(--black);
}
.mobile-menu-wrapper .mobile-item {
  margin-bottom: 10px;
}
.mobile-sticky-wrp {
  box-shadow: 0 5px 30px #00000042;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  padding: 8px 40px;
  gap: 15px;
}
.mobile-sticky-wrp svg {
  height: 22px;
  width: 22px;
  margin: 0 auto 8px;
}
.mobile-stickybar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.mobile-sticky-wrp ul li a {
  text-align: center;
}
.mobile-stickybar.show {
  visibility: visible;
  opacity: 1;
}
.mobile-sticky-wrp li {
  line-height: 1;
}
.mobile-sticky-wrp span {
  display: block;
  line-height: 1;
}
.site-footer {
  position: relative;
  z-index: 1;
  margin: 70px 0 0;
}
.design-7 {
  top: 0;
  left: 0;
  height: 100%;
}
.site-footer .container-offset {
  background-color: var(--second-color);
  color: var(--white);
}
.site-footer .footer-col {
  width: 100%;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}
.site-footer .footer-subscribe-col {
  max-width: 450px;
  width: 100%;
}
.site-footer .footer-col:not(:first-child) {
  padding-left: 40px;
}
.site-footer .footer-widget h2 {
  padding: 0 0 15px;
  font: var(--h5);
  text-transform: capitalize;
  position: relative;
}
.site-footer .footer-link .footer-widget ul li a {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.site-footer .footer-link .footer-widget > ul > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.site-footer .footer-link .footer-widget > ul > li > a:hover {
  transform: translate(10px);
}
.site-footer .subscribe-form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-sub {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer .newsletter-form__message {
  position: unset;
}
.site-footer .subscribe-form-wrapper input {
  border: none;
  background-color: var(--white);
  flex: 1;
  color: var(--black);
}
.site-footer .subscribe-form-wrapper input::placeholder {
  color: var(--black);
}
.site-footer .subscribe-form-wrapper .subscribe-btn {
  line-height: normal;
}
.site-footer .footer-bottom-wrap {
  background-color: var(--grey-color);
  padding: 15px 0;
}
.site-footer .footer-social-icon .social-ul svg path {
  fill: var(--black);
}
.site-footer .footer-bottom-wrap .footer-bottom-inner p b {
  text-decoration: underline;
}
.site-footer .footer-bottom-inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .footer-bottom-inner p {
  color: var(--third-color);
  padding-left: 45px;
}
.site-footer .footer-bottom-inner .social-icon ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 5px;
}
.site-footer .footer-bottom-inner .social-icon ul li a {
  display: block;
  padding: 0 5px;
}
.site-footer .social-icon .social-ul li:not(:last-of-type) {
  margin-right: 0;
}
.site-footer .footer-bottom-inner .payment-image-wrapper {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  gap: 15px;
}
.site-footer .footer-top {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white);
  padding-bottom: 20px;
  gap: 15px;
}
.site-footer .footer-top > .footer-subscribe-col > span,
.site-footer .footer-top > .footer-social-icon > span {
  display: block;
  font: var(--h5);
  margin-bottom: 15px;
}
.site-footer .subscribe-form-wrapper .subscribe-btn svg {
  display: none;
  margin-right: 0;
}
.site-footer .footer-social-icon .social-ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: end;
  gap: 15px;
}
.site-footer .footer-social-icon .social-ul li {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.site-footer .footer-social-icon .social-ul li a svg {
  width: 14px;
  height: 14px;
}
.site-footer .container-offset .footer-row {
  padding: 25px 0 0 60px;
}
.site-footer .footer-content {
  padding: 30px 60px;
}
.site-footer .footer-top-title h2 {
  font-size: 90px;
  color: var(--white);
  padding: 0 0 35px 60px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--white);
}
.site-footer:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.main-banner-sec {
  position: relative;
}
.main-banner-sec .main-banner-bg,
.main-banner-sec svg {
  background-size: cover;
  position: relative;
  background-position: center;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.main-banner-sec .banner-content-wrapper {
  width: 100%;
  color: var(--white);
  padding: 150px 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.home-banner-slider .swiper-slide-active .banner-content-wrapper .subtitle,
.home-banner-slider
  .swiper-slide-active
  .banner-content-wrapper
  .section-title
  h2,
.home-banner-slider .swiper-slide-active .banner-content-wrapper a {
  animation: 1s ease-in-out 0s normal none 1 running zoomIn;
}
.main-banner-sec .banner-content-wrapper .subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.main-banner-sec .banner-content-wrapper .section-title h2 {
  font-size: 100px;
  letter-spacing: 15px;
}
.main-banner-sec .banner-content-wrapper .section-title h2:before {
  position: absolute;
  bottom: 14px;
  left: -60px;
  z-index: -1;
  font-size: 120px;
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
}
.main-banner-sec
  .banner-content-wrapper
  .section-title
  h2.banner-slide-two:before {
  left: -28px;
}
.main-banner-sec
  .banner-content-wrapper
  .section-title
  h2.banner-slide-three:before {
  left: -38px;
}
.banner-img-1,
.banner-img-2,
.design-1,
.design-2,
.design-3,
.design-4,
.design-5,
.design-6,
.design-7,
.design-8,
.design-9,
.design-10,
.design-11 {
  position: absolute;
  z-index: -1;
}
.banner-img-1 {
  top: 15px;
  left: 0;
  z-index: 2;
  animation: bounce 1s infinite alternate;
}
.banner-img-2 {
  bottom: -90px;
  right: 0;
  z-index: 2;
  animation: bounce 1.2s infinite alternate;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
}
.main-banner-sec
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.main-banner-sec
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  background-color: var(--white);
  height: 10px;
  width: 20px;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  opacity: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.main-banner-sec
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet-active,
.main-banner-sec
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet-active {
  width: 40px;
  background-color: var(--theme-color);
}
.category-sec {
  position: relative;
}
.design-1 {
  right: 0;
  top: 0;
  height: 100%;
}
.category-sec .section-title h2,
.product-sec .section-title h2,
.two-column-sec .section-title h2,
.offer-sec .section-title h2,
.testimonial-sec .section-title h2,
.home-blog-sec .section-title h2 {
  letter-spacing: 2px;
}
.category-sec .section-title h2:before,
.product-sec .section-title h2:before,
.two-column-sec .section-title h2:before,
.offer-sec .section-title h2:before,
.testimonial-sec .section-title h2:before,
.home-blog-sec .section-title h2:before {
  content: "TRENDING PRODUCTS";
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: -1;
  font: var(--h1);
  opacity: 0.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
}
.category-product-top {
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-product-top a {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
}
.category-product-top a img {
  width: 100%;
  max-height: 150px;
  object-fit: scale-down;
}
.category-product-top img:hover {
  animation-name: shake;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}
.category-product-top a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  z-index: -1;
  border-radius: 100%;
  background-color: var(--third-color);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.category-sec .category-product-card {
  text-align: center;
  padding: 10px;
}
.category-product-bottom h3 {
  font: var(--h6);
  font-weight: 400;
}
.two-image-sec .image-box,
.discount-banner-sec .discount-banner {
  width: 100%;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 100px 15px;
}
.two-image-sec .image-box img,
.discount-banner-sec .discount-banner img,
.discount-banner-sec .discount-banner .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 5s cubic-bezier(0, 0, 0.1, 1);
  -webkit-transition: all 5s cubic-bezier(0, 0, 0.1, 1);
  -moz-transition: all 5s cubic-bezier(0, 0, 0.1, 1);
  -ms-transition: all 5s cubic-bezier(0, 0, 0.1, 1);
  -o-transition: all 5s cubic-bezier(0, 0, 0.1, 1);
}
.two-image-sec .image-box:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.two-image-sec .image-box-inner,
.discount-banner-sec .discount-banner-inner {
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
  text-align: center;
  align-items: center;
}
.two-image-sec .image-box-inner .subtitle {
  font-size: 18px;
}
.product-sec {
  position: relative;
}
.design-2 {
  left: 0;
  top: 0;
}
.product-slider.swiper-grid-column > .swiper-wrapper,
.column-right-slider.swiper-grid-column > .swiper-wrapper {
  flex-direction: row !important;
}
.product-slider.swiper-grid-column > .swiper-wrapper,
.column-right-slider.swiper-grid-column > .swiper-wrapper {
  gap: 15px 0;
}
.product-slider .swiper-slide,
.column-right-slider .swiper-slide {
  margin-top: 0 !important;
}
.product-sec .section-title h2:before {
  content: "ALL PRODUCTS";
}
.product-card {
  position: relative;
}
.product-card-inner .img-wrapper {
  padding-top: 100%;
}
.product-card .product-card-inner,
.blog-card .blog-card-inner {
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  padding: 15px;
}
.product-card .product-card-inner {
  padding-bottom: 60px;
  background-color: var(--second-color);
}
.product-card .product-card-image,
.collection-card .collection-card-image {
  position: relative;
  overflow: hidden;
}
.product-card .product-label-wrp,
.offer-box .product-label-wrp {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-box .product-label-wrp {
  left: 0;
  top: 0;
}
.product-card .product-label,
.offer-box .product-label {
  padding: 5px 10px;
  background: var(--theme-color);
  color: var(--white);
  line-height: 1;
  font-size: 12px;
}
.product-card .time-counter {
  width: 100%;
  position: absolute;
  bottom: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  opacity: 1;
  visibility: visible;
  display: flex;
  justify-content: center;
}
.deal-timeline {
  display: inline-flex;
  background-color: var(--second-color);
  padding: 10px;
  gap: 10px;
  box-shadow: 0 0 25px #0000000d;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  width: 100%;
}
.product-card .time-counter .deal-timeline svg {
  width: 20px;
  height: 20px;
  display: none;
}
.product-card .time-counter .deal-timeline svg path {
  fill: var(--white);
}
.product-card .deal-timeline .days .count,
.product-card .deal-timeline .hour .count,
.product-card .deal-timeline .mins .count,
.product-card .deal-timeline .secs .count {
  position: relative;
  font-weight: 600;
}
.product-card .deal-timeline .days .count,
.product-card .deal-timeline .hour .count,
.product-card .deal-timeline .mins .count {
  padding: 0 15px 0 0;
}
.product-card .deal-timeline .days .count:before,
.product-card .deal-timeline .hour .count:before,
.product-card .deal-timeline .mins .count:before,
.product-card .deal-timeline .days .count:after,
.product-card .deal-timeline .hour .count:after,
.product-card .deal-timeline .mins .count:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 3px;
  background-color: var(--white);
  right: 2px;
  top: 4px;
  border-radius: 100%;
  overflow: hidden;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.product-card .deal-timeline .days .count:after,
.product-card .deal-timeline .hour .count:after,
.product-card .deal-timeline .mins .count:after {
  bottom: 4px;
  top: auto;
}
.pdp-timer .deal-timeline .days .count:after,
.pdp-timer .deal-timeline .hour .count:after,
.pdp-timer .deal-timeline .mins .count:after {
  bottom: 4px;
  top: auto;
}
.pdp-timer .countdown-block {
  display: flex;
  gap: 10px;
}
.product-card-inner .product-content {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  flex: 1;
  margin-top: 3px;
  padding-top: 15px;
  border-top: 1px solid var(--theme-color);
}
.product-card .product-content .product-content-top,
.blog-card .blog-content .blog-content-top {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
.product-card .product-content .product-content-top h3 {
  font: var(--h5);
  margin-bottom: 15px;
}
.product-card .product-content .product-content-top a,
.blog-card .blog-content .blog-content-top a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--first-font);
}
.product-card .rating-wrp {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
}
.product-card .rating-wrp .jdgm-prev-badge__stars {
  display: block;
  margin-bottom: 15px;
}
.product-card .rating-wrp span {
  line-height: 1;
}
.product-card .product-card-image {
  border-bottom: 1px solid var(--theme-color);
  background-color: var(--third-color);
}
.product-card:hover .time-counter {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}
.product-card .product-card-inner .product-content-bottom .price {
  color: var(--red);
}
.product-card .product-card-inner .pro-btn-wrapper {
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border-color);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out 0s;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.product-card .product-card-inner .pro-btn-wrapper .pro-btn a {
  display: block;
}
.product-card:hover .pro-btn-wrapper,
.product-card:hover .product-card-inner .cart-btn {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.product-card .product-content-bottom .pro-btn-wrapper .compare-icon {
  position: relative;
  padding: 0 35px;
  margin: 0 35px;
}
.product-card .product-content-bottom .pro-btn-wrapper .compare-icon:before,
.product-card .product-content-bottom .pro-btn-wrapper .compare-icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  height: 15px;
  width: 1px;
  background: var(--theme-color);
  content: "";
  margin: auto;
  z-index: 1;
}
.product-card .product-content-bottom .pro-btn-wrapper .compare-icon:before {
  left: -1px;
  right: auto;
}
.product-card .product-content-bottom .pro-btn-wrapper .pro-btn svg {
  transition: all 0.4s ease-in-out 0s;
  height: 18px;
  width: 18px;
}
.product-card .product-content-bottom .pro-btn-wrapper .pro-btn svg path {
  fill: var(--theme-color);
}
.product-card .product-content-bottom .pro-btn-wrapper .pro-btn svg:hover {
  transform: rotateY(180deg);
}
.product-card .product-card-inner .cart-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}
.hidden,
.visually-hidden,
[hidden] {
  display: none !important;
}
.product-card .counter-dtl {
  display: none;
}
.discount-banner-sec {
  position: relative;
}
.design-3 {
  right: 0;
  top: 0;
}
.discount-banner-sec .discount-banner {
  padding: 40px 15px 400px;
}
.discount-banner-sec .discount-banner:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #1c1c1c99;
  height: 100%;
  width: 100%;
}
.discount-banner-sec .discount-banner-inner .section-title {
  margin-bottom: 15px;
}
.discount-banner-sec .discount-banner-inner .price ins {
  color: var(--red);
}
.two-column-sec {
  position: relative;
}
.two-column-sec .section-title h2:before {
  content: "TOP NEW ARRIVALS";
}
.offer-sec {
  position: relative;
}
.design-4 {
  top: -40%;
  left: 0;
}
.offer-sec .section-title h2:before {
  content: "LIMITED TIME OFFER";
}
.offer-sec .offer-box {
  background-color: var(--second-color);
  padding: 15px;
  height: 100%;
}
.offer-sec .offer-box-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px;
  height: 100%;
  border: 1px solid var(--border-color);
}
.offer-content {
  width: 65%;
  padding-left: 20px;
}
.offer-sec .offer-box-inner h3 {
  font: var(--h4);
  margin-bottom: 15px;
}
.offer-sec .offer-box-inner .rating-wrp {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.offer-sec .offer-box-inner .price {
  margin-bottom: 15px;
  color: var(--red);
}
.offer-sec .offer-box-inner .deal-timeline {
  gap: 5px;
  padding: 0;
  margin-bottom: 15px;
  justify-content: start;
}
.offer-sec .offer-box-inner .deal-timeline > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  background-color: var(--white);
  color: var(--theme-color);
  padding: 5px 8px;
  font-weight: 600;
  max-width: 50px;
  width: 100%;
}
.offer-sec .offer-box-inner .offer-btn-wrapper {
  gap: 10px;
  display: flex;
}
.offer-sec .offer-box-inner .pro-btn-wrapper {
  display: flex;
  gap: 10px;
}
.offer-sec .offer-box-inner .offer-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: scale-down;
  object-position: center;
}
.offer-sec .offer-box-inner .offer-image {
  position: relative;
  width: 35%;
  display: block;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn:nth-child(2) {
  transition: all 0.3s ease 0.1s;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn:nth-child(3) {
  transition: all 0.3s ease 0.15s;
  -webkit-transition: all 0.3s ease 0.15s;
  -moz-transition: all 0.3s ease 0.15s;
  -ms-transition: all 0.3s ease 0.15s;
  -o-transition: all 0.3s ease 0.15s;
}
.offer-sec .offer-box-inner:hover .pro-btn-wrapper .pro-btn {
  transform: translate(0);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn {
  padding: 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  box-shadow: 0 0 25px #0000000d;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  height: 41px;
  width: 40px;
  transform: translate(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn svg {
  width: 18px;
  height: 18px;
  margin: 0;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn svg path {
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-wishlist.active,
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-compare.active {
  background: var(--white);
}
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-wishlist.active svg path,
.offer-sec .offer-box-inner .pro-btn-wrapper .pro-compare.active svg path {
  fill: var(--theme-color);
}
.offer-banner-sec .offer-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
}
.offer-banner-sec .offer-banner-inner .offer-banner-content {
  text-align: center;
  max-width: 400px;
}
.offer-banner-sec .offer-banner-inner .subtitle {
  color: var(--theme-color);
  font-size: 16px;
}
.offer-banner-sec .offer-banner-inner h2 {
  margin-bottom: 15px;
}
.offer-banner-sec .offer-banner-inner .offer-banner-image {
  max-width: 280px;
  width: 100%;
}
.design-5 {
  top: -40%;
  left: 0;
  height: 100%;
}
.testimonial-sec {
  position: relative;
}
.testimonial-sec .section-title h2:before {
  content: "OUR CUSTOMER FEEDBACK";
}
.testimonial-sec .testimonial-image {
  height: 100%;
}
.testimonial-sec .testimonial-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimonial-sec .testimonial-card-inner {
  padding: 40px 40px 145px;
  background-color: var(--second-color);
  position: relative;
}
.testimonial-sec .testimonial-card-inner p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-sec .testimonial-card-inner .review-star {
  margin-bottom: 20px;
}
.testimonial-sec .testimonial-card-inner h3 {
  font: var(--h4);
  margin-bottom: 15px;
}
.testimonial-sec .testimonial-card-inner .description {
  color: var(--theme-color);
}
.testimonial-sec .testimonial-card-inner .testimonial-icon {
  position: absolute;
  right: 15%;
  bottom: 30%;
  max-width: 130px;
  width: 100%;
}
.testimonial-sec .arrow-wrapper {
  position: absolute;
  bottom: 40px;
  left: 75px;
}
.testimonial-sec .arrow-wrapper .swiper-button-next,
.testimonial-sec .arrow-wrapper .swiper-button-prev {
  top: auto;
  bottom: 0;
  transform: translate(100%);
}
.testimonial-sec .arrow-wrapper .swiper-button-prev {
  transform: translate(-100%);
}
.testimonial-sec .testimonial-slider {
  height: 100%;
}
.home-blog-sec {
  position: relative;
}
.home-blog-sec .home-blog-slider .swiper-button-next,
.home-blog-sec .home-blog-slider .swiper-button-prev {
  opacity: 0;
  visibility: hidden;
}
.home-blog-sec .home-blog-slider:hover .swiper-button-next,
.home-blog-sec .home-blog-slider:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}
.design-6 {
  bottom: 15%;
  right: 0;
}
.home-blog-sec .section-title h2:before {
  content: "BLOG POSTS";
}
.blog-card .blog-card-inner {
  border: 1px solid var(--border-color);
  padding: 0;
}
.blog-card-inner .blog-content {
  padding: 15px;
}
.blog-card-inner .blog-card-image .blog-image {
  padding-top: 65%;
  position: relative;
  display: block;
}
.blog-card-inner .blog-card-image .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-inner .blog-content {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  padding-top: 15px;
  width: 100%;
  height: 100%;
}
.blog-card-inner .blog-content-top .blog-date {
  margin-bottom: 15px;
}
.blog-card-inner .blog-content-top h3 {
  font: var(--h5);
  margin-bottom: 15px;
}
.blog-card-inner .blog-content-top p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partner-logo-sec .partner-logo-item a img {
  height: 100%;
  width: 100%;
}
.partner-logo-sec .partner-logo-slider .swiper-slide {
  justify-content: center;
  align-items: center;
}
.about-product-sec .about-product-slider .about-product-image,
.about-product-sec .about-product-slider .about-product-image a,
.about-product-sec .about-product-slider .about-product-image img {
  width: 100%;
  height: 100%;
}
.common-banner-sec {
  padding: 100px 0;
  color: var(--white);
  background-color: var(--theme-color);
  background-position: 50% 50%;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}
.common-banner-sec .filter-cat li:not(:last-child):after {
  content: "/";
  position: absolute;
  right: 0;
}
.common-banner-sec .filter-cat li:last-child {
  font-weight: 600;
}
.common-banner-sec .filter-cat li:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}
.common-banner-sec .filter-cat {
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 15px;
  gap: 10px 0;
}
.common-banner-content .section-title {
  margin-bottom: 15px;
}
.common-banner-content .section-title h2 {
  font-family: var(--first-font);
  letter-spacing: 0;
}
.gallery-main {
  position: relative;
  width: 100%;
  margin-left: auto;
  background-color: var(--white);
  box-shadow: 0 0 25px #0000000d;
}
.gallery-thumbs {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
}
.gallery-thumbs {
  max-width: 70%;
  margin-top: -12%;
}
a.pdp-slider-img {
  display: block;
}
.pdp-slider-img {
  position: relative;
  padding-top: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: var(--second-color);
}
.pdp-slider-img img,
.pdp-slider-img video,
.pdp-slider-img iframe,
.pdp-thumb-img svg,
.pdp-thumb-img video,
.pdp-thumb-img iframe,
.pdp-thumb-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: scale-down;
  object-position: center;
}
.pdp-thumb-image {
  background-color: var(--white);
  overflow: hidden;
  display: block;
  position: relative;
  padding-top: 30%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.pdp-right-column .section-title {
  margin-bottom: 15px;
}
.pdp-right-column .pdp-rating .price {
  margin-bottom: 0;
}
.pdp-right-column .pdp-rating .price ins {
  color: var(--red);
  font-size: 24px;
}
.pdp-right-column p,
.pdp-right-column .pdp-timer,
.pdp-right-column .select-material-grp,
.pdp-right-column .color-swatch-variants,
.pdp-right-column .buy-btn,
.pdp-right-column .checkbox-custom {
  margin-bottom: 15px;
}
.pdp-right-column .pdp-timer {
  color: var(--red);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 0 25px #0000000d;
}
.pdp-timer > span {
  display: inline-flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 5px 8px;
  width: auto;
  height: auto;
  background-color: var(--red);
}
.pdp-right-column .deal-timeline {
  align-items: center;
  font-size: 15px;
  box-shadow: none;
  justify-content: flex-start;
}
.pdp-right-column .select-material-grp .radio-buttons {
  margin-top: 8px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.pdp-right-column .select-material-grp .size-btn input[type="radio"],
.pdp-right-column .color-swatch-variants input[type="radio"] {
  display: none;
}
.pdp-right-column .select-material-grp .size-btn > label {
  cursor: pointer;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 40px;
  width: 70px;
  gap: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: capitalize;
}
.pdp-right-column
  .select-material-grp
  .size-btn
  input[type="radio"]:checked
  + label {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.color-swatch-variants > label {
  margin-bottom: 10px;
}
.pdp-right-column .color-swatch-variants span,
.pdp-right-column.qnty-btn-wrp > label,
.pdp-right-column .select-material-grp > label,
.pdp-right-column .qnty-btn-wrp > label {
  margin-bottom: 8px;
  display: block;
  width: 100%;
  font-weight: 600;
  line-height: 1;
}
.pdp-right-column .pro-color.active label:after {
  outline: 1px solid var(--white);
}
.pdp-right-column .qnty-btn-wrp .pro-wishlist-btn {
  padding: 9px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
}
.pdp-right-column .qnty-btn-wrp .pro-wishlist-btn svg path {
  fill: var(--white);
}
.pdp-right-column .qnty-btn-wrp .pro-wishlist-btn:hover,
.pdp-right-column .qnty-btn-wrp .pro-wishlist-btn.active {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.pdp-right-column .pro-cart-btn a,
.pdp-right-column .buy-btn {
  width: 100%;
}
.pdp-right-column .checkbox-custom label {
  color: var(--white);
}
.pdp-right-column .checkbox-custom label:before {
  border-color: var(--white);
}
.pdp-right-column .checkbox-custom input:checked + label:before {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.pdp-right-column .qnty-btn-wrp {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  margin: 0 0 15px;
  width: 100%;
  gap: 15px;
}
.product-form .pro-cart-btn.cart-btn {
  margin: 0 15px 0 0;
}
.product-form__buttons.buy-btn {
  flex: 1;
  margin: 0;
}
.pdp-right-column .qnty-btn-wrp .qty-spinner,
.products-add-cart-sticky .qty-spinner {
  height: 40px;
  align-items: center;
  justify-content: space-evenly;
  background-color: var(--white);
}
.pdp-right-column .qnty-btn-wrp .buy-btn button:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.pdp-right-column .qnty-btn-wrp .qty-spinner button,
.products-add-cart-sticky .qty-spinner button {
  width: 100px;
}
.pdp-right-column .pro-features {
  gap: 15px;
  padding-bottom: 15px;
}
.pro-features li .pro-features-btn {
  gap: 9px;
  cursor: pointer;
}
.pro-features li .pro-features-btn svg {
  height: 16px;
  width: 16px;
}
.pro-features li .pro-features-btn svg path {
  fill: var(--white);
}
.pdp-right-column .pro-shipping {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  margin-bottom: 15px;
}
.pdp-right-column .pro-shipping .pro-mail {
  margin-bottom: 15px;
}
.pdp-right-column .pro-shipping a,
.pdp-right-column .pro-delivery .pro-features-btn {
  display: inline-flex;
  gap: 10px;
}
.pdp-right-column .pro-delivery svg path {
  fill: var(--white);
}
.pdp-right-column .pro-fell-dtl {
  margin-bottom: 15px;
}
.pdp-right-column .pro-fell-dtl li:not(:last-child) {
  margin-bottom: 15px;
}
.pdp-right-column .pro-fell-dtl li {
  display: flex;
  gap: 12px;
}
.pdp-right-column .pro-fell-dtl .pdp-spacific-var span {
  width: 25%;
  line-height: 1;
}
.pdp-right-column .pro-fell-dtl .pdp-spacific-var p {
  flex: 1;
  font-weight: 600;
  margin-bottom: 0;
}
.available-product .avail-txt {
  color: green;
}
.available-product .sold-txt {
  color: red;
}
.instock {
  color: #01d601;
}
.pdp-right-column .pro-payment {
  background-color: var(--third-color);
  padding: 15px;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.pdp-right-column .pro-payment p {
  margin-bottom: 15px;
  font-weight: 600;
}
.share-button svg path {
  fill: var(--white);
}
.share-button svg {
  margin-right: 9px;
}
.pro-features .pro-compare.active .compare-label {
  color: var(--theme-color);
}
.pro-features .pro-compare.active .compare-label svg path {
  fill: var(--theme-color);
}
.size-popup {
  position: fixed;
  background: #000000b3;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
  padding: 0 30px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.5s;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.size-popup.active {
  opacity: 1;
  visibility: visible;
}
.pdp-right-column .size-guide-wrapper {
  margin: 0 0 20px;
  gap: 15px;
}
.pdp-right-column .size-guide-wrapper .see-size a {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-decoration: underline;
  gap: 10px;
  margin-left: 5px;
}
.pdp-right-column .size-guide-wrapper .see-size a svg {
  height: 12px;
  width: 12px;
}
.size-popup .size-form {
  background-color: var(--white);
  color: var(--black);
  padding: 20px;
  max-height: 80vh;
  height: 100%;
  overflow: auto;
}
.size-popup .size-form H4 {
  text-align: center;
  margin-bottom: 20px;
}
.size-popup table tr td {
  padding: 10px;
}
.size-popup .btn-white {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  background: var(--primary-color);
}
.size-popup .btn-white svg {
  margin-left: 0;
  margin-right: 10px;
}
.size-popup .btn-white svg path {
  fill: var(--black);
}
.size-close-btn {
  text-align: end;
  margin-bottom: 15px;
}
.size-table-wrapper {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 60%;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pro-payment .payment-image-wrapper {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  gap: 15px;
}
.ask-qus-popup,
.delivery-popup {
  position: fixed;
  background: #0000009c;
  color: var(--black);
  height: 100%;
  width: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
  z-index: 3;
  padding: 0 15px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
}
.ask-qus-popup.active,
.delivery-popup.active {
  opacity: 1;
  visibility: visible;
}
.ask-form-wrapper,
.del-form-wrapper {
  max-width: 35%;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  margin: 0 auto;
  background-color: var(--white);
  padding: 30px 20px;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.ask-qus-popup.active .ask-form-wrapper,
.delivery-popup.active .del-form-wrapper {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.del-form-wrapper .section-title {
  text-align: left !important;
}
.ask-form-wrapper .close-search,
.del-form-wrapper .close-search,
.out-of-stock-form .close-search {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 22px;
  height: 22px;
}
.ask-form-wrapper h2 {
  margin-bottom: 25px;
  text-align: center;
  font: var(--h3);
}
.ask-form-wrapper .form-inputs input,
.ask-form-wrapper .form-inputs textarea,
.ask-form-wrapper .form-inputs p {
  margin-bottom: 15px;
  color: var(--black);
}
.ask-form-wrapper .form-inputs input::placeholder,
.ask-form-wrapper .form-inputs textarea::placeholder {
  color: var(--black);
}
.del-form-wrapper {
  max-width: 50%;
}
.del-form-wrapper .section-title h2 {
  font: var(--h3);
}
.del-form-wrapper p {
  margin-bottom: 0;
  color: var(--black);
}
.del-form-wrapper .shipping {
  margin-top: 20px;
}
.del-form-wrapper .parcel h3,
.del-form-wrapper .shipping h3 {
  font: var(--h4);
  margin-bottom: 15px;
}
.products-add-cart-sticky {
  display: none;
  z-index: 2;
  position: fixed;
  display: -webkit-box;
  display: -moz-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 0.5s ease-in-out 0s;
  transform: translateY(120px);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  border-top: 1px solid var(--border-color);
  background-color: var(--third-color);
}
.products-add-cart-sticky.show-btn {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.products-add-cart-sticky .sticky-pro-inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: nowrap;
  align-items: center;
  -webkit-align-items: center;
  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: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
}
.sticky-pro-info img {
  height: 60px;
  max-width: 80px;
  object-fit: scale-down;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.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 .color-variant-swatch {
  display: flex;
  gap: 10px;
}
.sticky-pro-inner .text-checkbox .checkbox {
  padding: 0;
}
.sticky-pro-inner .text-checkbox {
  gap: 10px;
}
.sticky-pro-inner .text-checkbox label {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.sticky-pro-inner .color-variant-swatch .button {
  padding-top: 3px;
}
.products-add-cart-sticky .color-variant-swatch label.size-var {
  font-size: 14px;
  height: 30px;
}
.text-checkbox .checkbox input[type="checkbox"]:checked + .checkbox-label {
  border-color: var(--secondary-color);
  color: var(--black);
}
.text-checkbox .checkbox input[type="checkbox"] {
  display: none;
}
.text-checkbox .checkbox input[type="checkbox"] + .checkbox-label {
  content: "";
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--border-color);
  width: auto;
  position: relative;
  font-weight: 600;
  letter-spacing: 0px;
  top: 0;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s ease-in-out 0s;
  font-size: 14px;
  padding: 8px 15px;
  text-transform: lowercase;
}
.text-checkbox .checkbox input[type="checkbox"]:checked + .checkbox-label {
  border: 2px solid var(--theme-color);
}
.text-checkbox .checkbox .clr {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
  border-radius: 100%;
}
.sticky-pro-info .sticky-data .price del {
  font-size: 14px;
}
.sticky-pro-inn .text-checkbox {
  gap: 10px;
}
.sticky-pro-inn .text-checkbox label {
  font-size: 16px;
  font-weight: 600;
}
.pdp-tab-sec {
  position: relative;
}
.design-8 {
  right: 0;
  bottom: 0;
}
.design-9 {
  left: 0;
  bottom: -10%;
}
.design-10 {
  right: 0;
  bottom: 20%;
}
.pdp-tab-sec .tab-head-row {
  margin-bottom: 20px;
}
.pdp-tab-sec ul.tabs {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec ul.tabs li a {
  padding-bottom: 10px;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  font-size: 16px;
}
.pdp-tab-sec ul.tabs li.active a {
  border-bottom: 1px solid var(--white);
}
.tabs-container {
  overflow: hidden;
}
.pdp-tab-sec .tabs-container .tab-content {
  border: 1px solid var(--border-color);
}
.pdp-tab-sec .tabs-container #pdp-tab-2 .pdp-tab-des {
  padding-left: 40px;
}
.pdp-tab-sec .tabs-container .tab-content .pdp-tab-des {
  padding: 25px;
}
.tabs-container #pdp-tab-1 ul li:not(:last-of-type),
.tabs-container #pdp-tab-2 ul li:not(:last-of-type) {
  margin-bottom: 15px;
}
.tabs-container #pdp-tab-2 .pdp-tab-des li {
  list-style-type: disc;
}
.tabs-container #pdp-tab-1 .pdp-tab-des li h2 {
  font: var(--h4);
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 8px;
}
.tabs-container #pdp-tab-1 .pdp-tab-des li h2:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 80px;
  background-color: var(--theme-color);
  bottom: 0;
  left: 0;
}
.pdp-tab-sec .write-review {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec .write-review span {
  cursor: pointer;
}
.pdp-tab-sec .product-review-form {
  margin-top: 15px;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.product-review-form.showform {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.pro-rating-form .rating-form-email.form-input,
.pro-rating-form .rating-form-name.form-input {
  max-width: 48%;
  width: 100%;
}
.pro-rating-form .rating-form-detail {
  gap: 20px;
  margin-bottom: 15px;
}
.pdp-tab-sec .product-review-form .row [class*="col-"]:last-of-type {
  text-align: end;
}
.product-page .site-footer,
.product-left-thumb .site-footer,
.product-right-thumb .site-footer,
.product-no-thumb .site-footer {
  margin-bottom: 110px;
}
.product-heading-row .row {
  align-items: center;
  -webkit-align-items: center;
}
.product-filter-body {
  position: relative;
  border: 1px solid var(--border-color);
}
.list-category-sec .list-category-slider .product-card {
  padding-bottom: 0;
}
.product-heading-column .filter-title {
  padding: 14px;
  border: 1px solid var(--border-color);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.product-heading-column .filter-title h2 {
  font: var(--h4);
}
.filter-select-box {
  min-width: 160px;
}
.filter-title .icon {
  display: none;
}
.filter-title .filter-icon svg {
  height: 20px;
  width: 20px;
  margin-right: 15px;
}
.filter-title .filter-icon svg path {
  fill: var(--white);
}
.product-heading-row .sort-lbl {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.product-heading-right-column .product-sorting-row {
  border: 1px solid var(--border-color);
  padding: 10px;
}
.product-heading-row .nice-select {
  width: 170px;
  padding: 7px 10px;
}
.product-heading-right-column ul.tabs {
  gap: 5px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0;
}
.product-heading-right-column ul.tabs li {
  height: 30px;
  width: 30px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  border: 1px solid var(--border-color);
  align-items: center;
  -webkit-align-items: center;
  cursor: pointer;
}
.product-heading-right-column ul.tabs li.active {
  background: var(--border-color);
}
.product-heading-right-column ul.tabs li svg {
  height: 17px;
  width: 17px;
}
.product-heading-right-column ul.tabs li svg path {
  fill: var(--white);
}
.product-heading-right-column .filter-list-wrp,
.product-heading-right-column .filter-select-wrp .featured-select {
  gap: 10px;
}
.product-price-widget .price-select .nice-select,
.product-heading-row .nice-select {
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  font-weight: 700;
}
.product-filter-right-column,
.product-filter-left-column {
  padding-top: 20px !important;
}
.product-widget:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color);
}
.product-widget {
  padding: 10px;
}
.product-widget > .pro-itm > .acnav-label {
  padding: 10px;
  text-transform: uppercase;
  background-color: var(--third-color);
  letter-spacing: 1px;
  cursor: pointer;
}
.product-widget .acnav-label {
  display: block;
  position: relative;
  font-weight: 600;
}
.product-widget .acnav-label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: translateY(-50%) rotate(225deg);
  -webkit-transform: translateY(-50%) rotate(225deg);
  -moz-transform: translateY(-50%) rotate(225deg);
  -ms-transform: translateY(-50%) rotate(225deg);
  -o-transform: translateY(-50%) rotate(225deg);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}
.product-widget .is-open > .acnav-label:after,
.product-widget.disclosure-has-popup[open] .acnav-label:after {
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
}
.acnav-list {
  display: none;
  padding: 10px 0 0;
}
.product-cat-widget .acnav-list {
  padding: 10px 0 0 10px;
}
.product-widget .acnav-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.product-widget .acnav-list li a {
  text-transform: capitalize;
}
.pro-itm-inner > .filter-listing > ul > li > .acnav-list {
  padding: 10px 0 2px 7px;
}
.product-widget .acnav-list .colors-checkbox:not(:last-of-type) {
  margin-bottom: 10px;
}
.custom-checkbox,
.colors-checkbox label {
  margin: 0;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: 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: 4px;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  left: 0;
}
.color,
.custom-checkbox input[type="checkbox"] + span.color {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}
.custom-checkbox input[type="checkbox"]:checked + span.color: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);
}
.custom-checkbox input[type="checkbox"]:checked + span.color {
  border: 2px solid var(--theme-color);
}
.color-name {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  justify-content: space-between;
  padding-right: 10px;
  font-size: 13px;
}
.colors-checkbox .color-count {
  background: var(--third-color);
  padding: 1px 4px;
  font-size: 12px;
}
.price-select {
  margin-left: -5px;
  margin-right: -5px;
}
.select-col {
  width: 100%;
  max-width: 50%;
  padding: 0 5px;
}
.select-col p {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.product-price-widget .acnav-list {
  padding: 10px 0;
}
#range-slider {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 23px;
}
.ui-slider-horizontal .ui-slider-range {
  background-color: var(--theme-color);
  height: 3px !important;
  top: -1px !important;
  border-radius: 0 !important;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  background: var(--theme-color) !important;
  border: 1px solid var(--second-color) !important;
}
.ui-widget-content {
  background: #ddd !important;
  border: none !important;
  border-radius: 0 !important;
  height: 1px !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  font-weight: 400;
  height: 11px !important;
  width: 11px !important;
  top: -5px !important;
  margin-left: 0 !important;
  background: #ddd;
  border: 2px solid var(--theme-color) !important;
  border-radius: 10px;
  z-index: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.product-colors-widget .text-checkbox,
.product-size-widget .text-checkbox {
  gap: 8px;
}
.delete-all {
  display: inline-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  margin-top: 10px;
  gap: 5px;
}
.delete-all svg {
  height: 12px;
  width: 12px;
}
.delete-all svg path {
  fill: var(--white);
}
.product-size-widget
  .text-checkbox
  .checkbox
  input[type="checkbox"]
  + .checkbox-label {
  padding: 8px;
}
.product-fil-btn .filter-btn {
  width: 100%;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}
.product-fil-btn .filter-btn svg {
  margin: 0 0 0 15px;
}
.product-fil-btn .clear-filter-btn {
  width: 100%;
  border: 0;
  text-align: center;
}
.product-filter-right-column .tabs-container .row {
  gap: 15px 0;
}
.product-list-view .product-card-inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  padding-bottom: 15px;
}
.product-list-view .product-card-inner .product-card-image {
  max-width: 200px;
  flex: 0 0 200px;
  width: 100%;
  border: 0;
}
.product-list-view .product-card-inner .product-content-top {
  max-width: 350px;
  flex: 0 0 350px;
  width: 100%;
  margin-left: 15px;
}
.product-list-view .product-card-inner .product-label-wrp {
  position: unset;
  margin-bottom: 15px;
  flex-direction: row;
}
.product-list-view .product-card-inner .product-content-top h3 {
  margin-bottom: 15px;
  font: var(--h4);
}
.product-list-view .product-card-inner .product-content-top h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--first-font);
}
.product-card-inner .product-content-top p,
.offer-box-inner .offer-content p {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list-view .product-card-inner .time-counter {
  position: unset;
  width: auto;
  justify-content: start;
}
.product-list-view .product-card:hover .time-counter {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
.product-list-view .product-card-inner .time-counter .deal-timeline {
  width: auto;
  background-color: var(--theme-color);
}
.product-list-view .product-card-inner .time-counter .deal-timeline svg {
  display: block;
  height: 16px;
  width: 16px;
}
.product-list-view .product-card-inner .product-content-bottom {
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  text-align: end;
}
.product-list-view
  .product-card
  .product-content-bottom
  .pro-btn-wrapper
  .pro-btn
  svg:hover {
  transform: rotateY(0);
}
.product-list-view .product-content-bottom .rating-wrp {
  justify-content: end;
}
.product-list-view .product-content-bottom .pro-btn-wrapper {
  position: unset;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  border: 0;
  justify-content: end;
  gap: 8px;
  padding: 0;
  margin-bottom: 15px;
}
.product-list-view .product-content-bottom .pro-btn-wrapper .compare-icon {
  margin: 0;
  padding: 0;
}
.product-list-view
  .product-content-bottom
  .pro-btn-wrapper
  .compare-icon:before,
.product-list-view
  .product-content-bottom
  .pro-btn-wrapper
  .compare-icon:after {
  display: none;
}
.product-list-view .product-content-bottom .pro-btn-wrapper .pro-btn {
  height: 30px;
  width: 30px;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list-view .product-content-bottom .pro-btn-wrapper .pro-btn svg path {
  fill: var(--white);
}
.product-list-view .product-card-inner .product-content-bottom .price,
.product-list-view .product-content-bottom .color-swatch-variants {
  justify-content: end;
  margin-bottom: 15px;
}
.product-list-view
  .product-content-bottom
  .color-swatch-variants
  .pro-color.active
  label:after {
  outline: 1px solid var(--white);
}
.product-listing-sec .collection-show-more {
  margin-top: 20px;
}
.product-list-view .product-card .product-card-inner .cart-btn,
.product-list-view .product-card .product-card-inner .cart-btn[disabled]:hover {
  border: 1px solid var(--theme-color);
  color: var(--white);
  background: var(--theme-color);
}
.product-list-view .product-card .product-card-inner .cart-btn:hover {
  color: var(--theme-color);
}
.product-list-view .product-card .product-card-inner .cart-btn:before {
  top: 0;
  left: 0;
  right: auto;
  background: var(--white);
}
.product-list-view .product-card .product-card-inner .cart-btn:hover:before,
.product-list-view
  .product-card
  .product-card-inner
  .cart-btn[disabled]:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}
.product-list-view .product-card .product-card-inner .cart-btn:after,
.product-list-view .product-card .product-card-inner .cart-btn[disabled]:after {
  bottom: 0;
  right: 0;
  left: auto;
  background: var(--white);
}
.product-list-view .product-card .product-card-inner .cart-btn[disabled]:after,
.product-list-view
  .product-card
  .product-card-inner
  .cart-btn[disabled]:before {
  background: var(--theme-color);
}
.product-list-view .product-card .product-card-inner .cart-btn:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.product-list-view .color-variant-swatch {
  margin-bottom: 15px;
  display: block;
}
.about-video-sec {
  padding-top: 100px;
}
.about-video-sec .banner-left {
  margin: -50px -80px 0 0;
  position: relative;
  z-index: 1;
}
.about-video-sec .banner-left video {
  height: 100%;
  object-fit: cover;
}
.about-video-sec .banner-right {
  padding: 20px 30px 20px 90px;
  overflow: visible;
  background-color: var(--third-color);
}
.about-video-sec .banner-right h2 {
  font: var(--h3);
  max-width: 330px;
  width: 100%;
}
.about-video-sec .banner-right ul li {
  list-style: none;
  padding-left: 40px;
  position: relative;
}
.about-video-sec .banner-right ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.about-video-sec .banner-right ul li:before {
  content: "";
  background-image: url(about-page-check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 24px;
  height: 24px;
  width: 24px;
  filter: invert();
}
.about-video-sec .banner-right ul li h3 {
  font: var(--h4);
}
.about-video-sec .banner-right ul li h3,
.join-us-sec .about-join-left p,
.join-us-sec .about-join-left h3 {
  margin-bottom: 15px;
}
.counter-sec .row .counter-item {
  max-width: 70%;
  width: 100%;
}
.counter-sec .counting {
  font-size: 50px;
  line-height: 1;
  position: relative;
  margin-bottom: 10px;
}
.counter-sec .counting:after {
  content: " +";
  display: inline-block;
}
.counter-sec .counting-letter:after {
  content: "k";
}
.join-us-sec .about-join-left {
  background-color: var(--third-color);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 15px;
}
.join-us-sec .about-join-left:after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
  left: -25%;
  background-color: var(--third-color);
}
.join-us-sec .about-join-left .about-join-btn {
  gap: 15px;
}
.join-us-sec .about-join-left .about-join-btn .btn-secondary,
.join-us-sec .about-join-left .about-join-btn .btn {
  max-width: 150px;
  width: 100%;
}
.join-us-sec .about-join-left .subtitle {
  font-size: 25px;
}
.join-us-sec .about-join-left h2 {
  font: var(--h3);
}
.join-us-sec .about-join-left h3 {
  font: var(--h5);
}
.about-join-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.join-us-sec .about-join-right {
  max-width: 80%;
  height: 100%;
  width: 100%;
}
.our-team-sec .team-card-inner {
  background-color: var(--third-color);
  padding: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease-in-out 0s;
}
.our-team-sec .team-card .team-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.our-team-sec .team-card .team-card-content .team-card-top {
  flex: 1;
  height: 100%;
}
.our-team-sec .team-card:hover .team-card-inner {
  box-shadow: 0 0 10px #0e0d0d80;
}
.our-team-sec .team-card .team-card-img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.our-team-sec .team-card .team-card-img img {
  width: 100%;
  height: 100%;
}
.our-team-sec .team-card .team-card-top h2 {
  font: var(--h5);
}
.our-team-sec .team-card .team-card-top h3 {
  font: var(--h6);
}
.our-team-sec .team-card .team-card-top h2,
.our-team-sec .team-card .team-card-top h3,
.our-team-sec .team-card .team-card-top p {
  margin-bottom: 15px;
}
.our-team-sec .team-card .team-card-top h2 a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-height: 1.2;
  -webkit-box-orient: vertical;
}
.our-team-sec .team-card .team-card-top p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.team-card-bottom .social-ul {
  justify-content: center;
}
.team-card-bottom .social-ul li a svg {
  height: 14px;
  width: 14px;
}
.team-card-bottom .social-ul li a svg path {
  fill: var(--white);
}
.team-card-bottom .social-ul li:not(:last-of-type) {
  margin-right: 0;
}
.team-card-bottom .social-ul {
  gap: 10px;
}
.about-service-sec {
  padding: 40px 0;
  background-color: var(--third-color);
}
.about-service-sec .service-card-image {
  margin: 0 15px 0 0;
}
.about-service-dtl h2 {
  font: var(--h6);
  margin-bottom: 5px;
}
.my-add-sec .checkbox-custom label {
  color: var(--white);
  margin: 0 0 15px;
}
.my-add-sec .main-new-address .section-title h2 {
  font: var(--h3);
}
.my-add-sec .main-new-address .back-btn {
  color: var(--white);
  margin: 0 0 20px;
}
.my-add-sec .add-primery .acc-details span {
  display: block;
  line-height: 1;
}
.acc-details p,
.acc-details h2 {
  margin-bottom: 20px;
}
.acc-details p {
  line-height: 1.6;
}
.acc-details h2 {
  font: var(--h4);
}
.error-page.common-banner-sec .filter-cat {
  margin-bottom: 0;
}
.error-main-sec .eroor-content {
  text-align: center;
}
.error-main-sec .eroor-content h2 {
  max-width: 100%;
}
.error-main-sec .eroor-content .large-text {
  font-size: 100px;
  font-weight: 500;
  line-height: 75%;
}
.error-main-sec .eroor-content .form-input {
  max-width: 400px;
  width: 100%;
  margin: auto;
  position: relative;
}
.error-main-sec .eroor-content .form-input input {
  padding: 14px 40px 14px 20px;
}
.error-main-sec .eroor-content .form-input .input-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  border: none;
}
.error-main-sec .eroor-content .section-title h3 {
  margin: 25px 0 20px;
}
.cartDrawer .mini-cart-footer.is-empty,
.cart-empty-block {
  display: none;
}
.cart-empty-block.is-empty {
  display: block;
}
.cart-item-wrap.is-empty,
.cart-footer-wrap.is-empty,
.cartDrawer .cart__warnings,
.cartDrawer.is-empty .cart__contents,
.cartDrawer.is-empty .cart__footer,
.cartDrawer cart-items.is-empty .title-wrapper-with-link,
#main-cart-footer.is-empty {
  display: none;
}
.cart__warnings .icon-cart-empty {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cartDrawer.is-empty .cart__warnings {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}
table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: auto;
  text-align: left;
  border: 2px solid var(--border-color);
}
table tr th {
  text-align: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--border-color);
  color: var(--white);
}
table tr td {
  padding: 5px 10px;
  display: block;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
}
.cart-page-sec .cart-coundown {
  display: flex;
  justify-content: center;
  background-color: #d6eadf;
  color: var(--black);
  padding: 12px 15px;
  margin-bottom: 20px;
  gap: 10px;
}
.cart-page-sec .cart-coundown p {
  color: var(--black);
}
.cart-table {
  border: 0;
}
.cart-table tr th,
.cart-table tr td {
  text-align: left;
  padding: 10px;
}
.cart-table .qty-spinner {
  background-color: var(--white);
}
.cart-table tr td a.pro-img-cart {
  background-color: var(--third-color);
}
.cart-table .cart-details {
  width: 40%;
}
table tr td:first-child a {
  vertical-align: middle;
}
.cart-table tr {
  border-bottom: 1px solid var(--border-color);
}
.cart-table tr td:first-child {
  padding-left: 0;
}
.cart-table h2 {
  font: var(--h5);
  margin-bottom: 15px;
}
.cart-table h2 a {
  font-family: var(--first-font);
}
.wishlist-table h5 {
  margin-bottom: 0;
  max-width: 370px;
  width: 100%;
}
.cart-table .price {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}
.cart-table .product-option {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cart-table .product-option:not(:last-of-type) {
  margin-bottom: 5px;
}
.cart-table .product-option dt {
  font-weight: 600;
  margin-right: 5px;
}
.cart-table tr td:last-child {
  font-weight: 600;
}
.cart-page-sec .cart-right .order-note textarea {
  background-color: var(--black);
}
.cart-page-sec .cart-right .checkout-btn {
  gap: 15px;
  width: 100%;
  font-weight: 500;
  letter-spacing: 1px;
}
.cart-page-sec .cart-right .order-note label {
  font-weight: 600;
}
.cart-page-sec .cart-right textarea {
  padding: 12px 15px;
  margin: 15px 0;
}
.cart-page-sec .cart-right .cart-total {
  font-weight: 600;
  font-size: 15px;
}
.cart-page-sec .cart-right .cart-total,
.cart-page-sec .cart-right .total-save {
  margin-bottom: 15px;
}
.cart-page-sec .subtotal .price ins {
  font-size: 22px;
  margin-left: 10px;
}
.cart-table tr td .quantity-wrp {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-wrap: wrap;
  width: 130px;
}
.cart-table tr td .quantity-wrp .remove-btn svg {
  height: 20px;
  width: 20px;
  margin-left: 10px;
}
.gift-cart .gift-cart-dtl svg path {
  fill: var(--white);
}
.cart-table tr td .quantity-wrp .remove-btn svg path {
  fill: var(--red);
}
.gift-cart .gift-cart-dtl span {
  line-height: 1;
  font-weight: 600;
}
.gift-cart .gift-cart-dtl svg {
  margin-right: 10px;
  height: 30px;
  width: 30px;
}
.order-historycontent .gift-cart {
  background-color: var(--third-color);
  padding: 15px;
  margin-top: 15px;
}
.order-historycontent .gift-cart .gift-cart-btn {
  letter-spacing: 1px;
}
.order-historycontent .gift-cart,
.cart-page-sec .cart-right {
  background-color: var(--third-color);
  padding: 20px 15px;
}
.product-card
  .product-content-bottom
  .pro-btn-wrapper
  .pro-btn.pro-wishlist.active
  svg
  path,
.product-card
  .product-content-bottom
  .pro-btn-wrapper
  .pro-btn.pro-compare.active
  svg
  path {
  fill: var(--white);
}
.pro-compare-sec .section-title,
.pro-wishlist-sec .section-title {
  text-align: center;
}
.pro-compare-sec .pro-compare-wrap,
.pro-wishlist-sec .pro-wishlist-wrap {
  margin-bottom: 40px;
}
.pro-compare-wrap .pro-compare-left .compare-title,
.pro-wishlist-wrap .pro-wishlist-left .wishlist-title {
  max-width: 25%;
  flex: 0 0 25%;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--border-color);
  font-size: 16px;
  font-weight: 600;
}
.pro-compare-wrap .pro-compare-left .compare-title:not(:last-of-type),
.pro-wishlist-wrap .pro-wishlist-left .wishlist-title:not(:last-of-type) {
  border-right: 1px solid var(--white);
}
.compare-wrap,
.wishlist-wrap {
  border-bottom: 1px solid var(--border-color);
}
.pro-compare-scroll .compare-wrap .compare-val-prod,
.pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod {
  display: flex;
  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%;
  flex: 0 0 25%;
  text-align: center;
  padding: 15px;
}
.compare-pro-detail .prod-img a,
.wishlist-pro-detail .prod-img a {
  position: relative;
  padding-top: 65%;
  display: block;
  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%;
  object-fit: scale-down;
}
.compare-pro-detail .compare-val-prod .prod-title,
.wishlist-pro-detail .wishlist-val-prod .prod-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--first-font);
}
.compare-pro-detail .compare-val-prod .prod-price.price,
.wishlist-pro-detail .wishlist-val-prod .prod-price.price {
  justify-content: center;
  margin-bottom: 10;
  font-size: 16px;
  color: var(--red);
}
.compare-pro-detail .compare-val-prod .prod-price.price del,
.wishlist-pro-detail .wishlist-val-prod .prod-price.price del {
  font-size: 14px;
}
.wishlist-pro-detail .wishlist-val-prod .wishlist-prod-remove,
.compare-pro-detail .compare-val-prod .compare-prod-remove {
  display: inline-block;
  cursor: pointer;
}
.wishlist-pro-detail .wishlist-val-prod .wishlist-prod-remove svg path,
.compare-pro-detail .compare-val-prod .compare-prod-remove svg path {
  fill: var(--red);
}
.pro-compare-sec .compare-bottom-btn,
.pro-wishlist-sec .wishlist-bottom-btn {
  display: flex;
  justify-content: center;
}
.pro-compare-sec .compare-bottom-btn .btn,
.pro-wishlist-sec .wishlist-bottom-btn .btn {
  min-width: 200px;
}
.pro-compare-sec .compare-bottom-btn .btn-secondary:hover,
.pro-wishlist-sec .wishlist-bottom-btn .btn-secondary:hover {
  border: 1px solid var(--theme-color);
}
.compare-pro-detail .compare-val-prod .compare-pro-detail,
.wishlist-pro-detail .wishlist-val-prod .wishlist-pro-detail {
  margin-bottom: 10px;
}
.article-section .articlebar img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}
.articlebar .section-title {
  max-width: 60%;
  width: 100%;
  text-align: left;
}
.articlebar .section-title h2 {
  max-width: 100%;
}
.articlebar .section-title .subtitle {
  padding: 5px 15px;
  border: 1px solid var(--border-color);
  display: inline-flex;
  margin-bottom: 20px;
}
.articlebar .about-user {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.articlebar .abt-user-img {
  height: 25px;
  width: 25px;
}
.articlebar .abt-user-img img {
  height: 100%;
  width: 100%;
}
.articlebar p {
  margin-bottom: 25px;
}
.articlebar h3 {
  font-size: 28px;
}
.articlebar h3,
.articlebar h4,
.articlebar h5 {
  margin-bottom: 20px;
  font-weight: 600;
}
.articlebar .art-top-heading {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.articlebar .article-img {
  width: 100%;
  margin-bottom: 15px;
}
.articlebar .art-auther {
  margin-bottom: 30px;
}
.articlebar .quote-box {
  padding-left: 25px;
  border-left: 2px solid var(--white);
  margin-bottom: 30px;
}
.articlebar .quote-box h5 {
  font-size: 24px;
  line-height: 1.3;
}
.articlebar p a {
  text-decoration: underline;
}
.articlebar .art-tags-icons-wrp {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  border: 1px solid var(--border-color);
  padding: 15px;
  margin-bottom: 40px;
}
.articlebar .art-tags-icons-wrp .tags-ul li {
  padding: 4px 20px;
  border: 1px solid var(--border-color);
  line-height: 1;
}
.articlebar .art-tags-icons-wrp .tags-ul li:not(:last-of-type) {
  margin-right: 10px;
}
.articlebar .art-tags-icons-wrp label {
  margin-right: 15px;
}
.art-tags-icons-wrp .art-social {
  background-color: var(--third-color);
  padding: 10px;
}
.articlebar .comment-form-wrp {
  background: var(--third-color);
}
.articlebar .comment-form,
.articlebar .comment-item-wrapper {
  max-width: 750px;
  margin: auto;
  padding: 40px;
}
.articlebar .comment-form-wrp .section-title {
  margin: auto;
  max-width: 100%;
  text-align: center;
}
.articlebar .comment-form .cart-btn {
  border: 1px solid var(--theme-color);
}
.articlebar .comment-form svg {
  margin: 0 0 0 10px;
}
.articlebar .comment-form .form-group input,
.articlebar .comment-form .form-group textarea {
  background-color: var(--second-color);
}
.articlebar .social-icon .social-ul {
  gap: 10px;
}
.articlebar .social-icon .social-ul li {
  display: flex;
  align-items: center;
}
.articlebar .social-icon .social-ul li a svg {
  height: 18px;
  width: 18px;
}
.articlebar .social-icon .social-ul li a svg path {
  fill: var(--white);
}
.blog-grid-sec .blg-recent .blog-itm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  border-top: 1px solid var(--border-color);
}
.blog-grid-sec .blg-recent {
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.blog-grid-sec .blogleftbar .section-title {
  padding: 10px;
  margin-bottom: 0;
}
.blog-grid-sec .blogleftbar .section-title h4 {
  text-transform: capitalize;
}
.blog-grid-sec .blogleftbar .section-title h2,
.blog-grid-sec .blogleftbar .blg-elagant .section-title h2 {
  font: var(--h4);
}
.blog-grid-sec .blogleftbar .blg-elagant .section-title {
  border-bottom: 1px solid var(--border-color);
}
.blg-elagant .leave-form p {
  margin-bottom: 15px;
}
.blg-elagant .leave-form .form-container {
  padding: 15px;
}
.blg-elagant .leave-form .form-container .cart-btn svg {
  margin-left: 10px;
}
.blog-grid-sec .blg-elagant {
  border: 1px solid var(--border-color);
}
.blog-grid-sec .blg-recent .blog-itm .blog-image {
  max-width: 90px;
  flex: 0 0 90px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-image .blog-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-grid-sec .blg-recent .blog-itm .blog-image .blog-img {
  padding-top: 90%;
  position: relative;
  display: block;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content {
  flex: 1;
  margin-left: 10px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content h5 {
  margin-bottom: 10px;
  font: var(--h6);
}
.blog-grid-sec .blg-recent .blog-itm .blog-content svg {
  height: 13px;
  width: 13px;
  margin-right: 5px;
}
.blog-grid-sec .blg-recent .blog-itm .blog-content svg path {
  fill: var(--white);
}
.blog-grid-sec .blogrightbar .blog-content .blg-cmnt {
  margin-top: 10px;
}
.blog-grid-sec .blogrightbar .blog-card {
  padding-bottom: 20px;
}
.blog-grid-sec .blg-elagant .form-container .cart-btn {
  width: 100%;
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li a {
  padding: 5px 12px;
  display: inline-block;
}
.pagination li a.active {
  background-color: var(--border-color);
}
.pagination li:not(:last-of-type) {
  margin-right: 5px;
}
.pagination li a svg {
  height: 10px;
  width: 10px;
}
.pagination li a svg path {
  fill: var(--white);
}
.blogrightbar .blog-card .blog-content .blog-top-content p {
  margin: 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.faq-page .set .acnav-label {
  padding: 12px 40px 12px 12px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.faq-page .set {
  margin-bottom: 30px;
}
.faq-page .set .acnav-label:after {
  content: "";
  position: absolute;
  background-image: url(angle-down-small-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 20px;
  width: 20px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-size: 12px;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.faq-page .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);
}
.faq-page .set .acnav-list {
  padding: 15px;
  border: 1px solid var(--theme-color);
  border-top: 0;
}
.collection-main-sec .row {
  gap: 30px 0;
}
.collection-main-sec .collection-card-inner {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--third-color);
}
.collection-card-inner .collection-image {
  position: relative;
  width: 100%;
  display: block;
  padding-top: 114%;
}
.collection-card-inner .collection-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: center;
}
.collection-card-inner .collection-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.collection-card-inner .collection-content h2 {
  font: var(--h4);
  margin-bottom: 10px;
}
.collection-card-inner .collection-content h2 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--first-font);
}
.contact-page .contact-left-inner {
  background-color: var(--third-color);
}
.contact-page .contact-left-inner .contact-form {
  padding: 15px;
}
.contact-page .contact-left-inner .contact-form .submit-btn {
  margin-top: 15px;
}
.contact-left-inner .contact-form .form-container .form-control {
  background-color: var(--second-color);
}
.contact-left-inner .contact-form .form-container .form-group label {
  font-weight: 600;
}
.contact-left-inner
  .contact-form
  .form-container
  .col-12:last-of-type
  .form-group {
  margin-bottom: 0;
}
.contact-right-inner {
  padding-left: 25px;
}
.contact-right-inner li h2 {
  margin-bottom: 15px;
  font: var(--h5);
}
.contact-right-inner .social-link:not(:last-child) {
  margin-bottom: 20px;
}
.contact-right-inner .social-link .social-inner-link li:not(:last-of-type) {
  margin-bottom: 5px;
}
.contact-right-inner .social-link .social-icons,
.contact-right-inner .social-link .social-icons li {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.contact-right-inner .social-link .social-icons {
  gap: 15px;
}
.contact-right-inner .social-link .social-icons li svg path {
  fill: var(--white);
}
.contact-direction-sec .contact-direction-inner iframe {
  width: 100%;
  height: 500px;
}
.register-page .login-form-inner,
.my-resetpwd-sec .reset-password {
  background-color: var(--third-color);
  padding: 20px;
}
.reset-password .form-container {
  padding: 0;
  border: none;
}
.reset-password label {
  text-align: left;
  width: 100%;
}
.register-page .form-message-success {
  margin-bottom: 10px;
  display: block;
  color: green;
}
.customer.reset-password {
  text-align: center;
}
.register-page .account-info-icon li a {
  background-color: var(--white);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 70px;
  width: 70px;
  margin: 0 auto 10px;
}
.register-page .account-info-icon {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-around;
  gap: 15px;
}
.register-page .account-info-icon li a svg {
  height: 30px;
  width: 30px;
}
.register-page .login-form-inner .section-title h2 {
  font: var(--h3);
  margin-bottom: 15px;
}
.register-page .login-form-inner .form-container {
  padding: 0;
  border: 0;
}
.register-page .login-form-inner .form-container .forgot-pass {
  text-decoration: underline;
  text-align: end;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: end;
  margin-bottom: 15px;
}
.register-page .login-form-inner .form-container .ssl-secure {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.register-page .login-form-inner .form-container .ssl-secure svg path {
  fill: var(--white);
}
.register-page .login-form-inner .create-btn,
.register-page .login-form-inner .submit-btn {
  width: 100%;
  letter-spacing: 1px;
  gap: 10px;
}
.register-page .login-form-inner .create-btn svg,
.register-page .login-form-inner .submit-btn svg {
  margin: 0;
}
.register-page .login-right-inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  padding: 0;
}
.register-page .login-right-inner .login-right-top {
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  padding: 20px;
}
.register-page .login-right-inner .login-right-bottom {
  height: 100%;
  padding: 20px;
  background-color: var(--theme-color);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}
.register-page .back-btn {
  text-decoration: underline;
}
.register-page .account-info-icon li p {
  color: var(--white);
  text-align: center;
}
.register-page .shop-btn {
  text-align: center;
  margin-top: 30px;
}
.my-acc-sec table tr th {
  padding: 10px;
  font-weight: 600;
}
.my-acc-sec table {
  border: 1px solid var(--border-color);
}
.my-acc-sec table tr {
  border-bottom: 1px solid var(--border-color);
}
.my-acc-sec table tr td {
  padding: 10px 15px;
}
.my-acc-sec .account-details ul li {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}
.my-acc-sec .account-details ul li:not(:last-of-type) {
  border-top: 1px solid var(--border-color);
}
.my-acc-sec .account-details ul li label {
  max-width: 10%;
  width: 100%;
}
.my-acc-sec .order-history-frame {
  margin-bottom: 40px;
}
.my-acc-sec.order-main-sec .section-title {
  text-align: center;
}
.my-acc-sec .acc-btn-wrp {
  margin-top: 30px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
}
.my-acc-sec .acc-btn-wrp .acc-btn {
  gap: 10px;
}
.my-acc-sec .acc-btn-wrp .acc-btn svg {
  margin: 0;
}
.order-history-list .order-title {
  margin-bottom: 26px;
}
.order-history-list .order-title h4 {
  margin-bottom: 15px;
}
.order-payment-box {
  max-width: 300px;
  margin-left: auto;
  border: 1px solid var(--border-color);
  padding: 20px;
  border-top: 0;
}
.order-payment-box ul li {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
}
.order-payment-box ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
.order-address-inner .address-title {
  background: var(--third-color);
  padding: 10px;
  margin-bottom: 20px;
}
.order-history-tbl tr td a {
  text-transform: inherit;
}
.cms-page h4,
.cms-page h6 {
  margin-bottom: 20px;
  background-color: var(--theme-color);
  padding: 10px;
  color: var(--white);
}
.cms-page h5 {
  margin-bottom: 20px;
  padding: 10px;
}
.cms-page p:not(:last-of-type) {
  margin-bottom: 25px;
}
.cms-page p {
  padding-left: 15px;
}
.cms-page ul {
  margin: 0 15px 25px;
  padding-left: 20px;
}
.cms-page ul li {
  list-style: disc;
}
.cms-page ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.shipping-page .shipping-tbl {
  max-width: 500px;
  border: 0;
  margin: 0 0 25px;
}
.shipping-page table tr th,
.shipping-page table tr td {
  text-align: start;
}
.shipping-page table tr th {
  background-color: var(--theme-color);
  color: var(--white);
  padding: 10px;
}
.shipping-page table tr td {
  background-color: var(--third-color);
  padding: 10px;
}
.shipping-page table .bg-transparent td {
  background-color: transparent;
}
.shipping-page .help-link {
  margin: 0 15px;
}
deferred-media.deferred-media {
  position: relative;
  padding-top: 90% !important;
  display: flex;
  height: 100%;
  width: 100%;
}
.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.deferred-media[loaded] > .deferred-media__poster {
  display: none !important;
}
.product__modal-opener:not(.product__modal-opener--image) {
  display: none;
}
.deferred-media__poster-button.motion-reduce {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  padding: 10px;
  background: linear-gradient(to left, var(--blue) 50%, var(--second-color))
    border-box;
  background: var(--second-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
}
.deferred-media__poster-button.motion-reduce svg {
  fill: var(--white);
}
.deferred-media:not([loaded]) template {
  z-index: -1;
}
.shopify-payment-button__button {
  text-align: center;
  padding: 12px 35px;
  color: var(--white);
  background-color: var(--second-color);
  appearance: none;
  outline: none;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -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;
  transition: all ease-in-out 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.shopify-payment-button__button[disabled] {
  display: none;
}
.input-box {
  position: relative;
}
button {
  border: none;
  box-shadow: none;
  cursor: pointer;
}
.cart-form {
  display: flex;
  flex-wrap: wrap;
}
.no-js:not(html) {
  display: none !important;
}
.cart-button span {
  display: none;
}
.grecaptcha-badge {
  z-index: 2;
}
.shopify-challenge__container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.shopify-challenge__container .g-recaptcha {
  margin: 0 0 20px;
}
.edit-spacer {
  margin: 30px 0 0;
}
.search-form-wrapper form {
  position: relative;
}
.search-popup .close-search {
  background: none;
  border: none;
  padding: 0;
}
.order-detail h4 {
  margin-bottom: 15px;
}
.order-detail p {
  margin-bottom: 20px;
}
.order-detail {
  margin-bottom: 40px;
}
.order-history-tbl tr {
  border-bottom: 1px solid #f0f0f0;
}
.addressheading {
  padding-bottom: 15px;
}
.adadress .form-container .continue-btn {
  width: auto;
}
.adadress .form-group label {
  text-align: start !important;
  width: 100%;
}
.newadress-btn {
  text-align: center;
}
.my-add-sec .main-new-address {
  border: 1px solid var(--border-color);
  padding: 15px;
}
.my-add-sec select,
.my-add-sec textarea,
.my-add-sec input {
  border: 1px solid var(--border-color);
}
.my-add-sec .adress-main-list {
  border: 1px solid var(--border-color);
  padding: 15px;
  margin: 30px 0 0;
}
.my-add-sec .select option {
  color: var(--black);
}
.my-add-sec .adress-list .continue-btn {
  width: auto;
}
.acc-details p,
.acc-details h4 {
  margin-bottom: 20px;
}
.acc-details p {
  margin-top: 15px;
}
.acc-back-btn-wrp {
  gap: 15px;
}
.acc-back-btn-wrp button {
  gap: 10px;
}
.acc-back-btn-wrp button svg {
  margin: 0;
}
.my-add-sec select {
  padding: 14px 33px 14px 20px;
  background-image: url(angle-down-small-white.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: calc(100% - 15px) 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.add-details {
  background: var(--sixth-color);
  padding: 20px 5px;
  margin: 0;
}
.add-details h5 {
  margin: 0 0 15px;
  background: var(--border-color);
  padding: 10px 15px;
}
.cart-btn[disabled],
.sticky-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.8 !important;
}
.cart-btn[disabled]:hover,
.sticky-btn[disabled]:hover,
.cart-btn[disabled].btn:before,
.cart-btn[disabled].btn:after,
.sticky-btn[disabled]:after,
.sticky-btn[disabled]:before {
  background: var(--theme-color);
  color: var(--white);
}
.cart-btn[disabled].btn:before,
.cart-btn[disabled].btn:after,
.sticky-btn[disabled]:after,
.sticky-btn[disabled]:before {
  width: 100%;
  right: 0;
  left: 0;
}
.product-card .cart-btn[disabled]:hover,
.product-card .cart-btn[disabled]:before,
.product-card .cart-btn[disabled]:after {
  background: var(--second-color);
  color: var(--white);
  border-color: var(--second-color);
}
.cart-btn[disabled].btn:hover svg path,
.sticky-btn[disabled]:hover svg path {
  fill: var(--white);
}
.color_steel-blue {
  background-color: #496074 !important;
}
.color_maroon {
  background-color: #93453e !important;
}
.color_cream {
  background-color: #c1b1a1 !important;
}
.color_sea-green {
  background-color: #779388 !important;
}
.color_purple {
  background-color: #6b4787 !important;
}
.color_violet-red {
  background-color: #b78e8c !important;
}
.color_light-pink {
  background-color: #e4c2c0 !important;
}
.color_dark-blue {
  background-color: #292f44 !important;
}
.product-card .pro-compare,
.compare-label svg,
.product-card .pro-wishlist,
.wishlist-label svg {
  cursor: pointer;
}
.pdp-right-column .available-product.soldout {
  background: red;
}
.product-card-inner .wish-lbl-wrp .pro-compare.active,
.product-card-inner .wish-lbl-wrp .pro-wishlist.active {
  background: var(--theme-color);
}
.notify-btn {
  padding: 13px 22px;
}
.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(--white);
  z-index: 5;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}
.out-of-stock-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.notify-txt {
  line-height: 1.4;
  color: var(--black);
}
.notify-send-btn {
  position: relative;
  margin-top: 20px;
}
.notify-send-btn input {
  height: 45px;
  width: 100%;
  padding: 15px 115px 15px 15px;
  color: var(--black);
}
.notify-send-btn input::placeholder {
  color: var(--black);
}
.notify-send-btn input::-webkit-input-placeholder {
  color: var(--black);
}
.notify-send-btn input::-ms-input-placeholder {
  color: var(--black);
}
.notify-send-btn button {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: auto;
  padding: 10px 35px;
}
.gallery-main .swiper-wrapper {
  height: 100%;
}
.product-notification {
  background: var(--white);
  box-shadow: #00000017 0 0 10px;
  width: 350px;
  position: fixed;
  bottom: 10px;
  left: 30px;
  padding: 10px;
  border-radius: 10px;
  z-index: 2;
  transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  visibility: hidden;
}
.product-notification.active {
  bottom: 30px;
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}
.product-notification .product-suggest {
  display: flex;
  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;
}
.product-notification .product-suggest .product-name {
  font: var(--h6);
  margin: 0 0 15px;
}
.mini-cart-has-item .free_shipping_bar {
  margin-bottom: 20px;
}
.free_shipping_txt .progress_bar_design {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.bar_design_icon {
  width: 26px;
  height: 26px;
  border: 1px solid #ffbc11;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.free_shipping_txt .progress_bar_design .bar_design_icon svg {
  width: 12px;
  height: 12px;
}
.free_shipping_txt .progress_bar_design .bar_design_icon svg path {
  fill: #ffbc11;
}
.progress_bar_design {
  width: 100%;
  height: 6px;
  margin: 0;
  background-color: #e5e5e5;
}
.bar_design {
  background: #ffbc11;
  height: 6px;
}
.success_progress .bar_design {
  background: #3d9851;
}
.success_progress .bar_design_icon {
  border-color: #3d9851;
}
.free_shipping_txt
  .progress_bar_design.success_progress
  .bar_design_icon
  svg
  path {
  fill: #3d9851;
}
.layout-section {
  z-index: 6;
  margin: 0;
  padding: 0;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #0000004d;
  transition: opacity 0.5s;
}
.layout-section.open {
  opacity: 1;
  visibility: visible;
}
.megamenu-popup {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 70%;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  pointer-events: auto;
  width: 100%;
  padding: 40px 20px 20px;
  max-height: 68vh;
  overflow-y: scroll;
}
.megamenu-popup .demo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  cursor: pointer;
}
.megamenu-popup .demo-close svg {
  height: 16px;
  width: 16px;
}
.megamenu-popup .demo-close svg path {
  fill: var(--black);
}
.megamenu-popup .megamenu-image a {
  padding-top: 80%;
}
.megamenu-popup .megamenu-content {
  margin-top: 15px;
  text-align: center;
}
.megamenu-popup .megamenu-content span {
  font: var(--h5);
  color: var(--black);
}
.megamenu-popup::-webkit-scrollbar {
  width: 6px;
}
.megamenu-popup::-webkit-scrollbar-track {
  background: var(--white);
}
.megamenu-popup::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
#recently-viewed-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
#recently-viewed-products .product {
  width: 25%;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
#recently-viewed-products .product .image {
  margin: 0 0 20px;
  display: flex;
}
#recently-viewed-products .product .product-content {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 10px;
  width: 100%;
}
#recently-viewed-products .product-top-content a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#recently-viewed-products .img-wrapper {
  padding-top: 100%;
}
#recently-viewed-products .img-wrapper img {
  border-radius: 10px 10px 0 0;
}
.product-grid-view .product-card-inner .product-image-wrapper {
  display: none;
}
.product-grid-view .product-card .cart-btn-content form,
.product-grid-view .product-card-inner .product-content .new-lbl {
  margin: 0;
}
.template-search .field {
  position: relative;
}
.template-search .form-control {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.template-search .search__button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: auto;
  right: 3px;
  width: 40px;
  height: 40px;
  background: var(--third-color);
  padding: 12px;
}
.template-search .search__button svg {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.template-search .search__button svg path {
  fill: var(--white);
}
.count-desc {
  margin: 20px 0;
  font: var(--h5);
  text-align: center;
  background: var(--sixth-color);
  padding: 15px 5px;
}
.template-search__results .grid__item {
  margin: 0 0 30px;
}
.page-card h4 {
  margin: 0 0 15px;
}
.template-search__results .grid__item.page-card {
  text-align: center;
}
.template-search__results .blg-cmnt {
  margin: 10px 0 0;
}
.jdgm-star {
  font-weight: 400 !important;
}
.reviews-stars-wrap .jdgm-widget {
  margin: 0 0 10px;
}
.newsletter-form__message {
  position: absolute;
  top: 100%;
  bottom: auto;
  left: 0;
  right: 0;
  display: flex;
  column-gap: 10px;
  margin: 10px 0 0;
  font: var(--common-text);
}
.newsletter-form__message--success {
  color: #0a942a;
  border-color: #0a942a;
}
.newsletter-form__message--error {
  color: #dc0000;
}
.comment-form .errors {
  margin: 0 0 20px;
}
.comment-form .errors ul {
  padding: 15px 20px;
  border: 1px solid #ff0000;
  background: #ff00001f;
}
.comment-form .errors ul li {
  margin: 0 0 5px;
  color: red;
}
.comment-form .errors ul li:last-child {
  margin: 0;
}
.form__message {
  border: 1px solid #ff0000;
  display: block;
  padding: 10px;
  color: red;
  background: #ff00001c;
  margin: 0 0 15px;
}
.form__message_success {
  border: 1px solid #276221;
  display: block;
  padding: 10px;
  color: #276221;
  background: #27622147;
  margin: 0 0 15px;
}
.subscribe-section-form small {
  margin: 15px 0 0;
  z-index: 2;
}
.login-header {
  position: relative;
}
.login-header .menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  background-color: var(--white) !important;
  min-width: 160px;
  margin: 20px 0 0;
  padding: 15px;
  transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 40px #00000024;
}
.login-header:hover .menu-dropdown {
  transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
}
.login-header .menu-dropdown li {
  padding: 0 !important;
  max-width: 100%;
  line-height: 1;
}
.site-header .menu-right li.login-header li {
  background: none;
  margin-left: 0 !important;
}
.site-header .menu-right li.login-header li a {
  color: var(--black);
  display: inline-flex;
}
#recover .btn {
  width: auto;
}
.collection--empty h3 {
  margin: 0 0 10px;
}


.related-cart-wrp .swiper-pagination-bullet-active {
  outline: 1px solid var(--theme-color);
  outline-offset: 3px;
}
.related-cart-wrp .swiper-pagination-bullet {
  background: var(--theme-color);
}
.header-style-one .menu-right li a.mini-cart-title {
  display: block;
  text-align: left;
}
.header-style-one .menu-right li a.closecart svg path {
  fill: var(--white) !important;
}
.cartOpen header,
.popup-toggle header,
.open header,
.mobile-open header,
.quick-active header,
.notify-active header {
  z-index: 2;
  transition: unset;
}
.cartOpen header.head-sticky:after {
  height: calc(100% + 1px);
}
.mobile-menu-wrapper .mobile-menu-bar > ul > li:not(.has-children) a svg,
.product-card .product__media-item:not(:first-child),
.offer-box .product__media-item:not(:first-child) {
  display: none;
}
#recover,
#recover + .recover-password,
#recover:target ~ .back-toshop,
#recover:target ~ .section-title,
#recover:target ~ .login-form {
  display: none;
}
#RecoverEmail-email-error {
  border: 1px solid #ff0000;
  display: block;
  padding: 10px;
  color: red;
  background: #ff00001c;
  margin: 0 0 15px;
}
#recover button {
  margin-right: 10px;
}
#recover:target + .recover-password,
#recover:target {
  display: block;
}
#recover .section-title {
  margin-bottom: 20px;
}
.addresses [aria-expanded="false"] ~ div[id] {
  display: none;
}
.addresses [aria-expanded="true"] ~ div[id] {
  display: block;
  margin: 30px 0 0;
  border-radius: 10px;
}
#address_form_new .checkbox-custom label:before {
  border-color: var(--border-color);
}
.card__media .hover-img {
  opacity: 0;
  visibility: hidden;
  position: absolute !important;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.card__media .hover-img img {
  width: 100%;
}
.card__media:hover .hover-img {
  opacity: 1;
  visibility: visible;
}
.card__media:hover .default-img {
  opacity: 0;
  visibility: hidden;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}
.color-variant-swatch.color-list .pro-color:not(:last-of-type) {
  margin-right: 10px;
}
.color-variant-swatch label.color-var,
.quick-view-left .color-variant-swatch .color-var {
  position: relative;
  padding: 0;
  min-height: 30px;
  min-width: 30px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%;
  cursor: pointer;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 1px solid #ddd;
}
.product-card .color-variant-swatch label.color-var,
.offer-box .color-variant-swatch label.color-var {
  min-height: 22px;
  min-width: 22px;
}
.offer-box .color-variant-swatch {
  margin-bottom: 15px;
  display: block;
}
.color-variant-swatch label.size-var,
.quick-view-left .color-variant-swatch .size-var {
  cursor: pointer;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 35px;
  min-width: 75px;
  width: auto;
  gap: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--white);
  background-color: transparant;
  color: var(--white);
  text-transform: capitalize;
}
.quick-view-left .color-variant-swatch .size-var {
  margin: 0 3px;
}
.color-variant-swatch fieldset,
.quick-view-left .color-variant-swatch .button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdp-right-column
  .color-variant-swatch
  input:checked
  + label.size-var:not(.var-image),
.products-add-cart-sticky .color-variant-swatch .button .size-var.sticky-active,
.quick-view-left
  .color-variant-swatch
  input[type="radio"]:checked
  + label.size-var:not(.var-image),
.product-card
  .color-variant-swatch
  input[type="radio"]:checked
  + label.size-var:not(.var-image) {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.product-card .color-variant-swatch input:checked + label.color-var,
.pdp-right-column .color-variant-swatch input:checked + label.color-var,
.products-add-cart-sticky
  .color-variant-swatch
  .button
  .color-var.sticky-active,
.quick-view-left
  .color-variant-swatch
  input[type="radio"]:checked
  + label.color-var,
.offer-box .color-variant-swatch input:checked + label.color-var,
.color-variant-swatch input:checked + label.var-image {
  box-shadow:
    0 0 0 1px #333,
    inset 0 0 0 2px #fff;
  border: none;
}
.color-variant-swatch label.var-soldout {
  cursor: not-allowed;
  opacity: 0.4;
}
.pdp-right-column .color-variant-swatch fieldset:not(:last-of-type) {
  margin-top: 10px;
  padding-bottom: 15px;
}
.color-variant-swatch input[type="radio"],
.quick-view-right .color-variant-swatch .button input[type="radio"],
.quick-view-left .color-variant-swatch .pro-color.active label:after,
.quick-view-left .color-variant-swatch input:checked + label:after {
  display: none;
}
fieldset {
  border: none;
}
.shipping-tbl {
  margin-bottom: 25px;
}
.contact-left-inner .btn {
  margin-top: 15px;
}
.contact-left-inner textarea {
  margin-bottom: 15px;
}
.contact-right-inner .social-link .social-icons svg {
  width: 18px;
  height: 18px;
}
.contact-left-inner .form-heading {
  margin-bottom: 15px;
}
.recent-slider .product-card .product-card-inner {
  padding: 15px;
}
.pdp-right-column .pro-details p {
  margin-bottom: 0;
}
.mobile-facets__label .feather-check {
  left: 3px !important;
}
.product-filter-right-column .product-card {
  margin-bottom: 30px;
}
.product-filter-right-column .product-list-view .product-card {
  flex: 0 0 auto;
  width: 100%;
}
.product-list-view .product-card-inner .product-content,
.collection .product-card .product-content-top p {
  display: none;
}
.collection .product-list-view .product-card .product-content-top p {
  display: -webkit-box;
}
.product-list-view .product-card .product-card-inner .cart-btn {
  position: unset;
  width: auto;
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.load-more_wrap,
.load-more_wrap img {
  margin: auto;
  text-align: center;
}
.load-more_wrap img {
  width: 50px;
  height: 50px;
}
.hide {
  display: none;
}
.facets-color-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.facets-color-main .facets-color label {
  height: 25px;
  width: 25px;
  padding: 0 !important;
}
.facets-color .color-name {
  display: none;
}
.facets-color-main .facets-color {
  margin-bottom: 0 !important;
}
.facets-color-main .facets-color label input {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.facets-color .facet-checkbox > input[type="checkbox"]:checked ~ .feather-check,
.facets-color
  .mobile-facets__label
  > input[type="checkbox"]:checked
  ~ .feather-check {
  display: none;
}
.facets-color .facet-checkbox > input[type="checkbox"]:checked,
.facets-color .mobile-facets__label > input[type="checkbox"]:checked {
  outline: 2px solid var(--theme-color);
}
.facets-color-main .facets-color .mobile-facets__label > svg {
  border: none;
  color: var(--white) !important;
}
.facets-color-main .mobile-facets__item {
  padding: 0 !important;
}
.mobile-facets__list.facets-color-main {
  padding-left: 5px;
  margin: 10px 0 20px;
}
.jdgm-write-rev-link.jdgm-write-rev-link {
  color: var(--black) !important;
}
.jdgm-form__fieldset .jdgm-btn,
.jdgm-form__fieldset input.jdgm-submit-rev {
  color: var(--black) !important;
  width: 50%;
}
.jdgm-write-rev-link.jdgm-write-rev-link {
  max-width: fit-content !important;
}
.pdp-tab-sec .jdgm-rev-widg__summary-stars {
  margin-bottom: 10px;
}
.pdp-tab-sec .jdgm-form-wrapper {
  padding: 24px 0 0 !important;
  margin-top: 15px !important;
}
.pdp-tab-sec .jdgm-review-widget--small .jdgm-rev-widg {
  padding: 16px !important;
}
.pdp-tab-sec .jdgm-widget-actions-wrapper {
  margin: 0 !important;
}
.jdgm-form__fieldset {
  color: var(--white) !important;
}
.jdgm-form__fieldset-actions {
  display: flex;
  gap: 10px;
}
.pdp-page-main-sec .pdp-right-column .pdp-rating {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.pdp-right-column .jdgm-widget .jdgm-prev-badge {
  display: flex !important;
  align-items: center;
  gap: 15px;
}
.pdp-right-column .product-write-review {
  gap: 8px;
}
.login-right-top h3,
.login-left-inner h3 {
  margin-bottom: 10px;
}
.pdp-slider-img .zoomImg {
  background: var(--second-color);
  cursor: crosshair;
}
.cart-item__price-wrapper .price--end {
  font-size: 20px;
}
.wishlist-pro-btn .cart-form,
.compare-pro-btn .cart-form {
  justify-content: center;
}
.facet-filters__sort option {
  color: var(--black);
}
.shopify-payment-button__more-options {
  display: none !important;
}
.share-button__button {
  display: flex;
  font: var(--common-text);
}
.share-button__button .icon-share {
  margin: 0 10px 0 0;
}
.contact-form .form-container p {
  text-align: center;
}
.comment-item-wrapper .comment-item {
  border: 1px solid var(--border-color);
  padding: 20px;
}
.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 var(--grey-color);
  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: var(--grey-color);
}
.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;
}
.sticky-btn.loading > svg {
  display: none;
}
.product .site-footer {
  margin: 70px 0 81px;
}
.contact-page .contact-left-inner .form-container:last-of-type {
  text-align: center;
}
.my-add-sec .adress-main-list .adress-list .btn:first-of-type {
  margin-right: 10px;
}
.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 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,
    #fff3 0 25%,
    #fff0 25% 50%,
    #fff3 50% 75%,
    #fff0 75% 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;
  }
  to {
    background-position: -60px -60px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  to {
    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);
  }
  to {
    -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);
  }
  to {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
}
.currency .nice-select .nice-select-arrow,
.languages .nice-select.nice-select-arrow,
.currency .nice-select .list li,
.languages .disclosure__list-wrapper ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.currency .nice-select img,
.languages .nice-select img {
  height: 12px;
  width: 15px;
  object-fit: scale-down;
}
.color-variant-swatch .var-image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0 !important;
  height: 60px !important;
  width: 60px !important;
  min-width: auto !important;
}
.quick-view-inner .color-variant-swatch > span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}
.pdp-right-column .color-variant-swatch > label {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  gap: 10px;
}
.products-add-cart-sticky .nice-select {
  max-width: 150px;
  padding: 10px 25px 10px 10px;
  border: 1px solid var(--white);
}
.products-add-cart-sticky .nice-select .nice-select-arrow:after {
  right: 10px;
}
.products-add-cart-sticky .nice-select .list {
  top: auto;
  bottom: 120%;
  transform: scale(0.75) translateY(21px);
}
.products-add-cart-sticky .nice-select.open .list {
  transform: scale(1) translateY(0);
}
.offer-sec .offer-box-inner .offer-btn-wrapper .cart-btn {
  padding: 12px 20px;
}
.jdgm-review-widget--small .jdgm-form__fieldset-actions {
  margin: 0 !important;
}
.jdgm-rev {
  padding: 15px 0 0 !important;
}
.facet-checkbox .feather-check {
  left: 2px !important;
}
.elegant-slider
  .product-card
  .product-card-inner
  .product-content-bottom
  .price {
  margin: 0;
}
.comment-form-wrp .comments p {
  margin: 0 0 15px;
}
.comment-form-wrp .comments p:last-of-type {
  margin: 0;
}
.articlebar .comment-item-wrapper {
  padding-bottom: 0;
}
.cart-item .remove-btn {
  display: flex;
}
.search-popup #predictive-search-results #predictive-search-results-list li {
  padding: 0 10px;
}
.recover-password {
  padding: 0 15px;
}
.main-search .predictive-search {
  position: absolute;
}
.pdp-right-column .nice-select {
  max-width: 200px;
  padding: 8px 45px 8px 8px;
  border: 1px solid var(--white);
}
.pdp-right-column .nice-select option {
  color: var(--black);
}
.ask-qus-popup .ask-submit-btn {
  text-align: center;
}
.predictive-search__heading {
  color: var(--black);
}
.quick-view-inner .color-variant-swatch .radio-buttons {
  gap: 10px;
}
.pdp-right-column .color-variant-swatch {
  display: block;
  margin-bottom: 15px;
}
.pdp-right-column .color-variant-swatch .nice-select:not(:last-of-type) {
  margin: 0 0 15px;
}
body.account table tr td:first-child a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .desk-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  .site-header .mobile-menu {
    display: none;
  }
  .product-list-view .product-card .color-variant-swatch fieldset {
    justify-content: end;
  }
  .product-list-view .product-card-inner {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-col .footer-widget .acnav-list1 {
    display: block !important;
  }
  .footer-col .acnav-label1 svg {
    display: none;
  }
  .product-filter-body .close-filter {
    display: none;
  }
  table tr {
    display: table-row;
  }
  table tr td {
    display: table-cell;
  }
  .cart-table tr th:first-child,
  .cart-table tr td:first-child {
    width: 155px;
  }
  .cart-table tr th:last-child,
  .cart-table tr td:last-child {
    text-align: right;
  }
  #ProductGridContainer .mobile-only {
    display: none !important;
  }
  .sticky-pro-info {
    max-width: 300px;
    width: 100%;
  }
  .quickview-img-slider,
  .quickview-card,
  .quickview-card-inner,
  .quickview-card-image {
    height: 100%;
  }
  .search-popup #predictive-search-results #predictive-search-results-list li {
    width: 33.33%;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --h1: normal 600 40px/1.1 var(--first-font);
    --h2: normal 600 36px/1.1 var(--first-font);
    --h3: normal 600 32px/1.1 var(--first-font);
    --h4: normal 600 24px/1.1 var(--first-font);
    --h5: normal 600 22px/1.1 var(--first-font);
    --h6: normal 600 16px/1.1 var(--first-font);
  }
  .container-fluid {
    padding: 0 15px;
  }
  .out-of-stock-form {
    max-width: 45%;
  }
  .site-footer .footer-top-title h2 {
    font-size: 70px;
    letter-spacing: 5px;
    font-weight: 800;
    padding: 0 0 30px 60px;
  }
  .banner-img-1,
  .banner-img-2 {
    max-width: 150px;
    width: 100%;
  }
  .banner-img-2 {
    bottom: -65px;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2 {
    font-size: 70px;
    letter-spacing: 10px;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2:before {
    font-size: 80px;
    left: -28px;
  }
  .main-banner-sec
    .banner-content-wrapper
    .section-title
    h2.banner-slide-two:before {
    left: -15px;
  }
  .main-banner-sec
    .banner-content-wrapper
    .section-title
    h2.banner-slide-three:before {
    left: -20px;
  }
  .main-banner-sec .banner-content-wrapper {
    padding: 100px 0;
  }
  .main-banner-sec .banner-content-wrapper .subtitle {
    font-size: 20px;
  }
  .discount-banner-sec .discount-banner {
    padding: 40px 15px 250px;
  }
  .offer-sec .offer-box-inner {
    gap: 10px;
  }
  .offer-sec .offer-box-inner .offer-image {
    width: 100%;
    margin: auto;
  }
  .offer-sec .offer-box-inner .deal-timeline > div {
    padding: 2px 5px;
  }
  .offer-sec .offer-content {
    width: 100%;
  }
  .offer-sec .offer-box-inner h3 {
    text-align: center;
  }
  .offer-sec .offer-box-inner .rating-wrp,
  .offer-sec .offer-box-inner .price,
  .offer-sec .offer-box-inner .deal-timeline,
  .offer-sec .offer-box-inner .offer-btn-wrapper {
    justify-content: center;
  }
  .offer-sec .offer-box-inner .offer-btn-wrapper .btn {
    font-size: 0;
    padding: 0;
    height: 35px;
    width: 35px;
  }
  .offer-sec .offer-box-inner .offer-btn-wrapper .btn svg {
    margin: 0;
  }
  .offer-sec .offer-box-inner .pro-btn-wrapper .pro-btn {
    height: 35px;
    width: 35px;
    transform: translate(0);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  .pdp-right-column .select-material-grp .size-btn label {
    width: 40px;
  }
  .pdp-right-column .select-material-grp .radio-buttons {
    gap: 6px;
  }
  .ask-form-wrapper,
  .del-form-wrapper {
    max-width: 70%;
  }
  .right-thumbslider {
    margin-left: -15%;
    margin-right: auto;
  }
  .product-list-view .product-card-inner .product-content-top {
    max-width: 270px;
    flex: 0 0 270px;
  }
  .articlebar h3 {
    font-size: 22px;
  }
  .blog-grid-sec .blg-recent .blog-itm .blog-image {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .blog-grid-sec .blg-recent .blog-itm .blog-content {
    margin-left: 0;
    margin-top: 10px;
  }
  .blog-grid-sec .blg-elagant .form-container .cart-btn {
    padding: 8px 12px;
  }
  .offer-box-inner .radio-buttons {
    justify-content: center;
  }
  .offer-content {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .site-footer {
    margin: 40px 0 0;
  }
  .mobile-menu-wrapper .mobile-lag {
    padding: 15px 10px;
    gap: 20px;
    border-bottom: 1px solid var(--black);
  }
  .mobile-lag .languages,
  .mobile-lag .country-name {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-shadow: 0 1px 2px 1px #00000029;
    box-shadow: 0 1px 2px 1px #00000029;
    padding: 10px;
    color: var(--black);
  }
  .product-list-view .product-card-inner .time-counter {
    margin: 0 0 15px;
    transform: translate(0);
  }
  .login-right-top .section-title {
    text-align: center;
  }
  .adress-list {
    gap: 15px;
  }
  :root {
    --h1: normal 600 36px/1.1 var(--first-font);
    --h2: normal 600 32px/1.1 var(--first-font);
    --h3: normal 600 28px/1.1 var(--first-font);
    --h4: normal 600 22px/1.1 var(--first-font);
    --h5: normal 600 20px/1.1 var(--first-font);
  }
  .pt {
    padding-top: 40px;
  }
  .pb {
    padding-bottom: 40px;
  }
  .btn,
  .btn-secondary {
    padding: 11px 17px;
  }
  .out-of-stock-form {
    max-width: 50%;
    padding: 50px 30px;
  }
  .sticky-pro-inner .text-checkbox,
  .main-navigationbar .menu-left-item .menu-items-col,
  .site-header .announcebar {
    display: none;
  }
  .search-popup .search-popup-wrapper .search-form,
  .search-popup .search-popup-wrapper .search-result {
    max-width: calc(100% - 30px);
  }
  .search-popup .search-popup-wrapper .common-close {
    right: 15px;
    top: 15px;
    width: 18px;
    height: 18px;
  }
  .search-popup .search-eveland .search-form {
    max-width: calc(100% - 30px);
  }
  .subscribe-popup {
    max-width: 725px;
  }
  .subscribe-popup .subscribe-right-col p {
    margin-bottom: 15px;
  }
  .cookie-popup {
    flex-direction: column;
  }
  .cookie-popup .cokkie-popup-title {
    margin-bottom: 10px;
  }
  .site-footer:after,
  .footer-top-title h2 {
    display: none;
  }
  .offset-right {
    margin-right: 0;
  }
  .site-footer .footer-content {
    padding: 30px 15px;
  }
  .site-footer .footer-col:not(:first-child) {
    padding-left: 20px;
  }
  .site-footer .container-offset .footer-row {
    padding: 15px 0 0;
  }
  .site-footer .footer-bottom-inner p {
    padding-left: 0;
  }
  .two-image-sec .image-box {
    padding: 60px 15px;
  }
  .discount-banner-sec .discount-banner {
    padding: 40px 15px 150px;
  }
  .offer-sec .offer-box-inner {
    flex-direction: column;
    text-align: center;
  }
  .offer-sec .offer-box-inner .rating-wrp,
  .offer-sec .offer-box-inner .price {
    justify-content: center;
  }
  .offer-sec .offer-box-inner .deal-timeline {
    font-size: 14px;
    justify-content: center;
  }
  .offer-banner-sec .offer-banner-inner .offer-banner-image {
    max-width: 220px;
    width: 100%;
  }
  .testimonial-sec .testimonial-image,
  .testimonial-sec .testimonial-card-inner .testimonial-icon {
    display: none;
  }
  .testimonial-sec .testimonial-card-inner {
    padding: 15px 15px 70px;
  }
  .testimonial-sec .testimonial-card-inner p,
  .testimonial-sec .testimonial-card-inner .review-star {
    margin-bottom: 15px;
  }
  .testimonial-sec .arrow-wrapper {
    bottom: 15px;
    left: 50px;
  }
  .common-banner-sec {
    padding: 70px 0;
  }
  .pdp-right-column .deal-timeline > span {
    display: none;
  }
  .pdp-right-column .pro-payment .payment-image-wrapper img {
    width: 34px;
  }
  .pdp-right-column .pro-payment .payment-image-wrapper {
    gap: 10px;
  }
  .pdp-right-column .pro-features li .pro-features-btn {
    font-size: 14px;
  }
  .left-mainslider,
  .right-mainslider {
    max-width: 100%;
  }
  .product-list-view .product-card {
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
  }
  .product-list-view .product-card-inner .product-card-image,
  .product-list-view .product-card-inner .product-content-top {
    max-width: 100%;
  }
  .product-list-view .product-card-inner .product-card-image {
    flex: unset;
  }
  .product-list-view .product-card-inner .product-content-top {
    flex: 1;
    margin-left: 0;
    padding: 15px 0 0;
  }
  .product-list-view .product-card-inner .product-content-bottom {
    text-align: start;
  }
  .product-list-view .product-content-bottom .rating-wrp,
  .product-list-view .product-content-bottom .pro-btn-wrapper,
  .product-list-view .product-card-inner .product-content-bottom .price,
  .product-list-view .product-content-bottom .color-swatch-variants {
    justify-content: start;
  }
  .product-list-view .product-content-bottom .btn {
    width: 100%;
  }
  .product-list-view .product-card-inner .product-label-wrp {
    position: absolute;
    margin-bottom: 0;
    flex-direction: column;
  }
  .product-heading-right-column .filter-list-wrp p {
    display: none;
  }
  .about-video-sec {
    padding-top: 40px;
  }
  .about-video-sec .row .banner-left {
    height: 100%;
    margin: 0 0 15px;
  }
  .about-video-sec .banner-right h2 {
    max-width: 100%;
  }
  .about-video-sec .row .banner-right {
    padding: 40px;
    margin-top: 20px;
  }
  .about-video-sec .row .banner-right .banner-content {
    justify-content: start;
  }
  .counter-sec .counting {
    font-size: 34px;
  }
  .join-us-sec .about-join-left .subtitle {
    font-size: 20px;
  }
  .about-join-right img {
    max-width: 100%;
  }
  .join-us-sec .about-join-left {
    padding: 15px;
  }
  .cart-page-sec .cart-coundown svg {
    display: none;
  }
  .cart-page-sec .cart-right {
    margin-top: 15px;
  }
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label,
  .pro-compare-wrap .pro-compare-left .compare-title,
  .pro-wishlist-wrap .pro-wishlist-left .wishlist-title {
    max-width: 20%;
    width: 100%;
    flex: 0 0 20%;
  }
  .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.wishlist-pro-detail,
  .pro-compare-wrap .pro-compare-left .compare-detail.compare-title,
  .pro-wishlist-wrap .pro-wishlist-left .compare-detail.wishlist-title {
    max-width: 40%;
    width: 100%;
    flex: 0 0 40%;
  }
  .compare-pro-detail .prod-img a,
  .wishlist-pro-detail .prod-img a {
    padding-top: 100%;
  }
  .articlebar .art-top-heading {
    margin-bottom: 25px;
  }
  .articlebar .quote-box h5 {
    font-size: 20px;
  }
  .articlebar .quote-box {
    padding-left: 15px;
  }
  .articlebar .section-title .subtitle {
    margin-bottom: 10px;
  }
  .articlebar .about-user {
    margin-bottom: 20px;
  }
  .faq-page .set {
    margin-bottom: 15px;
  }
  .contact-direction-sec .contact-direction-inner iframe {
    height: 300px;
  }
  .my-acc-sec .order-history-frame {
    margin-bottom: 25px;
  }
  .cms-page ul {
    padding-left: 0;
  }
  .search-popup {
    padding: 40px 15px 20px;
  }
  .product .site-footer {
    margin: 40px 0 81px;
  }
  .mobile-lag .nice-select {
    padding: 0;
  }
  .product-list-view .product-card-inner {
    flex-direction: column;
    width: 100%;
  }
  .wishlist-data-label .prod-btn .btn,
  .compare-data-label .prod-btn .btn {
    padding: 11px 6px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --h1: normal 600 32px/1.1 var(--first-font);
    --h2: normal 600 28px/1.1 var(--first-font);
    --h3: normal 600 24px/1.1 var(--first-font);
    --h4: normal 600 20px/1.1 var(--first-font);
    --h5: normal 600 18px/1.1 var(--first-font);
  }
  .pt {
    padding-top: 30px;
  }
  .pb {
    padding-bottom: 30px;
  }
  .site-footer {
    margin: 30px 0 0;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .price {
    font-size: 16px;
  }
  .product-notification {
    width: 300px;
  }
  .product-notification {
    left: 10px;
  }
  .product-notification.active {
    bottom: 70px;
  }
  .out-of-stock-form {
    max-width: 75%;
  }
  .sticky-pro-inner .sticky-image {
    display: none;
  }
  .product-card .deal-timeline {
    width: calc(100% - 20px);
    justify-content: center;
  }
  .size-table-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
  .gallery-thumbs {
    max-width: 50%;
    margin-top: -8%;
  }
  .site-header .main-navigationbar .logo-col {
    max-width: 120px;
  }
  .cartDrawer .mini-cart-footer-icons svg {
    width: 30px;
    height: 30px;
  }
  .subscribe-popup {
    max-width: calc(100% - 30px);
    padding: 40px 15px 15px;
  }
  .cartDrawer,
  .coupon-popup,
  .gift-popup {
    width: 100%;
  }
  .gift-popup .gift-body {
    padding: 20px;
  }
  .coupon-popup .coupon-body .coupon-code {
    margin-bottom: 0;
  }
  .cartDrawer .minicart-btn-wrapper .cart-bottom-btn {
    padding: 15px 18px;
  }
  .cartDrawer .mini-cart-container {
    border-bottom: 2px solid var(--border-color);
    padding: 0 15px;
  }
  .cartDrawer .mini-cart-footer .checkout-btn {
    max-width: 100%;
    padding: 12px 11px;
  }
  .cartDrawer .closecart {
    width: 15px;
    height: 22px;
  }
  .cartDrawer .mini-cart-footer .mini-cart-top,
  .cartDrawer .mini-cart-body,
  .coupon-popup .coupon-body {
    padding: 15px;
  }
  .cartDrawer .free_shipping_txt {
    font-size: 13px;
  }
  .cartDrawer .mini-cart-header {
    padding: 16px 0;
    border-bottom: 0;
  }
  .cartDrawer .mini-cart-footer-total-row {
    font-size: 18px;
    line-height: 18px;
  }
  .search-popup .search-top .section-title h2 {
    max-width: 100%;
  }
  .mobile-menu-wrapper .mobile-menu-bar > ul {
    padding: 10px 15px;
  }
  .mobile-menu-wrapper .menu-close-icon,
  .quick-view-left-inner {
    padding: 15px;
  }
  .quick-view-left .select-material-grp .radio-buttons {
    gap: 10px;
  }
  .quick-view-right-inner {
    padding: 0;
  }
  .quick-view-right .arrow-wrapper .swiper-button-prev,
  .quick-view-right .arrow-wrapper .swiper-button-next {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
  }
  .scroll-progress {
    display: none;
  }
  .mobile-stickybar {
    display: block;
  }
  .site-footer .footer-subscribe-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .site-footer .footer-col,
  .site-footer .footer-social-icon {
    flex: 0 0 100%;
    padding-left: 0;
  }
  .site-footer .footer-social-icon .social-ul {
    justify-content: center;
  }
  .site-footer .footer-widget h2 {
    padding: 0;
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
  }
  .site-footer .footer-widget h2 span {
    flex: 1;
  }
  .site-footer .footer-widget h2 svg {
    margin-left: 10px;
  }
  .site-footer .footer-col:not(:first-child) {
    padding: 0;
  }
  .site-footer .footer-top > .footer-subscribe-col > span,
  .site-footer .footer-top > .footer-social-icon > span,
  .site-footer .subscribe-form-wrapper .subscribe-btn span {
    display: none;
  }
  .site-footer .subscribe-form-wrapper .subscribe-btn svg {
    display: block;
  }
  .site-footer .footer-row .footer-link:not(:last-child) {
    padding-bottom: 10px;
  }
  .site-footer .set {
    margin-bottom: 0;
  }
  .footer-row .acnav-list1 {
    display: none;
  }
  .site-footer .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .site-footer .footer-bottom-inner p {
    margin-bottom: 10px;
  }
  .site-footer .footer-col .acnav-label1 svg {
    transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
  }
  .site-footer .footer-col .is-open > .acnav-label1 svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }
  .site-footer .footer-row .acnav-list1 {
    padding-top: 15px;
  }
  .site-footer .footer-content {
    padding: 30px 15px 25px;
  }
  .banner-img-1,
  .banner-img-2 {
    display: none;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2 {
    font-size: 50px;
    letter-spacing: 5px;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2:before {
    font-size: 60px;
  }
  .main-banner-sec .banner-content-wrapper .subtitle {
    font-size: 14px;
  }
  .main-banner-sec .banner-content-wrapper {
    padding: 60px 0;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 10px;
  }
  .main-banner-sec
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet,
  .main-banner-sec
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    width: 15px;
    height: 8px;
  }
  .main-banner-sec
    .swiper-horizontal
    > .swiper-pagination-bullets
    .swiper-pagination-bullet-active,
  .main-banner-sec
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet-active {
    width: 25px;
  }
  .category-sec .section-title h2,
  .product-sec .section-title h2,
  .two-column-sec .section-title h2,
  .offer-sec .section-title h2,
  .testimonial-sec .section-title h2,
  .home-blog-sec .section-title h2 {
    letter-spacing: normal;
  }
  .two-image-sec .image-box {
    padding: 40px 15px;
  }
  .two-image-sec .row [class*="col-"]:not(:last-of-type),
  .offer-sec .row [class*="col-"]:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .product-card .time-counter {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .product-card:hover .time-counter {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .product-card .product-card-inner .cart-btn,
  .product-card .product-card-inner .pro-btn-wrapper {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    opacity: 1;
    visibility: visible;
  }
  .discount-banner-sec .discount-banner {
    padding: 40px 15px;
  }
  .two-column-sec .column-left-slider,
  .offer-banner-sec .offer-banner-inner .offer-banner-image {
    display: none;
  }
  .product-card-inner .offer-image a {
    padding-top: 45%;
  }
  .partner-logo-sec .partner-logo-item a {
    max-width: 120px;
    width: 100%;
  }
  .home-blog-sec .home-blog-slider .swiper-button-next,
  .home-blog-sec .home-blog-slider .swiper-button-prev {
    opacity: 1;
    visibility: visible;
  }
  .gallery-main {
    max-width: 500px;
    margin: auto;
  }
  .pdp-right-column {
    margin-top: 15px;
  }
  .pdp-right-column .pdp-rating .price ins {
    font-size: 18px;
  }
  .pdp-right-column .pro-fell-dtl .pdp-spacific-var span {
    width: 40%;
  }
  .pdp-right-column .pro-shipping a {
    gap: 10px;
  }
  .pdp-right-column .qnty-btn-wrp .pro-wishlist-btn {
    padding: 8px;
  }
  .pdp-right-column .qnty-btn-wrp .qnty-wrapper-btn {
    gap: 5px;
  }
  .ask-form-wrapper,
  .del-form-wrapper {
    max-width: 100%;
    padding: 30px 15px;
  }
  .sticky-pro-inn .text-checkbox {
    display: none;
  }
  .sticky-pro-info img {
    height: 55px;
  }
  .pdp-tab-sec .tabs-container .tab-content .pdp-tab-des,
  .pdp-tab-sec .write-review {
    padding: 15px;
  }
  .pdp-tab-sec .tabs-container #pdp-tab-2 .pdp-tab-des {
    padding-left: 30px;
  }
  .product-page .site-footer,
  .product-left-thumb .site-footer,
  .product-right-thumb .site-footer,
  .product-no-thumb .site-footer {
    margin-bottom: 85px;
  }
  .pdp-tab-sec ul.tabs li a {
    font-size: 14px;
  }
  .mobile-facets__info,
  .facets__price {
    color: var(--black) !important;
  }
  .facets__price input {
    color: var(--black);
  }
  .facets__price input::placeholder {
    color: var(--black);
  }
  .facets__price input::-webkit-input-placeholder {
    color: var(--black);
  }
  .facets__price input::-ms-input-placeholder {
    color: var(--black);
  }
  .mobile-facets__open .icon {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto;
  }
  .mobile-facets__open {
    max-width: 35px;
    border: 1px solid var(--border-color);
    padding: 2px;
    display: block;
  }
  .product-heading-column .filter-title {
    display: block;
    padding: 0;
    border: 0;
    cursor: pointer;
  }
  .mobile-facets {
    position: fixed;
    top: 0;
    background: var(--white);
    left: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
    -webkit-transform: translate(-100%, 0px);
    -moz-transform: translate(-100%, 0px);
    -ms-transform: translate(-100%, 0px);
    -o-transform: translate(-100%, 0px);
    transform: translate(-100%);
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
  }
  .mobile-open .mobile-facets {
    -moz-transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    -webkit-transform: translate(0);
    transform: translate(0);
    overflow: auto;
    height: 100%;
  }
  .product-filter-body {
    padding: 40px 15px;
    background: var(--white);
    border: 0;
  }
  .close-filter {
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: auto;
    left: 0;
    z-index: 101;
    width: 30px;
    height: 30px;
    padding: 7px;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: var(--theme-color);
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
  }
  .mobile-open .close-filter {
    opacity: 1;
    pointer-events: visible;
  }
  .close-filter svg {
    height: 100%;
    width: 100%;
  }
  .close-filter svg path {
    fill: var(--white);
  }
  .product-filter-body .close-filter {
    display: block;
  }
  .product-widget {
    padding: 0;
  }
  .small-hide,
  .medium-hide,
  .active-facets.active-facets-mobile,
  .product-count.light {
    display: none !important;
  }
  .product-heading-column .filter-title h2 {
    display: none;
  }
  .product-listing-section .product-heading-row .row {
    justify-content: space-between;
  }
  .product-widget > .pro-itm > .acnav-label {
    display: flex;
  }
  .mobile-facets__item .color-name {
    display: flex;
  }
  .about-pro-video-sec {
    padding-top: 30px;
  }
  .about-vid-sec .section-title h2 {
    text-align: start;
  }
  .counter-sec .row .counter-item {
    max-width: 100%;
  }
  .about-join-right img {
    display: none;
  }
  .join-us-sec .about-join-left .subtitle {
    font-size: 16px;
  }
  .join-us-sec .offset-right .row {
    margin: 0 15px !important;
  }
  .join-us-sec .about-join-left,
  .about-video-sec .row .banner-right {
    padding: 15px;
  }
  .our-team-sec .team-card:hover .team-card-inner {
    box-shadow: none;
  }
  .our-team-sec .team-card {
    padding: 0;
  }
  .about-service-sec {
    padding: 30px 0;
  }
  .add-primery {
    margin-bottom: 20px;
  }
  .my-add-sec .adress-main-list {
    margin: 20px 0 0;
  }
  .error-main-sec .eroor-content .large-text {
    font-size: 70px;
  }
  .pro-compare-left,
  .pro-wishlist-left,
  table thead.cart-head {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    display: none;
  }
  .cart-table tr th,
  .cart-table tr td {
    text-align: center;
  }
  .cart-table {
    border: 1px solid var(--border-color);
    border-bottom: 0;
  }
  .cart-table .price {
    font-size: 16px;
  }
  .cart-table .price,
  .cart-table .product-option {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .cart-table tr th:first-child,
  .cart-table tr td:first-child {
    width: 170px;
    margin: auto;
  }
  .cart-table .cart-details {
    width: 100%;
  }
  .cart-table tr td .quantity-wrp {
    margin: auto;
    justify-content: center;
  }
  .order-historycontent .gift-cart {
    flex-direction: column;
    align-items: start;
  }
  .order-historycontent .gift-cart .gift-cart-dtl {
    margin-bottom: 15px;
    flex-wrap: nowrap;
  }
  .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%;
    flex: 0 0 100%;
    padding: 0;
  }
  .pro-compare-scroll .compare-wrap .compare-val-prod,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod {
    display: block;
  }
  .compare-pro-detail .prod-img a,
  .wishlist-pro-detail .prod-img a {
    padding-top: 40%;
  }
  .compare-data-label,
  .wishlist-data-label {
    margin-bottom: 20px;
  }
  .compare-pro-detail .compare-val-prod .prod-title,
  .wishlist-pro-detail .wishlist-val-prod .prod-title {
    font-size: 18px;
  }
  .pro-compare-right,
  .pro-wishlist-right {
    border: 1px solid var(--border-color);
  }
  .compare-wrap,
  .wishlist-wrap {
    padding: 20px 15px 0;
  }
  .wishlist-pro-btn .cart-form,
  .compare-pro-btn .cart-form {
    justify-content: center;
  }
  .articlebar .section-title {
    max-width: 70%;
  }
  .articlebar p,
  .articlebar .art-auther,
  .articlebar h4,
  .articlebar h5,
  .articlebar .art-top-heading {
    margin-bottom: 15px;
  }
  .articlebar .quote-box {
    margin-bottom: 20px;
  }
  .articlebar .art-tags-icons-wrp {
    padding: 10px;
    margin-bottom: 20px;
    gap: 15px;
  }
  .articlebar .art-tags-icons-wrp .tags-ul li {
    padding: 4px 8px;
  }
  .articlebar .art-tags-icons-wrp label {
    margin-right: 10px;
  }
  .articlebar .comment-form,
  .articlebar .comment-item-wrapper {
    max-width: 100%;
    padding: 15px;
  }
  .contact-page .contact-left-inner {
    margin-bottom: 20px;
  }
  .contact-right-inner {
    padding-left: 0;
  }
  .contact-right-inner .col-12:last-of-type .social-link {
    margin-bottom: 0;
  }
  .register-page .account-info-icon li a {
    height: 50px;
    width: 50px;
  }
  .register-page .account-info-icon li a svg {
    height: 22px;
    width: 22px;
  }
  .register-page .login-btn-wrp,
  .register-page .account-btn {
    text-align: center;
  }
  .register-page .login-form-inner .form-container .forgot-pass {
    justify-content: center;
    -webkit-justify-content: center;
  }
  .login-page .login-left-inner {
    margin-bottom: 30px;
  }
  .register-page .login-form-inner {
    padding: 15px;
  }
  .register-page .form-container .btn,
  .register-page .login-form-inner .create-btn {
    width: auto;
  }
  .register-page .login-right-inner .login-right-top {
    padding: 0 0 20px;
  }
  .register-page .shop-btn {
    margin-top: 20px;
  }
  .my-acc-sec .account-details ul li label {
    max-width: 100%;
    margin-bottom: 5px;
  }
  .my-acc-sec .account-details ul li {
    padding: 10px 0;
  }
  .my-acc-sec .acc-btn-wrp {
    margin-top: 20px;
  }
  .my-acc-sec table tr {
    padding: 5px 0;
    border: 0;
  }
  .my-acc-sec table tr:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color);
  }
  .order-history-list .order-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .order-payment-box {
    padding: 15px;
  }
  .shipping-page table tr th,
  .shipping-page table tr td {
    text-align: center;
  }
  .shipping-page .shipping-tbl {
    max-width: 100%;
  }
  .index .site-footer {
    margin: 30px 0 60px;
  }
  .product .site-footer {
    margin: 30px 0 63px;
  }
  .cart-progress-bar {
    margin: 10px 0 0;
  }
  .progress-icon {
    top: 20px;
    height: 45px;
    width: 45px;
  }
  .progress-icon svg {
    height: 30px;
    width: 30px;
  }
  .products-add-cart-sticky .sticky-pro-inner {
    justify-content: center;
  }
  .products-add-cart-sticky .nice-select {
    max-width: 50%;
  }
  .sticky-pro-info,
  .products-add-cart-sticky .qty-spinner {
    display: none;
  }
  .size-popup table tr,
  .order-history-tbl tr {
    padding: 5px 0;
  }
  .size-popup table tr td,
  .order-history-tbl tr td {
    padding: 5px 10px;
    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;
  }
  .size-popup table tr td:before,
  .order-history-tbl tr td:before {
    content: attr(data-label) ":";
    float: left;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
  }
  .order-history-tbl tr td:before {
    color: var(--white);
  }
  .blog-grid-sec .blogrightbar .row [class*="col-"]:last-of-type .blog-card {
    padding: 0;
  }
  .product-widget .acnav-label:after {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .jdgm-widget .jdgm-btn.jdgm-btn {
    width: 100%;
  }
  .add-details .col-sm-6.col-12 {
    padding: 15px 0;
  }
  .filter-select-wrp {
    display: none;
  }
  :root {
    --h1: normal 600 30px/1.1 var(--first-font);
    --h2: normal 600 26px/1.1 var(--first-font);
    --h3: normal 600 22px/1.1 var(--first-font);
  }
  .site-footer .footer-bottom-inner .payment-image-wrapper {
    gap: 12px;
  }
  .out-of-stock-form {
    max-width: calc(100% - 30px);
    padding: 50px 20px;
  }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn {
    font-size: 0px;
  }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn svg {
    margin: 0;
  }
  .cartDrawer .related-cart-inner .related-image a {
    padding-top: 85%;
  }
  .quick-view-popup .quick-close-btn {
    top: 10px;
    right: 10px;
    padding: 12px;
  }
  .product-card-inner .offer-image a {
    padding-top: 75%;
  }
  .pdp-right-column .qnty-btn-wrp .quantity-select {
    order: 1;
  }
  .pdp-right-column .qnty-btn-wrp .pro-wishlist {
    order: 2;
  }
  .pdp-right-column .qnty-btn-wrp .product-form {
    order: 3;
  }
  .shopify-payment-button__button {
    padding: 12px 20px;
  }
  .pdp-right-column .pro-payment .payment-image-wrapper {
    gap: 5px;
  }
  .jdgm-form__fieldset-actions {
    flex-direction: column;
    align-items: center;
  }
  .site-header .menu-right-item > li > a svg {
    width: 18px;
    height: 18px;
  }
  .site-header .menu-right-item {
    gap: 12px;
  }
  .search-popup .search-popup-wrapper .section-title {
    padding: 40px 15px;
  }
  .search-popup .close-search {
    top: 15px;
    right: 15px;
  }
  .subscribe-popup .subscribe-left-col {
    display: none;
  }
  .subscribe-popup .section-title h2 {
    font-size: 20px;
  }
  .cartDrawer .mini-cart-footer-icons .footer-bottom-icon {
    padding: 10px;
  }
  .site-header .cartDrawer .mini-cart-footer .footer-bottom-icon svg,
  .site-header .coupon-popup .coupon-body .coupon-txt svg {
    width: 24px;
    height: 24px;
  }
  .mini-cart-title a.mini-cart-pro-title {
    max-width: 140px;
  }
  .quick-view-left-inner .section-title,
  .quick-view-left .price,
  .quick-view-left .color-swatch-variants,
  .quick-view-left .quick-product-dis p {
    margin-bottom: 15px;
  }
  .quick-view-left .price ins {
    font-size: 20px;
  }
  .mobile-sticky-wrp svg {
    width: 18px;
    height: 18px;
  }
  .mobile-sticky-wrp span {
    font-size: 12px;
  }
  .mobile-sticky-wrp,
  .site-footer .subscribe-form-wrapper input,
  .site-footer .subscribe-form-wrapper .subscribe-btn {
    padding: 10px;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2:before {
    font-size: 36px;
    bottom: 10px;
    left: -12px;
  }
  .main-banner-sec
    .banner-content-wrapper
    .section-title
    h2.banner-slide-two:before {
    left: -5px;
  }
  .main-banner-sec
    .banner-content-wrapper
    .section-title
    h2.banner-slide-three:before {
    left: -8px;
  }
  .main-banner-sec .banner-content-wrapper .section-title h2 {
    font-size: 32px;
  }
  .main-banner-sec .banner-content-wrapper .subtitle {
    margin-bottom: 20px;
  }
  .testimonial-sec .section-title h2:before {
    font-size: 26px;
    bottom: 10px;
  }
  .common-banner-sec {
    padding: 50px 0;
  }
  .gallery-thumbs {
    max-width: 80%;
  }
  .pdp-tab-sec ul.tabs {
    gap: 10px;
    padding-bottom: 15px;
  }
  .pdp-tab-sec ul.tabs li a {
    padding-bottom: 2px;
  }
  .sticky-pro-info img {
    display: none;
  }
  .sticky-data h3 {
    max-width: 170px;
    width: 100%;
  }
  .product-page .site-footer,
  .product-left-thumb .site-footer,
  .product-right-thumb .site-footer,
  .product-no-thumb .site-footer {
    margin-bottom: 77px;
  }
  .product-heading-right-column .product-sorting-row {
    border: 0px;
    padding: 0;
  }
  .product-list-view .product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .filter-select-wrp .featured-select {
    display: none;
  }
  .product-listing-sec .product-heading-row .row {
    justify-content: space-between;
  }
  .filter-title .filter-ic {
    padding: 2px;
  }
  .filter-title .icon {
    height: 19px;
    width: 19px;
  }
  .about-video-sec {
    padding-top: 30px;
  }
  .about-video-sec .banner-right ul li:before {
    background-size: 20px;
  }
  .about-video-sec .banner-right ul li {
    padding-left: 35px;
  }
  .about-video-sec .banner-right li:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .about-video-sec .banner-right ul li h3 {
    margin-bottom: 10px;
  }
  .counter-sec .row {
    gap: 20px;
  }
  .counter-sec .counter-item {
    text-align: center;
  }
  .join-us-sec .about-join-left:after {
    display: none;
  }
  .join-us-sec .about-join-left .about-join-btn .btn-secondary,
  .join-us-sec .about-join-left .about-join-btn .btn {
    max-width: 120px;
  }
  .error-main-sec .eroor-content .section-title h3 {
    margin: 20px 0 15px;
  }
  .compare-data-label:before,
  .wishlist-data-label:before {
    font-size: 14px;
  }
  .compare-pro-detail .compare-val-prod .prod-title,
  .wishlist-pro-detail .wishlist-val-prod .prod-title {
    font-size: 16px;
  }
  .pro-compare-sec .pro-compare-wrap,
  .pro-wishlist-sec .pro-wishlist-wrap {
    margin-bottom: 25px;
  }
  .compare-data-label,
  .wishlist-data-label {
    margin-bottom: 15px;
  }
  .articlebar .section-title {
    max-width: 100%;
  }
  .articlebar .quote-box {
    padding-left: 0;
    border-left: 0px;
  }
  .articlebar .art-tags-icons-wrp {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
  .blog-grid-sec .blg-elagant {
    margin-bottom: 20px;
  }
  .faq-page .set .acnav-label {
    font-size: 14px;
    padding: 12px 35px 12px 12px;
  }
  .faq-page .set {
    margin-bottom: 15px;
  }
  .contact-direction-sec .contact-direction-inner iframe {
    height: 200px;
  }
  .register-page .account-info-icon {
    flex-direction: column;
  }
  .my-acc-sec .acc-btn-wrp .acc-btn {
    padding: 11px 12px;
  }
  .order-address-sec .row [class*="col-"]:not(:last-of-type) {
    margin-bottom: 25px;
  }
  .order-payment-box {
    max-width: 100%;
  }
  .order-address-sec p:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .order-address-inner .address-title {
    margin-bottom: 15px;
  }
  .index .site-footer {
    margin: 30px 0 58px;
  }
  .product-filter-right-column .product-card {
    margin-bottom: 20px;
  }
  .pdp-tab-sec ul.tabs li {
    flex: 1;
    text-align: center;
  }
  .discount-banner-sec .discount-banner:before {
    background: #1c1c1ce5;
  }
  .size-popup .size-form {
    padding: 15px;
  }
}



    .category-product-card {
        background-color: black;
        border-radius: 10px;
        box-shadow: 0 0 10px rgb(234, 0, 0);
        margin-bottom: 20px;
        padding: 15px;
    }

    .category-product-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-box {
        position: relative;
    }

    .new-tag {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #00b894;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
    }

    .product-price{
        color:rgb(5, 0, 149);
        font-weight: bolder;
        font-size: 35px;
    }

    .product-box-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .product-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

    @media (max-width: 576px) {
        .product-box img {
            height: 100px;
        }
    }

    .product-box-bottom {
        padding: 10px;
    }

    .product-box-bottom h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .product-box-bottom p {
        font-size: 14px;
    }

    .cartside-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(34, 41, 62, 0.40);
      z-index: 10000;
      transition: opacity 0.3s;
    }
    .cartside-overlay.active {
      display: block;
    }
    
    .cartsideDrawer, .cartsidedrawer {
      position: fixed;
      top: 0;
      right: -620px;
      width: 620px;
      max-width: 95vw;
      height: 100vh;
      background: #fff;
      box-shadow: -4px 0 24px rgba(34, 41, 62, 0.18);
      z-index: 10001;
      transition: right 0.35s cubic-bezier(.47,1.64,.41,.8);
      overflow-y: auto;
      border-radius: 8px 0 0 8px;
      font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
      color: #212529;
    }
    
    .cartsideDrawer.active, .cartsidedrawer.active {
      right: 0;
    }
    
    .mini-carts-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 24px 12px 24px;
      border-bottom: 1px solid #f2f2f2;
      background: #f8fafc;
      border-radius: 8px 0 0 0;
    }
    
    .mini-carts-header h4 {
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0;
      color: #1a202c;
      letter-spacing: 0.03em;
    }
    
    .closecarts {
      font-size: 2rem;
      color: #d32f2f;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      line-height: 1;
      transition: color 0.25s;
    }
    .closecarts:hover,
    .closecarts:focus {
      color: #b71c1c;
    }
    
    .mini-carts-container {
      padding: 0;
    }
    
    .mini-carts-container table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 0;
    }
    
    .mini-carts-container thead th {
      background: #f5f7fa;
      color: #636e72;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 12px 8px;
      border-bottom: 1px solid #ececec;
      text-align: left;
    }
    
    .mini-carts-container tbody td {
      padding: 14px 8px;
      border-bottom: 1px solid #f1f1f1;
      vertical-align: middle;
      font-size: 1rem;
    }
    
    .mini-carts-container img {
      max-width: 44px;
      border-radius: 6px;
      border: 1px solid #eaeaea;
      background: #f4f4f4;
    }
    
    .update-qty-btn,
    .remove-cart-btn {
      display: inline-block;
      background: #f5f5f5;
      border: none;
      color: #444;
      font-size: 1.1rem;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      margin: 0 2px;
      cursor: pointer;
      transition: background 0.18s, color 0.18s, box-shadow 0.18s;
      box-shadow: 0 1px 3px rgba(60,60,60,0.04);
    }
    .update-qty-btn:hover {
      background: #44b77b;
      color: #fff;
    }
    .remove-cart-btn {
      background: #ffeaea;
      color: #e53935;
      font-weight: bold;
    }
    .remove-cart-btn:hover {
      background: #e53935;
      color: #fff;
    }
    
    .mini-carts-container tr:last-child td {
      border-bottom: none;
    }
    
    .mini-carts-container td[colspan] strong {
      font-size: 1.1rem;
      color: #111;
    }
    
    .mini-carts-container a {
      color: #1976d2;
      text-decoration: none;
      font-weight: 500;
    }
    .mini-carts-container a:hover {
      color: #1565c0;
      text-decoration: underline;
    }
    
    /* Empty cart message */
    .mini-carts-container td[colspan="6"] {
      text-align: center;
      color: #b0b0b0;
      font-size: 1.1rem;
      padding: 40px 0;
    }
    
    .mini-carts-container .cart-summary-row {
      background: #f5f7fa;
      font-weight: bold;
      font-size: 1.1rem;
    }
    
    .mini-carts-container .continue-shopping {
      display: inline-block;
      margin: 1.2em 0 0 0;
      padding: 10px 20px;
      background: #f8fafc;
      color: #1976d2;
      border-radius: 6px;
      border: 1px solid #e0e7ef;
      transition: background 0.22s, color 0.22s;
      text-decoration: none;
      font-weight: 600;
    }
    .mini-carts-container .continue-shopping:hover {
      background: #1976d2;
      color: #fff;
      border-color: #1976d2;
    }
    
    /* Scrollbar styling for sidebar */
    .cartsideDrawer {
      scrollbar-width: thin;
      scrollbar-color: #d1d5db #f5f7fa;
    }
    .cartsideDrawer::-webkit-scrollbar {
      width: 9px;
    }
    .cartsideDrawer::-webkit-scrollbar-thumb {
      background: #e0e0e0;
      border-radius: 8px;
    }
    .cartsideDrawer::-webkit-scrollbar-track {
      background: #f5f7fa;
    }
    
    /* Responsive */
    @media (max-width: 600px) {
      .cartsideDrawer, .cartsidedrawer {
        width: 100vw;
        border-radius: 0;
      }
      .mini-carts-header {
        padding: 16px 12px 8px 12px;
      }
    }

    .accordion-body{
      color:#000000;
    }

    #searchInput::placeholder {
      color: #888;
      opacity: 1;
  }
/*# sourceMappingURL=/cdn/shop/t/2/assets/base.css.map?v=99931240071437562891737010255 */
