/* ============================================= */
/* !!!!         VARIABLES STYLE CSS         !!!! */
/* ============================================= */
:root {
  --first-font: "Roboto", sans-serif;
  --theme-color: #F16D59;
  --second-color: #F5F5F5;
  --grey-color: #636363;
  --border-color: #d3d3d3;
  --black: #1A1616;
  --white: #ffffff;
  --h1: normal 500 51px/1 var(--first-font);
  --h2: normal 500 45px/1.2 var(--first-font);
  --h3: normal 500 32px/1.2 var(--first-font);
  --h4: normal 500 22px/1.2 var(--first-font);
  --h5: normal 500 20px/1.2 var(--first-font);
  --h6: normal 500 18px/1.2 var(--first-font);
  --common-text: normal 400 14px/1.4 var(--first-font);
}
/* ============================================= */
/* !!!!        SITE GLOBAL STYLE CSS        !!!! */
/* ============================================= */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-decoration: inherit;
  vertical-align: inherit;
}
html {
  outline: none;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
.cartdrawer .mini-cart-body::-webkit-scrollbar,
.mobile-menu-drawer .mobile-menu-bar::-webkit-scrollbar {
  width: 6px;
  height: 2px;
}
.categories-wrap .category-dropdown::-webkit-scrollbar-thumb,
#product-results::-webkit-scrollbar-thumb,
.cartdrawer .mini-cart-body::-webkit-scrollbar-thumb,
.mobile-menu-drawer .mobile-menu-bar::-webkit-scrollbar-thumb,
.product-results-mobile::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}
.categories-wrap .category-dropdown::-webkit-scrollbar-track,
#product-results::-webkit-scrollbar-track,
.cartdrawer .mini-cart-body::-webkit-scrollbar-track,
.mobile-menu-drawer .mobile-menu-bar::-webkit-scrollbar-track,
.product-results-mobile::-webkit-scrollbar-track {
  background: var(--grey-color);
}
svg,
img {
  max-width: 100%;
  display: block;
}
a,
.btn,
button {
  text-decoration: none;
  outline: none;
  color: inherit;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  display: inline-block;
  cursor: pointer;
}
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  outline: none;
}
.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="button"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  color: var(--black);
}
:-ms-input-placeholder {
  color: var(--black);
}
::-moz-placeholder {
  color: var(--black);
}
::-ms-input-placeholder {
  color: var(--black);
}
::placeholder {
  color: var(--black);
}
/* HTML5 display-role reset for older browsers */
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%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
}
/* ============================================= */
/* !!!!         SITE TYPOGRAPHY CSS         !!!! */
/* ============================================= */
p,
li,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--common-text);
}
h1,
.h1 {
  font: var(--h1);
}
h2,
.h2 {
  font: var(--h2);
}
h3,
.h3 {
  font: var(--h3);
}
h4,
.h4 {
  font: var(--h4);
}
h5,
.h5 {
  font: var(--h5);
}
h6,
.h6 {
  font: var(--h6);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
b {
  font-weight: bold;
  display: inline-block;
}
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b,
.product-title b {
  color: var(--black);
  display: inline;
  font-weight: 700;
}
p:not(:last-of-type) {
  margin-bottom: 15px;
}
/* ============================================= */
/* !!!!             GRID CSS                !!!! */
/* ============================================= */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.no-gutters {
  margin: 0 !important;
}
.row [class*="col-"] {
  padding: 0 15px;
}
.no-gutters [class*="col-"] {
  padding: 0;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.align-items-start {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.align-items-end {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}
.align-items-center {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
.justify-content-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.justify-content-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.justify-content-start {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.justify-content-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.justify-content-end {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.desk-only {
  display: none !important;
}
.mobile-only {
  display: block !important;
}
/*****  Columns  *****/
.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
/* ============================================= */
/* !!!!          NICE SELECT CSS           !!!! */
/* ============================================= */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border: solid 1px var(--black);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 35px 10px 15px;
  width: 100%;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.nice-select:after {
  content: "";
  display: block;
  height: 10px;
  width: 11px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  background: url(../images/down-arrow1.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 11px;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.nice-select.open: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);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: var(--border-color);
  color: var(--border-color);
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  color: var(--black);
  background-color: var(--white);
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 2;
  width: 100%;
  -moz-transform: scale(0.75) translateY(-21px);
  -o-transform: scale(0.75) translateY(-21px);
  -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  outline: none;
  padding-left: 14px;
  padding-right: 14px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 15px;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  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: bold;
}
.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;
}
/* ============================================= */
/* !!!!          COMMON BUTTON              !!!! */
/* ============================================= */
.btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-transform: capitalize;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white);
  text-align: center;
  padding: 11px 25px;
  appearance: none;
  font: var(--common-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.btn-secondary::before, .btn-secondary::after,
.btn::before, .btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  z-index: -1;
}
.btn-secondary::after,
.btn::after {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
     transition-delay: 0.3s;
}
.btn-secondary svg,
.btn svg {
  margin-right: 10px;
  height: 15px;
  width: 15px;
}
.btn svg path {
  fill: var(--white);
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.btn-secondary:hover::before, 
.btn-secondary:hover::after,
.btn:focus::before, 
.btn:focus::after,
.btn:hover::before, 
.btn:hover::after {
  opacity: 0.12;
  left: 0;
  visibility: visible;
}
.btn:hover,
.btn:focus {
  background: var(--theme-color);
  color: var(--white);
}
.btn:hover svg path,
.btn:focus svg path {
  fill: var(--white);
}
.btn-secondary {
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-transform: capitalize;
  background: var(--theme-color);
  color: var(--white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 25px;
  font: var(--common-text);
  font-size: 16px;
  font-weight: 500;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
.btn-secondary svg path {
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  fill: var(--white);
}
.btn-secondary:hover {
  background: var(--theme-color);
}
.btn-transparent {
  background: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.btn-transparent svg path {
  fill: var(--theme-color);
}
.btn-transparent:hover svg path,
.btn-transparent:focus svg path {
  fill: var(--white);
}
.btn-transparent:hover {
  background: var(--theme-color);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--theme-color);
}
.btn-white svg path {
  fill: var(--theme-color);
}
.btn-white:hover svg path {
  fill: var(--white);
}
/* ============================================= */
/* !!!!             FORM  CSS               !!!! */
/* ============================================= */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="button"]),
input:not([type="radio"]),
select,
textarea {
  position: relative;
  border: 1px solid var(--border-color);
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  /* text-transform: capitalize; */
}
textarea {
  resize: none;
}
form .row {
  margin: 0 -8px;
}
form .row [class*="col-"] {
  padding: 0 10px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
sup {
  top: -0.5em;
}
sub,
sup {
  position: relative;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-left: 5px;
}
.form-group label sup {
  color: red;
  font-size: 10px;
  line-height: 0;
  margin-right: 3px;
}
.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox-custom label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
  padding: 0 0 0 30px;
}
.checkbox-custom label:before {
  content: "";
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--black);
  padding: 8px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 15px;
  left: 0;
  top: 54%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.checkbox-custom input:checked+label:before {
  background-color: var(--black);
  border-color: var(--black);
}
.checkbox-custom label::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 8px;
  border: solid var(--black);
  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 input:checked+label:after {
  border: solid var(--white);
  border-width: 0px 1px 1px 0;
}
.checkbox-custom label a {
  text-decoration: underline;
  font-weight: 600;
}
/** RADIO BUTTON CSS **/
.radio-group input[type="radio"] {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}
.radio-group label {
  cursor: pointer;
  position: relative;
  font-size: 12px;
  padding-left: 24px;
  color: var(--black);
  margin: 0;
  vertical-align: bottom;
}
.radio-group label::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color .5s ease;
  -webkit-transition: border-color .5s ease;
  -moz-transition: border-color .5s ease;
  -ms-transition: border-color .5s ease;
  -o-transition: border-color .5s 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(--theme-color);
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  top: 50%;
  left: 1px;
  right: auto;
  transform: translateY(-50%) scale(0);
  -webkit-transform: translateY(-50%) scale(0);
  -moz-transform: translateY(-50%) scale(0);
  -ms-transform: translateY(-50%) scale(0);
  -o-transform: translateY(-50%) scale(0);
  -webkit-transition: -webkit-transform ease .5s;
  transition: -webkit-transform ease .5s;
  transition: transform ease .5s ;
  transition: transform ease .5s, -webkit-transform ease .5s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: transform ease .5s ;
  -moz-transition: transform ease .5s ;
  -ms-transition: transform ease .5s ;
  -o-transition: transform ease .5s ;
}
.radio-group input[type="radio"]:checked+label::before {
  border-color: var(--theme-color);
}
.radio-group input[type="radio"]:checked+label::after {
  transform: translateY(-50%) scale(0.55);
  -webkit-transform: translateY(-50%) scale(0.55);
  -moz-transform: translateY(-50%) scale(0.55);
  -ms-transform: translateY(-50%) scale(0.55);
  -o-transform: translateY(-50%) scale(0.55);
}
/***** COMMON CSS ****/
.offset-container {
  position: relative;
}
.offset-left {
  margin-left: calc((100% - 1200px) / 2);
  padding-left: 15px;
}
.offset-right {
  margin-right: calc((100% - 1200px) / 2);
  margin-left: 0;
  padding-right: 15px;
}
body.active-menu,
body.cartopen,
body.no-scroll {
  overflow: hidden;
  position: relative;
}
.pt {
  padding-top: 70px;
}
.pb {
  padding-bottom: 70px;
}
.pt-0{
  padding-top: 0 !important;
}
.pb-0{
  padding-bottom: 0 !important;
}
.section-title {
  margin-bottom: 26px;
}
.section-title.text-center p {
  margin-top: 14px;
}
.subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--theme-color);
}
.img-wrapper,
.img-ratio {
  position: relative;
  padding-top: 100%;
  width: 100%;
  display: block;
}
.img-wrapper img,
.img-ratio img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
select.form-control {
  cursor: pointer;
}
/*** swiper slider ****/
.swiper-wrapper {
  height: auto;
}
.flex-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.flex-slider .flex-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-slider .flex-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* swiper slider css arrow  */
.swiper-button-prev,
.swiper-button-next {
  z-index: 2;
  width: 35px;
  height: 35px;
  background: var(--theme-color);
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  left: 0;
  background-image: url(../images/arrow-right.svg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.swiper-button-next::before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--theme-color);
}
/* ============================================= */
/* !!!!     CUSTOMIZE THE NAVBAR            !!!! */
/* ============================================= */
/***** ANNOUCEBAR *****/
.announcebar {
  padding: 10px 0;
  background-color: var(--white);
  display: block !important;
  border-bottom: 1px solid var(--border-color);
}
.announcebar-row ul {
  gap: 15px;
}
.announcebar-row .announcebar-left li:not(:last-of-type) {
  border-right: 1px solid var(--black);
  padding-right: 15px;
}
.announcebar-row li a,
.announcebar-row li {
  gap: 5px;
}
.announcebar-row li a:hover {
  color: var(--theme-color);
}
.announcebar-row li a svg path {
  -webkit-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}
.announcebar-row li a:hover svg path {
  fill: var(--theme-color);
}
.announcebar-row li svg {
  width: 18px;
  height: 18px;
}
.head-sticky .announcebar {
  padding: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}
/*****  MAIN NAVIGATIONBAR CSS  *****/
.site-header {
  position: relative;
  z-index: 3;
}
.home-wrapper {
  overflow: hidden;
}
.header-style-one .main-navigationbar {
  position: relative;
  padding: 20px 0px;
  background-color: var(--white);
  color: var(--black);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .menu-items-col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all ease-in-out 0.4s;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 15px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}
.header-style-one .main-navigationbar .logo-col {
  max-width: 160px;
  width: 100%;
}
.header-style-one .main-navigationbar .logo-col a {
  display: block;
}
.header-style-one .main-navigationbar .logo-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.header-style-one .menu-right .search-header input {
  padding: 0;
  color: var(--black);
  border: none;
}
.header-style-one .search-header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.header-style-one .search-header .search-input-wrap {
  border: 1px solid var(--theme-color);
  padding: 0 0 0 15px;
  gap: 5px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.header-style-one .search-header .search-input-wrap input {
  padding: 0;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-style-one .search-header .search-input-wrap .btn {
  padding: 11px 20px;
}
.header-style-one .search-header .search-input-wrap .btn svg {
  margin-left: 0;
  margin-right: 10px;
}
.header-style-one .menu-right li svg {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-style-one .menu-right>li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-style-one .menu-right li a {
  position: relative;
}
.header-style-one .count {
  position: absolute;
  top: -10px;
  right: -8px;
  height: 17px;
  width: 17px;
  background: var(--theme-color);
  color: var(--white);
  font-size: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  border-radius: 10px;
}
.header-style-one .menu-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 18px;
}
.header-style-one .navigationbar-bottom .main-nav>li:not(:last-of-type) {
  padding-right: 30px;
}
.header-style-one .navigationbar-bottom .main-nav>li>a {
  color: var(--black);
  text-transform: capitalize;
  position: relative;
  font-weight: 400;
}
.header-style-one .navigationbar-bottom .main-nav>li.has-item>a::after {
  content: "";
  position: absolute;
  top: 36%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  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 ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  z-index: 1;
}
.header-style-one .navigationbar-bottom .main-nav>li.has-menu>a:hover:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.header-style-one .navigationbar-bottom .main-nav>li.has-item:hover>a:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header-style-one .navigationbar-bottom .main-nav>li>a:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -3px;
  left: 0;
  right: 0;
  background: var(--black);
  margin: 0 auto;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header-style-one .navigationbar-bottom .main-nav>li>a:hover:before {
  width: 100%;
}
.header-style-one .main-nav>.menu-lnk.has-item>a {
  padding-right: 20px;
}
.header-style-one .navigationbar-bottom .main-nav li a .labl {
  background-color: var(--theme-color);
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 10px;
  margin-left: 5px;
}
.mobile-btn-right {
  cursor: pointer;
}
.site-header .search-form-wrapper .form-select {
  position: absolute;
  left: auto;
  right: 0px;
  top: 50%;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  padding: 8px 10px;
  border-left: 1px solid var(--border-color);
  width: auto;
}
.categories-wrap {
  position: relative;
}
.categories-wrap .btn {
  gap: 8px;
}
.categories-wrap .btn .categorie-svg path {
  fill: unset;
}
.categories-wrap svg {
  margin: 0;
}
.categories-wrap .categorie-svg {
  width: 20px;
  height: 20px;
}
.categories-wrap :is(.category-dropdown, .submenu) {
  position: absolute;
  top: 100%;
  background-color: var(--white);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  min-width: 100px;
  z-index: 2;
  padding: 5px 0;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.categories-wrap .category-dropdown {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}
.categories-wrap .category-dropdown::-webkit-scrollbar {
  width: 3px;
}
.categories-wrap .category-dropdown.open,
.categories-wrap .category-dropdown li.has-menu:hover>.submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}
.categories-wrap ul li {
  position: relative;
  padding: 5px 15px;
  cursor: pointer;
}
.categories-wrap ul li a {
  gap: 7px;
}
.categories-wrap ul li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.categories-wrap ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color);
}
.categories-wrap .category-dropdown .submenu {
  left: 100%;
  top: 0;
}
.navigationbar-bottom {
  margin-top: 20px;
  background-color: var(--second-color);
}
/***** HOME LAYOUT ONE MAIN NAVIGATIONBAR CSS *****/
.header-style-one .menu-right li a svg path {
  fill: var(--black);
}
.head-sticky .main-navigationbar {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--white);
  animation: headerScroll .5s linear;
  -webkit-animation: headerScroll .5s linear;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
}
@-webkit-keyframes headerScroll {
  0% {
    transform: translateY(-20rem);
    -webkit-transform: translateY(-20rem);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
@keyframes headerScroll {
  0% {
    transform: translateY(-20rem);
    -webkit-transform: translateY(-20rem);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
/***** HOME LAYOUT TWO MAIN NAVIGATIONBAR CSS *****/
/*****  Megamenu css  *****/
.header-style-one .navigationbar-bottom .main-nav>li.menu-lnk .menu-dropdown,
.profile-header .menu-dropdown {
  position: absolute;
  top: 100%;
  background-color: var(--white);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  min-width: 220px;
  z-index: 2;
  padding: 15px;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.header-style-one .navigationbar-bottom .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px 0;
}
.header-style-one .navigationbar-bottom .main-nav>li:hover .menu-dropdown,
.profile-header:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.header-style-one .menu-dropdown ul>li:not(:last-of-type) {
  margin-bottom: 10px;
}
.header-style-one .megamenu-list>li span {
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--black);
}
.header-style-one .menu-dropdown ul>li a {
  border-bottom: 1px solid transparent;
  font-size: 14px;
  color: var(--black);
}
.header-style-one .menu-dropdown .arrow-list>li a:hover,
.profile-header .menu-dropdown li a:hover {
  border-color: var(--black);
}
.header-style-one .menu-items-col .main-nav .mobile-menu-button svg {
  height: 22px;
  width: 22px;
}
.profile-header .menu-dropdown {
  top: 30px;
  min-width: 120px;
  right: 0;
}
/******** mobile menu css ********/
.mobile-menu-drawer {
  position: fixed;
  z-index: 4;
  background: var(--white);
  top: 0;
  right: 0;
  height: 100%;
  display: block;
  width: 100%;
  max-width: 400px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translate(100%, 0px);
  -webkit-transform: translate(100%, 0px);
  -ms-transform: translate(100%, 0px);
  -moz-transform: translate(100%, 0px);
  -o-transform: translate(100%, 0px);
}
.mobile-menu-drawer.active-menu {
  -webkit-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
}
.mobile-menu-drawer .menu-close-icon {
  text-align: right;
  padding: 15px 20px;
  background: var(--theme-color);
}
.mobile-menu-drawer .menu-close-icon svg {
  cursor: pointer;
}
.mobile-menu-drawer .menu-close-icon svg path {
  fill: var(--white);
}
.mobile-menu-drawer .mobile-menu-bar {
  height: calc(100vh - 48px);
  overflow: auto;
}
.mobile-menu-drawer ul.mobile-tabs {
  gap: 0;
  margin-bottom: 0 !important;
}
.mobile-menu-drawer .mobile-tabs li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.mobile-menu-drawer .mobile-tabs li a {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  color: var(--black);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}
.mobile-menu-drawer .mobile-tabs li.active a {
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.mobile-menu-drawer .tab-content ul li a {
  width: 100%;
  color: var(--black);
  gap: 10px;
}
.mobile-menu-drawer .tab-content>ul>li {
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu-drawer .tab-content>ul>li>a {
  padding: 12px 15px;
}
.mobile-menu-drawer .tab-content>ul>li ul {
  margin: 0 15px 15px 20px;
}
.mobile-menu-drawer .tab-content>ul>li ul li:not(:last-of-type) a {
  padding: 0 0 10px;
}
.mobile-menu-drawer .tab-content ul li a.acnav-label img{
  width: 20px;
  height: 20px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.mobile-menu-drawer .tab-content ul li a.acnav-label {
  gap: 5px;
}
.mobile-menu-drawer .tab-content ul>li:last-of-type>a {
  border-bottom: none;
}
.mobile-menu-drawer .tab-content ul li a svg {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mobile-menu-drawer .tab-content ul li.has-children.is-open a svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.mobile-menu-drawer .acnav-list {
  padding: 0;
}
/****** CART DRAWER CSS ********/
.overlay {
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
}
.overlay.active,
.cartopen .overlay::after,
.active-menu .menu-overlay::after {
  content: "";
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
}
.cartdrawer {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  background: var(--white);
  max-width: 410px;
  width: 100%;
  height: 100%;
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-transition: 0.4s all;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.cartopen .cartdrawer {
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.cartdrawer .mini-cart-header {
  position: relative;
  text-align: center;
  padding: 17px 30px 16px 30px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--theme-color);
  color: var(--white);
}
.cartdrawer .cart-tottl-itm {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
.cartdrawer .closecart {
  position: absolute;
  left: -38px;
  top: 20px;
  width: 20px;
  height: 20px;
  opacity: 0;
  visibility: hidden;
}
.cartopen .cartdrawer .closecart {
  opacity: 1;
  visibility: visible;
}
.cartdrawer .mini-cart-has-item {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cartdrawer .mini-cart-body {
  overflow-y: auto;
  padding: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.mini-cart-item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--white);
}
.mini-cart-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.mini-cart-image {
  width: 80px;
}
.mini-cart-image a {
  display: block;
  padding-top: 120%;
  position: relative;
  background: var(--second-color);
}
.mini-cart-image img {
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
}
.mini-cart-details {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  padding-left: 15px;
}
.mini-cart-title {
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 600;
}
.mini-cart-title a {
  color: var(--black);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cartdrawer .cart-variable {
  margin-bottom: 10px;
}
.cartdrawer .cart-variable p {
  margin: 0 0 5px;
  font-size: 12px;
  line-height: 14px;
  color: #4e4e4e;
}
.qty-spinner {
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100px;
  height: 35px;
  width: 100%;
}
.qty-spinner button {
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.qty-spinner button svg {
  margin: auto;
  height: 10px;
  width: 10px;
}
.qty-spinner button svg path {
  fill: var(--black);
}
.qty-spinner input {
  border: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 30px;
  color: var(--black);
  padding: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin: 0;
}
del {
  opacity: 0.6;
  text-decoration: line-through;
}
.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1;
  gap: 7px 5px;
}
.price ins {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.price ins.text-danger {
  color: #ff0000;
}
.price .currency-type {
  font-size: 12px;
}
.price del {
  font-weight: 500;
  font-size: 16px;
}
.cartdrawer .mini-cart-details .price {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font: var(--common-text);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cartdrawer .pvarprice {
  margin-top: 12px;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.cartdrawer .price {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}
.cartdrawer .mini-cart-footer {
  padding: 30px;
  border-top: 1px solid var(--border-color);
}
.cartdrawer .mini-cart-footer-total-row {
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black);
  margin: 0 0 20px;
}
.cartdrawer .mini-cart-footer .u-save {
  font-weight: 500;
  font-size: 17px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--black);
  margin-bottom: 25px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cartdrawer .mini-cart-footer .checkout-btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 30px;
}
.cartdrawer .mini-cart-footer .btn svg{
  margin: 0 0 0 10px;
}
.cartdrawer .mini-cart-footer .link-btn  {
  max-width: 300px;
  margin: 0 auto;
}
.cartdrawer .mini-cart-footer .link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.link-btn svg {
  fill: var(--black);
  margin-left: 10px;
  width: 15px;
  height: 15px;
}
.cartdrawer .remove_item svg path {
  fill: var(--theme-color);
}
.cartdrawer .remove_item svg {
  height: 15px;
  width: 15px;
}
.cartdrawer .emptyCart {
  padding: 50px 0 0 0;
}
.cartdrawer .link-btn:before {
  display: none;
}
/**** SEARCH POPUP CSS ****/
.search-popup,
.size-popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 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;
}
.search-popup.active,
.size-popup.active {
  opacity: 1;
  visibility: visible;
}
.search-form-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 60px 0 0;
}
.search-form-wrapper form {
  width: 100%;
  position: relative;
}
.search-popup .close-search {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.search-popup .close-search svg {
  height: 100%;
  width: 100%;
}
.search-form-wrapper .form-inputs {
  width: 100%;
  position: relative;
}
.search-form-wrapper .form-inputs input::-webkit-input-placeholder {
  color: var(--white);
}
.search-form-wrapper .form-inputs input::-moz-placeholder {
  color: var(--white);
}
.search-form-wrapper .form-inputs input:-ms-input-placeholder {
  color: var(--white);
}
.search-form-wrapper .form-inputs input::-ms-input-placeholder {
  color: var(--white);
}
.search-form-wrapper .form-inputs input::placeholder {
  color: var(--white);
}
.search-form-wrapper input {
  padding: 15px 60px 15px 20px !important;
  color: var(--white);
}
.search-form-wrapper .btn {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 40px;
  padding: 0;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-form-wrapper .btn svg {
  width: 16px;
  height: 16px;
  margin: 0 auto;
}
.search-form-wrapper .btn svg path {
  fill: var(--white) !important;
}
/******** popup *******/
#product-results {
  position: absolute;
  z-index: 999;
  left: 50%;
  background: var(--white);
  max-width: 400px;
  width: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
#product-results,
#product-results-mobile {
  max-height: 400px;
  overflow-y: auto;
}
#product-results::-webkit-scrollbar,
#product-results-mobile::-webkit-scrollbar {
  width: 3px;
}
#product-results li:hover {
  background-color: #f0f0f0;
}
#product-results-mobile {
  background-color: var(--white);
}
/****************  TABS CSS *****************/
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
/* ============================================= */
/* !!!!             FOOTER CSS             !!!! */
/* ============================================= */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 20px;
  color: var(--black);
}
.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--black);
  padding: 0 0 30px;
}
.footer-col {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 70px;
}
.site-footer .social-icon {
  padding: 0;
  max-width: 330px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 330px;
  flex: 0 0 330px;
}
.footer-subscribe-col {
  max-width: 290px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 290px;
  flex: 0 0 290px;
}
.social-icon .footer-logo a svg {
  height: 100%;
  width: 100%;
}
.social-icon .social-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social-icon .social-ul li:not(:last-of-type) {
  margin-right: 10px;
}
.social-icon .social-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social-icon .social-ul li a img {
  height: 18px;
  width: 18px;
  object-fit: scale-down;
}
.site-footer .social-icon .social-ul li:hover img path {
  fill: var(--theme-color);
}
.site-footer .social-icon .social-ul li img path {
  fill: var(--black);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
}
.site-footer .footer-widget p {
  padding: 0 0 20px;
  color: var(--black);
}
.site-footer .footer-widget h5 {
  padding: 0 0 20px 0;
  position: relative;
}
.site-footer .footer-link .footer-widget ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.site-footer .footer-link .footer-widget ul>li>a {
  color: var(--black);
}
.site-footer .footer-link .footer-widget ul>li>a:hover {
  color: var(--theme-color);
}
.site-footer .footer-link-3 .footer-widget h4 {
  text-align: end;
}
.footer-subscribe-col h6 {
  font-size: 15px;
  margin-bottom: 5px;
}
.footer-subscribe-col .contactlink {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--black);
}
.footer-subscribe-col .footer-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  white-space: normal;
  word-break: break-all;
}
.footer-subscribe-col .footer-contacts-item svg {
  width: 16px;
  height: 16px;
}
.footer-subscribe-col .addresslink {
  font-size: 16px;
  color: var(--black);
}
.social-icon .footer-logo {
  max-width: 160px;
  width: 100%;
  margin-bottom: 20px;
}
.footer-logo a {
  display: block;
}
.footer-bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-bottom .payment-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
.payment-image-wrapper .payment-image {
  max-width: 40px;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}
.payment-image-wrapper .payment-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.acnav-list {
  display: none;
}
/*************************** HOME BANNER SECTION ***********************/
.main-banner-sec {
  padding-top: 50px;
}
.banner-content-inner .section-title {
  margin-bottom: 15px;
}
.main-banner-sec .banner-content-wrapper {
  position: relative;
  padding: 120px 0px 90px 20px;
  max-width: 440px;
  width: 100%;
  color: var(--black);
}
.banner-content-wrapper p {
  margin-bottom: 20px;
}
.banner-content-wrapper .subtitle {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--theme-color);
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase
}
.banner-content-wrapper .subtitle,
.banner-content-wrapper p {
  color: var(--black);
}
.home-banner-img {
  padding-top: 0;
}
.home-banner-img img {
  -o-object-position: left;
     object-position: left;
}
.main-banner-sec .home-banner-slider .home-btn-wrapper {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 35px;
}
.main-banner-sec .home-banner-slider .swiper-pagination-bullet {
  width: 20px;
  background-color: var(--theme-color);
  opacity: .3;
  border-radius: 50px;
}
.main-banner-sec .home-banner-slider .swiper-pagination-bullet-active {
  width: 30px;
  background: var(--theme-color);
  opacity: 1;
}
/***************** MAIN CATEGORY SECTION *******************/
.shop-category-sec .section-title,
.main-category-sec .section-title,
.product-sec .section-title,
.bestseller-sec .section-title,
.blog-sec .section-title {
  gap: 10px;
}
.category-img-box-body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 145px 15px 15px 15px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.category-img-box-body .content-box h3 {
  font: var(--h4);
  color: var(--black);
  margin-bottom: 10px;
}
.category-img-box-body .content-box .btn-secondary {
  padding: 10px 15px;
  color: var(--black);
  border: none;
}
.category-img-box-body .content-box .btn-secondary:hover {
  color: var(--white);
}
.category-img-box-body img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.main-category-sec .grid-wrapper {
  display: -ms-grid;
  display: grid;
  height: 100%;
  gap: 15px;
  -ms-grid-rows: auto 15px auto 15px auto 15px auto;
      grid-template-areas:
    "item-1 item-2 item-3"
    "item-1 item-2 item-3"
    "item-4 item-2 item-5"
    "item-4 item-2 item-5";
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
.grid-wrapper>.item-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: item-1;
}
.grid-wrapper>.item-2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 7;
  -ms-grid-column: 3;
  grid-area: item-2;
}
.grid-wrapper>.item-3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: item-3;
}
.grid-wrapper>.item-4 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: item-4;
}
.grid-wrapper>.item-5 {
  -ms-grid-row: 5;
  -ms-grid-row-span: 3;
  -ms-grid-column: 5;
  grid-area: item-5;
}
/***** PRODUCT SECTION *****/
.product-sec {
  position: relative;
}
.section-title .section-title-right {
  text-align: right;
}
.product-card,
.blog-card {
  width: 100%;
}
.product-card .product-card-inner,
.blog-card .blog-card-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
}
.product-card .product-lbl {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--theme-color);
  color: var(--white);
  padding: 5px 15px;
  line-height: 1;
  font-size: 12px;
}
.bloge-card .new-lbl {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--theme-color);
  color: var(--white);
  padding: 5px 15px;
  line-height: 1;
  font-size: 12px;
}
.product-card-inner .product-content,
.blog-card-inner .blog-content {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.product-card .product-top-content p,
.blog-card .blog-top-content p,
.blg-elagant .product-top-content span {
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card input[type="radio"] {
  display: none;
}
.product-card .price {
  gap: 10px 5px;
}
.product-card .price ins,
.product-card .price del {
  font-size: 18px;
}
.product-card .price del {
  font-weight: 300;
  color: var(--black);
  opacity: 1;
}
.product-card .wishlist-btn {
  width: 38px;
  padding: 0;
}
.product-card .wishlist-btn svg {
  margin-right: 0;
  width: 18px;
  height: 18px;
}
.pdp-whislist-btn svg path,
.product-card .wishlist-btn svg path {
  stroke: var(--white);
  stroke-width: 1.5px;
  fill: none !important;
}
.pdp-whislist-btn.active svg path,
.product-card .wishlist-btn.active svg path {
  fill: var(--white) !important;
}
.product-slider .product-card,
.bestseller-slider .product-card,
.blog-slider .blog-card {
  padding: 1px;
}
.product-btn-wrp {
  position: absolute;
  right: 15px;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  transform: translateX(200%);
  transition: all 500ms ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  -o-transform: translateX(200%);
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
}
.product-card:hover .product-btn-wrp {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
}
.product-btn-wrp button {
  border: 0;
  background: none;
  padding: 0;
}
.product-btn-wrp button a {
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--theme-color);
  padding: 0;
}
.product-btn-wrp button a:hover {
  background-color: var(--theme-color);
}
.product-btn-wrp button a svg path {
  fill: var(--white)
}
.product-card .cart-btn-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 15px 0 0;
}
.product-card .cart-btn-content .cart-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
}
.product-card .cart-btn svg {
  margin-right: 10px;
  margin-left: 0;
  width: 18px;
  height: 18px;
}
.product-card:hover .wishlist-btn {
  opacity: 1;
  visibility: visible;
}
.product-card .product-card-image {
  position: relative;
}
.product-card .product-card-image img {
  -o-object-position: top;
     object-position: top;
}
.product-widget .colors-checkbox .check-label {
  cursor: pointer;
}
.product-card .product-content .product-top-content,
.blog-card .blog-content .blog-top-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
.product-card .product-content .product-top-content .title {
  margin-bottom: 10px;
}
.blog-card .blog-content .blog-top-content h3,
.product-top-content h3 {
  font: var(--h5);
  color: var(--black);
  margin-bottom: 12px;
}
.product-top-content h3 a,
.vendor-product-top h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .blog-content .blog-top-content h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-arrow-wrapper .swiper-button-next {
  top: auto;
  bottom: 14px;
  right: 50%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.product-arrow-wrapper .swiper-button-prev {
  top: auto;
  bottom: 14px;
  left: 49%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.product-bottom-btn {
  text-align: center;
  padding-top: 40px;
}
.product-arrow-wrapper {
  position: absolute;
  bottom: -15px;
  left: 39%;
}
/*******************  PARTNER LOGO SECTION *************************/
.partner-logo-sec .partner-logo-slider .swiper-slide {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.partner-logo-sec .partner-logo-item a {
  width: 125px;
}
.partner-logo-sec .partner-logo-item a img {
  height: 100%;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.partner-logo-sec .swiper-button-prev,
.partner-logo-sec .swiper-button-next {
  margin: 0;
}
/***** SHOP CATEGORY SECTION *****/
.shop-category-sec .shop-category-box .category-img-box-body {
  color: var(--black);
  padding: 30px 20px 80px 30px;
  z-index: 1;
}
.shop-category-sec .shop-category-box .content-box-title {
  position: relative;
  max-width: 265px;
  width: 100%;
}
.shop-category-sec .shop-category-box h3 {
  margin-bottom: 15px;
}
.shop-category-right-col {
  gap: 30px;
}
.shop-category-sec .shop-category-box p {
  color: var(--black);
  margin-bottom: 15px;
  text-transform: capitalize;
}
.shop-category-sec .shop-category-box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
/***************** BESTSELLER SECTION ********************/
.bestseller-sec .tabs-container,
.bestseller-sec {
  position: relative;
}
.bestseller-sec ul.tabs li.active {
  text-underline-offset: 13px;
  color: var(--theme-color);
}
.bestseller-sec ul.tabs {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
.bestseller-sec ul.tabs li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}
ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
ul.tabs li {
  font-weight: 500;
  cursor: pointer;
  color: var(--theme-color);
}
ul.tabs li.active {
  font-weight: 700;
  text-decoration: underline;
}
.bestseller-sec ul.tabs {
  margin-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
/***************** CMS SECTION ********************/
.cms-content-wrap {
  padding: 70px 50px;
  position: relative;
  color: var(--white);
  z-index: 1;
}
.cms-content-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
.cms-content-wrap .subtitle {
  padding-bottom: 2px;
  color: var(--black);
  border-bottom: 2px solid var(--theme-color);
  display: inline-block;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}
.cms-content-wrap .cms-content {
  max-width: 400px;
  width: 100%;
  color: var(--black);
}
.cms-content-wrap .cms-content .section-title p {
  margin: 15px 0 0;
  font-size: 16px;
}
/*******************  TESTIMONIALS SECTION ****************************/
.testimonials-sec .testi-card-inner {
  background: var(--white);
  width: 100%;
  gap: 20px;
}
.testimonials-sec .testi-card-inner .testi-bottom-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.testimonials-sec .testi-card {
  width: 100%;
}
.testimonials-sec .testi-card-inner p {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.testimonials-sec .col-12:first-child{
  border-right: 2px solid var(--theme-color);
}
.testimonials-sec .section-title {
  margin-bottom: 0;
}
.testimonials-sec .section-title h2 {
  margin-bottom: 15px;
}
.testi-card-inner .review-star img {
  margin: 0 auto 15px;
}
.testi-card-inner .client-info .client-img img {
  margin: auto;
}
.client-info-content {
  gap: 50px;
  width: 100%;
}
.client-info-content svg {
  width: 50px;
  height: 50px;
}
.client-info-content svg path {
  fill: var(--theme-color);
}
.testi-card-inner .client-info span {
  font-weight: 400;
}
.testi-card-inner .client-info {
  font-weight: 600;
  line-height: 1;
  color: var(--black);
  gap: 5px;
}
.testi-card-inner .client-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.testi-card-inner .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testi-card-inner .client-info-wrp {
  gap: 10px;
}
.testi-card-inner .review-star span {
  line-height: 1;
  font-size: 24px;
}
.testi-card-inner .review-star {
  margin-bottom: 20px;
}
.testimonials-btn-wrp .swiper-button-prev,
.testimonials-btn-wrp .swiper-button-next {
  position: relative;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  margin: 0;
}
.testimonials-btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
/*****  BLOG SECTION *****/
.blog-card-inner .img-wrapper {
  padding-top: 110%;
}
.blog-card-inner .blog-lbl {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 5px 10px;
  line-height: 1;
  font-size: 12px;
}
/***************** FASHIONABLE ABOUT SECTION *********************/
.fashionable-about-sec .fashionable-content-inner {
  gap: 15px;
  width: 100%;
}
.fashionable-about-sec .col-12:not(:first-of-type) .fashionable-content-inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fashionable-about-sec .row {
  row-gap: 20px;
}
.fashionable-about-sec .col-12 {
  position: relative;
}
.contact-column .col-12:not(:last-of-type)::after,
.about-counter-sec .col-12:not(:last-of-type)::after,
.fashionable-about-sec .col-12:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 3px;
  height: 100%;
  background: -o-radial-gradient(#F16D59 0%, #FFFFFF 100%, #F16D59 0%);
  background: radial-gradient(#F16D59 0%, #FFFFFF 100%, #F16D59 0%);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.fashionable-about-sec .fashionable-image {
  width: 60px;
  height: 60px;
}
.fashionable-about-sec .fashionable-content h2{
  font: var(--h5);
  margin-bottom: 10px;
}
.fashionable-about-sec .fashionable-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
/***************************  SUBSCRIBE BANNER SECTION *******************************/
.subscribe-sec .subscribe-banner {
  background: var(--theme-color);
  width: 100%;
  padding: 40px 60px;
}
.subscribe-sec .subscribe-banner .subscribe-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.subscribe-sec .subscribe-banner .subscribe-column .section-title {
  margin-bottom: 0;
  max-width: 450px;
  width: 100%;
  color: var(--white);
}
.subscribe-sec .subscribe-banner .subscribe-column .section-title p {
  max-width: 280px;
  width: 100%;
}
.subscribe-sec .subscribe-column h2 {
  font: var(--h3);
  margin-bottom: 10px;
}
.subscribe-sec .subscribe-form-content {
  max-width: 450px;
  width: 100%;
}
.subscribe-section-form .input-wrapper {
  position: relative;
  gap: 10px;
}
.subscribe-section-form .input-wrapper input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--white);
  border-color: var(--white);
}
.subscribe-section-form .input-wrapper input::-webkit-input-placeholder {
  color: var(--white);
}
.subscribe-section-form .input-wrapper input::-moz-placeholder {
  color: var(--white);
}
.subscribe-section-form .input-wrapper input:-ms-input-placeholder {
  color: var(--white);
}
.subscribe-section-form .input-wrapper input::-ms-input-placeholder {
  color: var(--white);
}
.subscribe-section-form .input-wrapper input::placeholder {
  color: var(--white);
}
.subscribe-section-form .input-wrapper .btn:not(:hover) {
  color: var(--black);
}
.subscribe-section-form .input-wrapper .btn::before,
.subscribe-section-form .input-wrapper .btn::after{
  display: none;
}
.subscribe-section-form .input-wrapper .btn:focus,
.subscribe-section-form .input-wrapper .btn:hover{
  border: 1px solid var(--white);
}
.gallery-main,
.bestseller-slider, .blog-slider, .product-slider, .partner-logo-slider{
  padding: 0 10px;
  margin: 0 -10px;
}
/********************  product page css start  ************************/
/*************** pdp-sec css start  *************/
.pdp-page-main-sec {
  position: relative;
}
.gallery-main {
  position: relative;
  overflow: hidden;
}
.pdp-slider-wrapper .swiper-button-prev,
.pdp-slider-wrapper .swiper-button-next{
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}
.gallery-thumbs {
  margin-top: 20px;
  overflow: hidden;
}
.pdp-left-column {
  position: relative;
}
.gallery-thumbs .pdp-thumb-image {
  border: 1px solid var(--border-color);
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.gallery-thumbs .pdp-thumb-image{
  padding-top: 20%;
}
.gallery-thumbs .pdp-thumb-image.swiper-slide-thumb-active {
  border-color: var(--black);
}
.pdp-slider-img {
  position: relative;
  padding-top: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  border: 1px solid var(--border-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%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  cursor: pointer;
}
.pdp-slider-img img,
.pdp-thumb-image img {
  -o-object-position: top;
     object-position: top;
}
.pdp-right-column .price{
  margin-bottom: 15px;
}
.pdp-right-column .price ins{
  font-size: 20px;
}
.pdp-right-column .price-qty-wrp {
  gap: 15px;
  margin-bottom: 15px;
}
.pdp-right-column .pdp-btn{
  padding: 10px 0;
  margin-bottom: 15px;
  gap: 15px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pdp-right-column .price-qty-wrp .price ins {
  font-size: 24px;
}
.pdp-right-column .price-qty-wrp .btn{
  height: 100%;
}
.pdp-right-column .price-qty-wrp .price del {
  font-size: 14px;
}
.pdp-right-column .qty-spinner button {
  width: 35px;
}
.pdp-page-main-sec .pdp-right-column {
  position: relative;
}
.pdp-right-column .pdp-social-icons {
  gap: 10px;
}
.pdp-right-column .pdp-social-icons p{
  text-transform: capitalize;
  font-size: 16px;
}
.pdp-right-column .pdp-social-icons ul li a{
  width: 30px;
  height: 30px;
  padding: 0;
}
.pdp-right-column .pdp-social-icons ul li img{
  margin-right: 0;
}
.pdp-right-column .pdp-social-icons ul li a img {
  height: 15px;
  width: 14px;
  object-fit: scale-down;
}
.pdp-right-column .pdp-social-icons ul {
  gap: 10px;
}
.pdp-right-column .section-title {
  max-width: 90%;
  width: 100%;
  margin-bottom: 15px;
}
.pdp-right-column .section-title h3 {
  margin-bottom: 15px;
}
.pdp-right-column .price-qty-wrp .qty-spinner {
  height: 39px;
}
.pdp-right-column .pdp-rating .available-product{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.pdp-right-column .pdp-rating .available-product span {
  background-color: var(--theme-color);
  color: var(--white);
  padding: 8px 15px;
  line-height: 1;
}
.pdp-right-column .pdp-timer .time-svg {
  width: 55px;
  height: 55px;
  background: var(--theme-color);
}
.pdp-right-column .pdp-timer .time-counter {
  gap: 15px;
}
.pdp-right-column .pdp-timer .time-counter #timer  div{
  background-color: var(--second-color);
  width: 70px;
  padding: 8px 5px;
}
.pdp-right-column #timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}
.pdp-right-column #timer span{
  color: var(--theme-color);
}
.pdp-right-column .time-counter svg {
  height: 30px;
  width: 30px;
}
.pdp-right-column .time-counter #timer span {
  margin-top: 5px;
  line-height: 1;
}
.pdp-right-column .pdp-top-content .pdp-top-label {
  font-weight: 600;
  gap: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.pdp-right-column .select-color-grp .radio-buttons,
.pdp-right-column .select-size-grp .radio-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pdp-right-column .select-color-grp .button input[type="radio"],
.pdp-right-column .select-size-grp .button input[type="radio"] {
  display: none;
}
.pdp-right-column .select-color-grp .button input[type="radio"]:checked+label,
.pdp-right-column .select-size-grp .button input[type="radio"]:checked+label {
  border-color: var(--theme-color);
  color: var(--black);
}
.pdp-right-column .select-color-grp .button label,
.pdp-right-column .select-size-grp .button label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 14px;
  border: 2px solid var(--border-color);
}
.pdp-right-column .select-color-grp .radio-buttons .button .clr {
  width: 20px;
  height: 20px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.pdp-right-column .select-color-grp .radio-buttons,
.pdp-right-column .select-size-grp .radio-buttons {
  margin-top: 8px;
}
.pdp-right-column .select-size-grp,
.pdp-right-column .select-color-grp {
  margin: 0 0 15px;
}
.pdp-right-column .select-color-grp label,
.pdp-right-column .select-size-grp label{
  font-weight: 500;
}
/************** pdp-sec css end  ************/
/************** pdp-tab-sec css start  ************/
.pdp-tab-right{
  padding: 30px;
  background-color: var(--second-color);
}
.pdp-tab-sec .description-content{
  background-color: var(--white);
  padding: 40px 30px;
}
.pdp-tab-sec .pdp-tab-right .tab-head-row {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
  overflow: hidden;
  overflow-x: auto;
}
.pdp-tab-sec .pdp-tab-right ul.tabs {
  margin-bottom: 0px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li a {
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
  display: block;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li a:before {
  content: "";
  height: 2px;
  width: 100%;
  bottom: -1px;
  background: var(--theme-color);
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.pdp-tab-sec .pdp-tab-right ul li.active a:before {
  opacity: 1;
}
.pdp-tab-sec .pdp-tab-right ul.tabs li{
  color: var(--black);
}
.pdp-tab-sec .pdp-tab-right ul.tabs li.active {
  text-decoration: none;
  font-weight: 500;
  color: var(--theme-color);
}
.pdp-tab-sec .payment-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid var(--border-color);
}
.pdp-tab-sec .payment-content ul{
  width: 100%;
}
.pdp-tab-sec .payment-content ul:not(:last-of-type){
  border-right: 1px solid var(--border-color);
}
.pdp-tab-sec .payment-content ul li{
  font-size: 16px;
}
.pdp-tab-sec .payment-content ul li:first-child{
  background-color: var(--second-color);
  border-bottom: none;
}
.pdp-tab-sec .payment-content ul li:not(:last-of-type){
  border-bottom: 1px solid var(--border-color);
}
.pdp-tab-sec .payment-content ul li span{
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  border-right: 1px solid var(--border-color);
}
.pdp-tab-sec .payment-content ul li b{
  font-size: 18px;
}
.pdp-tab-sec .payment-content ul li p{
  padding: 10px 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.pdp-tab-sec .payment-content ul li h3:first-child{
  border-right: 1px solid var(--border-color);
}
/************** pdp-tab-sec css end  ************/
/************** product-list css start  ************/
.product-filter-body {
  position: relative;
  margin-top: 20px;
  padding: 0 10px;
  border: 1px solid var(--border-color);
}
.product-heading-column .filter-title {
  padding: 14px 10px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-filter-column .product-filter-body:before {
  content: "";
  position: absolute;
  left: -50vw;
  width: 50vw;
  height: 100%;
}
.filter-title .filter-icon svg {
  height: 20px;
  width: 20px;
  margin-right: 15px;
}
.product-heading-row .sort-lbl {
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}
.acnav-list {
  display: none;
  padding: 10px 0px 0px 0px;
}
.product-widget .acnav-label {
  display: block;
  position: relative;
  font-weight: 600;
}
.product-widget>.pro-itm>.acnav-label {
  padding: 10px 30px 10px 10px;
  text-transform: capitalize;
  background-color: var(--second-color);
}
.product-widget .acnav-list li a {
  text-transform: capitalize;
}
.product-widget .acnav-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.pro-itm-inner>.filter-listing>ul>li>.acnav-list {
  padding: 10px 0 0px 10px;
}
.product-widget .acnav-label:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-image: url(../images/down-arrow1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.product-widget .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);
}
.product-widget:not(:last-of-type) {
  border-bottom: 1px solid #e2e2e2;
}
.product-widget {
  padding: 10px 0;
}
.text-checkbox {
  gap: 10px;
}
.text-checkbox .checkbox {
  margin: 0;
  float: left;
}
.text-checkbox .checkbox input[type="checkbox"] {
  display: none;
}
.text-checkbox .checkbox input[type="checkbox"]+.checkbox-label {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #dfdacc;
  width: auto;
  position: relative;
  font-weight: 600;
  letter-spacing: 0px;
  top: 0;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all ease-in-out .5s;
  font-size: 13px;
  padding: 5px 14px;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
}
.text-checkbox .checkbox input[type="checkbox"]:checked+.checkbox-label {
  border: 1px solid var(--black);
}
.colour-col:not(:last-of-type) {
  padding: 0 15px 0 0;
}
.price-select {
  margin-left: -5px;
  margin-right: -5px;
}
.price-select .select-col .list {
  max-height: 110px;
  overflow-y: auto;
}
.select-col p {
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}
.select-col {
  width: 100%;
  max-width: 50%;
  padding: 0 5px;
}
.sorting-select {
  min-width: 125px;
}
.sorting-select select {
  padding: 10px 15px 9px;
  color: var(--black);
}
.product-price-widget .acnav-list {
  padding: 10px 0px 10px 0;
}
.colors-checkbox label {
  width: 100%;
}
.custom-checkbox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.custom-checkbox,
.colors-checkbox label {
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  position: relative;
  text-align: left;
}
.custom-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  left: 0;
}
.custom-checkbox input[type="checkbox"]+.color,
.custom-checkbox input[type="radio"]+.color {
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid var(--border-color);
  width: 0.9375rem;
  height: 0.9375rem;
}
.color,
.custom-checkbox input[type="checkbox"]+span.color {
  display: inline-block;
  margin-right: 10px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}
.custom-checkbox input[type="checkbox"]:checked+span.color {
  border: 1px solid var(--black);
}
.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(--black);
  border-width: 0px 1px 1px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.color-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 10px;
  font-size: 13px;
  font-weight: 500;
}
.colors-checkbox .color-count {
  padding: 1px 4px;
  font-size: 12px;
}
.product-widget .acnav-list .colors-checkbox:not(:last-of-type) {
  margin-bottom: 8px;
}
.product-filter-right-column {
  padding-top: 20px !important;
}
.product-filter-right-column .row {
  row-gap: 20px;
}
.text-checkbox .checkbox .clr {
  width: 12px;
  height: 12px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}
.product-size-widget .text-checkbox .checkbox input[type="checkbox"]+.checkbox-label {
  padding: 8px 8px;
  font-size: 14px;
}
.product-size-widget .text-checkbox .checkbox input[type="checkbox"]:checked+.checkbox-label {
  color: var(--black);
}
.product-fil-btn .filter-btn {
  width: 100%;
  margin-bottom: 15px;
}
.product-fil-btn .btn-transparent {
  width: 100%;
  width: 100%;
  padding: 0;
  border: 0;
  color: var(--theme-color);
  background: transparent;
}
.product-fil-btn .btn-transparent:hover {
  background: transparent;
}
.product-heading-right-column .product-sorting-row {
  border: 1px solid var(--border-color);
  padding: 14px 10px;
}
.product-heading-right-column ul.tabs li {
  height: 25px;
  width: 25px;
  background-color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-heading-right-column ul.tabs {
  gap: 10px;
  margin-bottom: 0px;
}
.product-heading-right-column ul.tabs li.active {
  background: var(--theme-color);
}
.product-heading-right-column ul.tabs li.active rect {
  fill: var(--white);
}
.product-heading-right-column ul.tabs li rect{
  fill: var(--grey-color);
}
.product-heading-right-column .filter-list-wrp p {
  margin-left: 10px;
}
.filter-select-wrp .featured-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-heading-right-column ul.tabs li svg {
  height: 12px;
  width: 12px;
}
.product-heading-right-column ul.tabs li svg path {
  fill: var(--black);
}
.product-grid-view .product-card-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 15px;
}
.product-grid-view .product-card-inner .product-card-image {
  max-width: 190px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 190px;
  flex: 0 0 190px;
  width: 100%;
}
.product-grid-view .product-card-inner .product-center-inner {
  max-width: 350px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 350px;
  flex: 0 0 350px;
  width: 100%;
  margin-left: 15px;
}
.product-grid-view .product-card-inner .product-right-inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: end;
}
.product-grid-view .product-card-inner .product-label-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.product-grid-view .product-card-inner .product-lbl {
  position: unset;
}
.product-grid-view .product-card-inner .product-lbl-wrp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product-grid-view .product-card-inner .product-center-inner h4 {
  margin: 15px 0px 10px;
}
.product-grid-view .product-card-inner .img-wrapper {
  padding-top: 90%;
}
.product-grid-view .product-right-inner .product-star-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px;
}
.product-grid-view .product-card .product-btn-wrp {
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}
.product-grid-view .product-card .price {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: 15px;
}
.product-grid-view .color-swatch-variants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: 15px;
}
.product-grid-view .product-card .cart-btn-content {
  opacity: 1;
  visibility: visible;
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.product-grid-view .product-card .cart-btn-content .btn {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.product-filter-right-column .product-grid-view .product-card:not(:last-of-type) {
  margin-bottom: 15px;
}
.product-grid-view .product-card:first-of-type .product-card-inner {
  border-top: 1px solid var(--border-color);
}
.product-filter-body .close-filter {
  display: none;
}
.product-grid-view .product-card-inner h4 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-grid-view .product-card-inner p {
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0px 30px 0px 10px !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  border: none !important;
}
.featured-select .select2-container--open .select2-dropdown--below {
  border: none !important;
}
.product-right-inner .pro-var-lbl,
.product-bottom-content .pro-var-lbl {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-color);
}
/********* pagination css ********/
.pagination-row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination-row ul li{
  background-color: var(--second-color);
}
.pagination-row ul li span,
.pagination-row ul li a {
  padding: 5px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  line-height: 1;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
}
.pagination-row ul li:not(:first-of-type) span,
.pagination-row ul li:not(:last-of-type) a {
  font-size: 16px;
}
.pagination-row ul li.active span,
.pagination-row ul li.active a,
.pagination-row ul li:hover span,
.pagination-row ul li:hover a {
  background-color: var(--theme-color);
  color: var(--white);
}
.pagination-row ul li:not(:last-of-type) {
  margin-right: 5px;
}
.pagination-row {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.pagination-btn-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.pagination-btn-wrp .btn {
  padding: 6px;
}
/************* select2 css  *************************/
.select2-dropdown{
  border-radius: 0 !important;
  z-index: 2 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-position: 32% 0;
  background-size: 12px;
  background-repeat: no-repeat;
  width: 20px !important;
  height: 20px !important;
  margin-left: -10px !important;
  margin-top: 4px !important;
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  -webkit-transform: translateY(-50%) rotate(180deg) !important;
      -ms-transform: translateY(-50%) rotate(180deg) !important;
          transform: translateY(-50%) rotate(180deg) !important;
  margin-top: -4px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 10px 30px 10px 10px !important;
  border: 1px solid var(--border-color) !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}
.right-column .select2-container--default .select2-selection--single .select2-selection__rendered {
  min-height: 44px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}
.select2-container--default .select2-selection--single {
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  border-color: var(--border-color) !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--bs-border-color) !important;
  height: 33px;
}
.select2-container--default .select2-results>.select2-results__options {
  padding: 5px !important;
}
.select2.select2-container {
  z-index: 2;
}
.select2-container--open .select2-dropdown--below {
  border-radius: 0 !important;
}
.select2-container--open .select2-dropdown--below{
  border-top: 1px solid var(--border-color) !important;
}
/************** product-list css end  ************/
/************** collection-main-sec css start  ************/
.collection-main-sec .product-card-inner{
  border: none;
}
.collection-main-sec .product-card-inner .btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--black);
  border: none;
}
.collection-main-sec .product-card-inner .btn:hover{
  color: var(--white);
}
.collection-main-sec .row{
  row-gap: 30px;
}

/************** collection-main-sec css end  ************/
/************** blog-grid-sec css start  ************/
.blog-grid-sec .row {
  row-gap: 20px;
}
/************** blog-grid-sec css end  ************/
/************** articlebar css start  ************/
.articlebar .about-user {
  margin-bottom: 20px;
  gap: 10px;
}
.articlebar .about-user .post-label{
  gap: 5px;
}
.articlebar .about-user .post-label img{
  width: 20px;
  height: 20px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.articlebar .about-user .post-label:not(:last-of-type){
  padding-right: 10px;
  border-right: 1px solid var(--border-color);
}
.article-img2 {
  padding-top: 40%;
  margin-bottom: 20px;
}
.articlebar .art-auther {
  margin-bottom: 20px !important;
}
.articlebar .tags-ul li {
  padding: 8px 15px;
  line-height: 1;
  border: 1px solid var(--border-color);
}
.articlebar .tags-ul {
  gap: 10px;
}
.articlebar label {
  margin-right: 15px;
}
/************** articlebar css end  ************/
/************** about-us-page css start  ************/
.about-us-page .about-left-inner .about-left-img {
  padding-top: 55%;
}
.about-us-page .about-left-inner .about-left-img img{
  object-position: top;
}
.about-us-page .about-right-inner .section-title {
  width: 100%;
  margin: 0;
}
.about-us-page .about-right-inner .section-title h2 {
  font: var(--h3);
  margin-bottom: 15px;
}
.about-full-img-sec .about-full-img {
  padding-top: 35%;
}
.about-full-img-sec .section-title h2 {
  font: var(--h3);
  margin-bottom: 15px;
}
.about-counter-sec .counting {
  font: var(--h2);
  line-height: 1;
  position: relative;
  color: var(--theme-color);
}
.about-counter-sec .counting::after {
  content: " +";
  display: inline-block;
}
.about-counter-sec .counting-letter::after {
  content: "k";
}
.about-counter-sec .counter-item {
  text-align: center;
}
.about-counter-sec .counter-item p {
  margin-top: 10px;
  text-transform: capitalize;
}
.about-counter-sec .col-12{
  position: relative;
}
/************** about-us-page css end  ************/
/************** faq-page css start  ************/
.faq-page .set {
  border: 1px solid var(--border-color);
}
.faq-acnav .section-title {
  margin: 0 0 15px;
}
.faq-page .faq-left-item .faq-acnav .section-title h3{
  font: var(--h4);
}
.faq-page .faq-left-item .section-title h2 {
  margin-bottom: 20px;
}
.faq-page .faq-acnav .set:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-page .set .acnav-label {
  position: relative;
  padding: 15px 45px 15px 15px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
}
.faq-page .set .acnav-label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  height: 20px;
  width: 20px;
  background-color: var(--theme-color);
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.faq-page .set.is-open .acnav-label::after {
  background-image: url(../images/minus.svg);
}
.faq-page .set .acnav-list {
  padding: 15px;
  border-top: 1px solid var(--border-color);
}
/************** faq-page css end  ************/
/************** cms-page css start  ************/
.cms-page h3,
.cms-page h6 {
  margin-bottom: 15px;
}
.cms-page h3 {
  padding: 15px;
  background-color: var(--second-color);
  font: var(--h4);
}
.cms-page p:not(:last-of-type) {
  margin-bottom: 25px;
}
/************** cms-page css end  ************/
/************** contact-page css start  ************/
.contact-column{
  padding: 15px;
  border: 1px solid var(--theme-color);
}
.contact-column .row{
  row-gap: 15px;
}
.contact-column .col-12{
  position: relative;
  text-align: center;
}
.contact-column ul li h2 {
  font: var(--h5);
  color: var(--theme-color);
  margin-bottom: 10px;
}
.contact-column ul .social-link .social-inner-link li:not(:last-of-type) {
  margin-bottom: 5px;
}
.contact-column ul .social-link .social-icons li a:hover img path {
  fill: var(--theme-color);
}
.contact-column ul .social-link .social-icons{
  gap: 15px;
}
.contact-column ul .social-link .social-icons img {
  height: 20px;
  width: 20px;
  object-fit: scale-down;
}
.contact-column ul .social-link .social-icons img path {
  fill: var(--black);
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
}
.contact-form .form-heading h4 {
  margin-bottom: 15px;
}
.contact-direction-inner iframe,
.contact-direction-inner{
  height: 100%;
  width: 100%;
}
.contact-right-inner {
  background: var(--white);
  border: 1px solid var(--border-color);
}
.contact-right-inner h4{
  margin-bottom: 10px;
}
/************** contact-page css end  ************/
/************** vendor-sec css start  ************/
.vendor-sec .row {
  row-gap: 20px;
}
.vendor-card {
  height: 100%;
}
.vendor-card-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: var(--second-color);
}
.vendor-card-inner .vendor-card-image {
  position: relative;
  overflow: hidden;
}
.vendor-card .vendor-card-content h3 {
  font: var(--h5);
}
.vendor-card .vendor-card-content {
  height: 100%;
  -webkit-box-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex: 1;
  flex: 1;
  padding-top: 15px;
}
/************** vendor-sec css end  ************/
/************** vendor-details-sec  css start  ************/
.vendor-details-wrp {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vendor-details-image {
  background-color: var(--second-color);
  padding: 15px;
  max-width: 300px;
  width: 100%;
  overflow: hidden;
}
.vendor-details-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0 0 20px;
}
.vendor-detail-list li {
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.vendor-detail-list li:not(:last-of-type) {
  margin: 0 0 10px;
}
.vendor-detail-list li svg{
  flex-shrink: 0;
}
/************** vendor-details-sec css end  ************/
/************** login-page css start  ************/
.register-page .login-form-inner {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 20px;
}
.register-page .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;
}
.register-page .login-form-inner .form-container.login-btn-wrp{
  gap: 10px;
}
.register-page .shop-btn {
  margin-top: 30px;
}
.register-page .shop-btn .back-btn{
  text-decoration: underline;
}
.form-container .btn {
  width: 100%;
}
/************** login-page css end  ************/
/************** about-info-sec css start  ************/
.about-info-sec .section-title{
  margin-bottom: 15px;
}
.about-info-sec h3{
  font: var(--h4);
  margin-bottom: 15px;
}
/************** about-info-sec css end  ************/
/************** cart-page css start  ************/
/** table css **/
table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: auto;
  text-align: left;
  border: 1px solid var(--border-color);
}
table tr td {
  padding:10px;
  display: block;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
}
table tr {
  display: block;
}
table tr th {
  text-align: center;
  padding:10px;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--second-color);
}
/***** table css *****/
.wishlist-table,
.cart-table {
  border: 0;
}
.wishlist-table tr th,
.wishlist-table tr td,
.cart-table tr th,
.cart-table tr td {
  text-align: left;
  text-transform: capitalize;
}
.wishlist-table .pro-img-cart,
.cart-table .pro-img-cart {
  padding-top: 80%;
}
.wishlist-table .pro-img-cart img,
.cart-table .pro-img-cart img{
  object-position: top;
}
.order-historycontent h5 {
  margin: 0 0 10px;
}
.wishlist-table tr td:first-child,
.cart-table tr td:first-child {
  padding-left: 0;
}
.cart-page-sec .coupon-table .subtotal .price{
  font-weight: 600;
}
.cart-page-sec .coupon-table {
  padding: 15px;
  background-color: var(--second-color);
  margin-top: 30px;
  gap: 30px;
}
.cart-page-sec .coupon-text-btn-wrp {
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cart-page-sec .subtotal p {
  margin-top: 8px;
}
.cart-table tr td .quantity-wrp .qty-spinner {
  width: 100px;
  background-color: var(--second-color);
}
.wishlist-table tr td .pro-var-lbl,
.cart-table tr td ins{
  font-weight: 600;
  color: var(--theme-color);
}
.wishlist-table tr td .remove-btn svg ,
.cart-table tr td .remove-btn svg {
  height: 20px;
  width: 20px;
  margin-left: 10px;
}
.wishlist-page-sec .stk-status {
  position: relative;
  padding: 10px 15px;
  line-height: 1;
  background-color: var(--theme-color);
  color: var(--white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
/************** cart-page css end  ************/
/************** checkout-page css start  ************/
.checkout-page .left-column-top-bar .section-title h3 {
  font-size: 24px;
}
.checkout-page .left-column-inner {
  padding: 15px 0;
  border: 1px solid var(--border-color);
  margin: 0;
}
.checkout-page .left-column .row {
  row-gap: 0;
}
.checkout-page .left-column .left-column-top-bar {
  padding: 15px;
  background-color: var(--second-color);
  border: 1px solid var(--border-color);
  border-bottom: 0;
}
.checkout-page .left-column-top-bar .section-title {
  margin: 0;
}
.checkout-page .left-column-top-bar .left-column-inner {
  margin-top: 15px;
}
.checkout-page  textarea {
  resize: vertical;
  font-family: var(--first-font);
}
.checkout-page .left-column-inner >.col-12:last-child .form-group {
  margin: 0;
}
.checkout-page .mini-cart-image a {
  padding-top: 120%;
}
.checkout-page .mini-cart-image img {
  padding: 5px;
}
.checkout-page .mini-cart-header {
  margin-bottom: 20px;
}
.checkout-page .mini-cart-footer {
  padding: 20px 0 0;
}
.checkout-page .mini-cart-footer .checkout-btn {
  width: 100%;
  margin: 20px auto;
}
.checkout-page .cart-amount-section span {
  font-weight: 600;
}
.checkout-page .price-wrp {
  margin-top: 10px;
  gap: 10px;
}
.checkout-page .price-wrp .btn {
  padding: 7px;
}
.checkout-page .price-wrp .btn svg {
  margin: 0;
}
.checkout-page .mini-cart-title a {
  font-weight: 600;
}
.checkout-page .row {
  row-gap: 15px;
}
.checkout-page .mini-cart-item {
  gap: 15px;
}
.checkout-page .mini-cart-details {
  padding: 0;
}
.checkout-page .check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.payment_type .radio-right {
  width: 35px;
  height: 35px;
}
.payment_type .radio-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.left-column-inner .radio-group .payment_type label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cart-amount-section li:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color)
}
.cart-amount-section li .change_shipping .radio-group{
  gap: 5px;
  margin-bottom: 10px;
}
.cart-amount-section li {
  gap: 10px;
  padding: 10px;
}
.left-column-inner .radio-group .payment_type label .center-descrp {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.place-holder-btn {
  margin: 20px 0 0;
}
.cart-amount-section {
  border: 1px solid var(--border-color);
  margin: 0 0 15px;
}
/************** checkout-page css end  ************/
/************** order-page css start  ************/
.order-details-modal .card .card-header h3,
.order-details .card .card-header h3 {
  font: var(--h4);
}
.order-details-modal .card,
.order-details .card {
  border: 1px solid var(--border-color);
}
.order-details-modal .billing-row ,
.order-details-modal .card:not(:last-of-type),
.order-details .card:not(:last-of-type) {
  margin-bottom: 20px;
}
.order-details-modal .card-header,
.order-details .card-header {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--second-color);
}
.order-details-modal .card-body .table,
.order-details .card-body .table {
  border: none;
}
.order-details-modal .card-body .table tr td,
.order-details-modal .card-body .table tr th,
.order-details .card-body .table tr td,
.order-details .card-body .table tr th{
  text-align: left;
}
.order-details .card-body .table tr th:first-child{
  width: 30%;
}
.order-details .table tbody tr:not(:last-of-type){
  border-bottom: 1px solid var(--border-color);
}
.order-details-modal{
  color: var(--black);
}
.form-select {
  padding: 12px 30px 12px 15px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.thumbnail-upload {
  padding: 3px 3px 3px 15px;
  border-top: 1px solid var(--border-color);
}
.thumbnail-upload input {
  padding: 0 !important;
  border: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.upload-button input {
  display: none;
}
.thumbnail-upload .upload-button {
  color: var(--white);
  margin: 0;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.thumbnail-upload .upload-button svg {
  margin: 0;
}
#file-name {
  margin-top: 10px;
  display: none;
}
/************** order-page css end  ************/
/************** model popup css start ************/
.modal-popup {
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
}
.modal-popup.active,
.modal-popup.in,
.modal-popup.show {
  opacity: 1;
  visibility: visible;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.modal-dialog-inner {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content {
  background: var(--white);
  color: var(--theme-color);
}
.modal-content .modal-header {
  position: relative;
  padding: 15px 45px 15px 15px;
  border-bottom: 1px solid var(--border-color);
}
.modal-content .close-button {
  position: absolute;
  top: 14px;
  left: auto;
  right: 15px;
  border: 0;
  opacity: 1;
  line-height: 1;
  font-size: 25px;
  background: var(--theme-color);
  color: var(--white);
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-title {
  font: var(--h4);
  color: var(--black);
}
.modal-body {
  position: relative;
  padding: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.modal .form-group {
  margin: 0;
}
.modal .row {
  row-gap: 15px;
}
.modal-body form label {
  font-size: 16px;
  color: var(--black);
}
.acc-back-btn-wrp {
  padding:15px;
}
/************** model popup css end ************/
/************** my-account css start ************/
.my-acc-sec .row {
  row-gap: 15px;
}
.account-tabs {
  border: 1px solid var(--border-color);
}
.account-tabs ul.acc-tabs li.active {
  background-color: var(--theme-color);
  color: var(--white);
  font-weight: 500;
}
.account-tabs li.active svg path {
  fill: var(--white);
}
.account-tabs ul.acc-tabs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}
.account-tabs ul.acc-tabs li form a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.account-tabs li:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color);
}
.account-tabs li svg {
  height: 20px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.account-tabs li svg path {
  fill: var(--black);
}
.my-acc-sec .tabs-container h2 {
  font: var(--h4);
  margin: 0 0 15px;
}
.my-acc-sec .tabs-container .form-container{
  border: none;
} 
.form-container {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}
.form-container:last-child {
  border-bottom: 0;
}
.form-btn{
  gap: 10px;
}
.form-btn-wrp {
  gap: 10px;
  padding:15px;
}
.acc-tabs-wrapper #account-tab-3 .section-title h2{
  margin-bottom: 0;
}
.address-book-div{
  padding-bottom: 15px;
}
.my-acc-sec .account-table .action-btn,
.my-acc-sec .add-btn {
  gap: 7px;
}
.my-acc-sec .account-table .action-btn .btn {
  height: 30px;
  width: 30px;
  padding: 5px;
}
.my-acc-sec .account-table .action-btn .btn svg,
.my-acc-sec .add-btn svg,
.pagination-btn-wrp .btn svg {
  margin: 0;
}
.account-table tr {
  border-bottom: 1px solid var(--border-color);
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.account-table tr th {
  white-space: nowrap;
}
.account-table tr th,
.account-table tr td {
  text-align: start;
  color: var(--black);
}
.account-table {
  border: 0;
}
.form-wrapper,
.my-acc-sec .order-table-wrp {
  border: 1px solid var(--border-color);
}
.my-acc-sec .tabs-container .form-group {
  margin: 0;
}
/************** my-account css end ************/
/************** error css start ************/
.theme-page-not-found-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.error-main-sec .eroor-content .large-text {
  font-size: 100px;
  line-height: 1;
  margin: 0 0 15px;
}
.error-main-sec .eroor-content .section-title h3 {
  margin: 0 0 15px;
}
.error-main-sec .eroor-content .back-btn{
  text-decoration: underline;
}
/************** error css end ************/
/************** external-left-btn css start ************/
.external-left-btn {
  position: fixed;
  z-index: 2;
  width: 70px;
  height: auto;
  left: -70px;
  top: 50%;
  transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .5s cubic-bezier(0.77, 0, 0.175, 1);
}
.external-left-btn .show-btn {
  position: absolute;
  z-index: 1;
  right: -55px;
  height: 55px;
  width: 55px;
  padding: 0;
  font-size: 20px;
  border-left: 0;
  display: none;
  border: 1px solid var(--white);
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.external-left-btn .left-btn-inner {
  position: relative;
  z-index: 1;
  height: 55px;
  background-color: var(--white);
  gap: 10px;
  padding: 10px;
}
.external-left-btn.active {
  -webkit-box-shadow: 0 0 9.8px 0.2px rgba(0, 0, 0, 0.14);
          box-shadow: 0 0 9.8px 0.2px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
.external-left-btn .donation-side-btn,
.external-left-btn .free-shipping-button-div .free-shipping-button,
.external-left-btn .Coupon-btn,
.external-left-btn .product-catelog-side-btn,
.external-left-btn .product-compare-side-btn {
  padding: 0;
}
.external-left-btn .free-shipping-button-div .free-shipping-button i {
  font-size: 22px;
}
.external-left-btn .free-shipping-button-div .free-shipping-button {
  background-color: transparent;
  border: none;
  color: var(--theme-color);
}
/************** external-left-btn css end ************/