@charset "UTF-8";
:root {
  --color-success: #00c9a7;
  --color-info: #96ed89;
  --color-warning: #faa806;
  --color-danger: #db1d2c;
  --color-border: #e4e4e4;
  --color-text: #707070;
  --color-contrast: #fff;
  --color-heading: #282828;
  --cowlor-dark: #8a8a8a;
  --color-orange: #8B4B28;
  --color-orange-hover: #cc6835;
  --color-unbleached-cotton: #F3EBDD;
  --color-unbleached-cotton-hover: #d7cbb9;
  --color-black-charcoal: #121118;
  --color-black-charcoal-hover: #1f1e29;
  --color-grey: #a3a3a3;
  --color-border: #3d3d3d;
  --color-bg-base: #FBF9F4;
  --color-border-base: #000;
  --color-border-100: #D9D9D9;
}

.form-select {
  font-size: 14px;
}

.btn {
  font-size: 12px;
}

.text-unbleached-cotton {
  color: var(--color-unbleached-cotton);
}

* {
  font-family: var(--primary-font);
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--color-heading);
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  position: relative;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5,
p {
  font-size: 14px;
}

p {
  color: var(--color-text);
  line-height: 1.6em;
}

p span {
  font-family: inherit;
  font-size: inherit;
}

a,
p span {
  color: inherit;
}

a {
  position: relative;
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--color-1st);
}

a,
button,
input,
select,
textarea {
  outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus {
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

body,
html {
  min-height: 100%;
  position: relative;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
body {
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden !important;
}

.btn--hamburger {
  background-color: rgba(206, 135, 58, 0.6);
  border-radius: 50px;
  display: inline-block;
  height: 50px;
  overflow: hidden;
  position: relative;
  width: 50px;
}

.btn--hamburger span,
.btn--hamburger:after,
.btn--hamburger:before {
  background-color: #fff;
  height: 2px;
  position: absolute;
  transition: all 0.4s ease;
  width: 20px;
  z-index: 100;
}

.btn--hamburger span {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

.btn--hamburger:after,
.btn--hamburger:before {
  content: "";
  left: 15px;
}

.btn--hamburger:before {
  top: 16px;
}

.btn--hamburger:after {
  bottom: 16px;
}

.btn--hamburger:hover {
  cursor: pointer;
}

.btn--hamburger.active span {
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
}

.btn--hamburger.active:after,
.btn--hamburger.active:before {
  background-color: #fc354c;
  bottom: auto;
  top: 50%;
  transform-origin: 50% 50%;
  width: 20px;
}

.btn--hamburger.active:before {
  transform: rotate(45deg);
}

.btn--hamburger.active:after {
  transform: rotate(-45deg);
}

@media (max-width: 1199px) {
  .btn--hamburger {
    display: inline-block;
  }
}
.btn--custom,
button.btn--custom {
  background-color: var(--color-1st);
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 15px 35px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn--custom.btn--rounded,
button.btn--custom.btn--rounded {
  border-radius: 50px;
}

.btn--custom.btn--curve,
button.btn--custom.btn--curve {
  border-radius: 5px;
}

.btn--custom.btn--outline,
button.btn--custom.btn--outline {
  background-color: transparent;
  border: 1px solid var(--color-1st);
  color: var(--color-1st);
  font-size: 12px;
  padding: 10px;
  text-transform: uppercase;
}

.btn--custom.btn--outline:hover,
button.btn--custom.btn--outline:hover {
  background-color: var(--color-1st);
  border-color: var(--color-1st);
  color: #fff;
}

.btn--custom.btn--fullwidth,
button.btn--custom.btn--fullwidth {
  text-align: center;
  width: 100%;
}

.btn--custom.btn--sm,
button.btn--custom.btn--sm {
  font-size: 1.2rem;
  padding: 0.5rem 2rem;
}

.btn--custom.btn--sm.btn--curve,
button.btn--custom.btn--sm.btn--curve {
  border-radius: 3px;
}

.btn--custom.btn--lg,
button.btn--custom.btn--lg {
  padding: 1.5rem 4rem;
}

.btn--custom.btn--xl,
button.btn--custom.btn--xl {
  font-size: 1.6rem;
  padding: 2rem 6rem;
}

.btn--custom.btn--reverse,
button.btn--custom.btn--reverse {
  background-color: #576391;
}

.btn--custom.btn--reverse:hover,
button.btn--custom.btn--reverse:hover {
  background-color: var(--color-2nd);
}

.btn--custom.btn--gray,
button.btn--custom.btn--gray {
  background-color: #e5e5e5;
  color: #000;
  font-size: 1.6rem;
}

.btn--custom.btn--black,
button.btn--custom.btn--black {
  background-color: var(--color-heading);
}

.btn--custom.btn--black.btn--outline,
button.btn--custom.btn--black.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-heading);
  color: var(--color-heading);
}

.btn--custom.btn--black.btn--outline:hover,
button.btn--custom.btn--black.btn--outline:hover {
  background-color: var(--color-heading);
  color: #fff;
}

.btn--custom.btn--success,
button.btn--custom.btn--success {
  background-color: var(--color-success);
}

.btn--custom:active,
.btn--custom:hover,
button.btn--custom:active,
button.btn--custom:hover {
  background-color: var(--color-1st);
  color: #fff;
}

.btn--custom:active.btn--black,
.btn--custom:hover.btn--black,
button.btn--custom:active.btn--black,
button.btn--custom:hover.btn--black {
  background-color: var(--color-1st);
}

.btn--remove {
  border: none;
  font-size: 20px;
  outline: none;
}

.btn--remove:hover {
  color: var(--color-danger);
}

.btn--close {
  border-radius: 50%;
  display: inline-block;
  height: 30px;
  position: relative;
  transition: all 0.4s ease;
  width: 30px;
}

.btn--close:after,
.btn--close:before {
  background-color: #9f9a98;
  content: "";
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center center;
  transition: all 0.4s ease;
  width: 2px;
}

.btn--close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn--close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn--close:hover {
  transform: rotate(180deg);
}

.btn--close:hover:after,
.btn--close:hover:before {
  background-color: #f44336;
  transition-delay: 0.3s;
}

.form-control {
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: 0 0 0 transparent;
  font-size: 14px;
  height: 40px;
  outline: none;
  padding: 0 20px;
  transition: all 0.4s ease;
}

.form-control::-webkit-input-placeholder {
  font-size: 14px;
  opacity: 1;
}

.form-control:-moz-placeholder,
.form-control::-moz-placeholder {
  font-size: 14px;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  font-size: 14px;
  opacity: 1;
}

.form-control:focus {
  border-color: var(--color-1st);
  box-shadow: 0 0 0 #000;
  outline: none;
}

textarea.form-control {
  height: auto;
  padding: 2rem;
  resize: none;
}

.checkbox {
  display: block;
  position: relative;
}

.checkbox > input {
  position: absolute;
  visibility: hidden;
}

.checkbox label {
  color: rgba(var(--color-heading), 0.5);
  cursor: pointer;
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.checkbox label:before {
  border: 1px solid var(--color-heading);
  height: 20px;
  left: 0;
  top: 0;
  width: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.4s ease;
  z-index: 10;
}

.checkbox label:after {
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  height: 10px;
  left: 7px;
  opacity: 0;
  top: 4px;
  transform: rotate(0deg);
  width: 6px;
}

.checkbox input[type=checkbox]:checked ~ label:before {
  background-color: var(--color-2nd);
  border-color: var(--color-2nd);
}

.checkbox input[type=checkbox]:checked ~ label:after {
  opacity: 1;
  transform: rotate(45deg);
}

.radio {
  position: relative;
}

.radio > input {
  position: absolute;
  visibility: hidden;
}

.radio label {
  color: #737373;
  cursor: pointer;
  font-family: var(--primary-font);
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.radio label:before {
  border: 1px solid rgba(19, 8, 1, 0.2);
  height: 20px;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
  width: 20px;
  z-index: 10;
}

.radio label:after,
.radio label:before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
}

.radio label:after {
  height: 8px;
  left: 6px;
  opacity: 0;
  top: 6px;
  transition: all 0.6s ease;
  width: 8px;
  z-index: 15;
}

.radio input[type=checkbox]:checked ~ label:before {
  background-color: transparent;
}

.radio input[type=checkbox]:checked ~ label:after {
  background-color: var(--color-1st);
  border: none;
  border-radius: 50%;
  height: 8px;
  left: 6px;
  opacity: 1;
  top: 6px;
  width: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group > label {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-group > label sup {
  color: var(--color-danger);
}

.form-group--inline {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  position: relative;
  width: 100%;
}

.form-group--inline > label {
  margin-bottom: 0;
}

.form-group--inline .form-group__content {
  width: 100%;
}

.form-group--number {
  display: inline-block;
  position: relative;
}

.form-group--number button {
  background: none;
  border: none;
  color: var(--color-heading);
  font-size: 30px;
  height: 20px;
  max-width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.form-group--number button.up {
  right: 12px;
}

.form-group--number button.up:after,
.form-group--number button.up:before {
  background-color: var(--color-text);
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 14px;
}

.form-group--number button.up:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.form-group--number button.up:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.form-group--number button.down {
  left: 12px;
}

.form-group--number button.down:before {
  background-color: var(--color-text);
  content: "";
  display: inline-block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 14px;
}

.form-group--number .form-control {
  background-color: transparent;
  border: none;
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 600;
  height: 45px;
  padding: 0 25px;
  text-align: center;
}

.form-group--number .form-control::-webkit-input-placeholder {
  color: var(--color-heading);
}

.form-group--number .form-control:-moz-placeholder,
.form-group--number .form-control::-moz-placeholder {
  color: var(--color-heading);
}

.form-group--number .form-control:-ms-input-placeholder {
  color: var(--color-heading);
}

.select--arrow {
  position: relative;
}

.select--arrow i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.select--arrow .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown > a {
  display: block;
  padding-right: 20px;
  position: relative;
}

.dropdown > a:after {
  font: normal normal normal 12px/1 linearicons;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown ul {
  background-color: #fff;
  box-shadow: 0 1px 1px 2px hsla(0, 0%, 80%, 0.2);
  max-width: 200px;
  min-width: 120px;
  opacity: 0;
  padding: 4px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.dropdown ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.dropdown ul li a {
  color: var(--color-heading);
  display: block;
  font-size: 1.3rem;
  padding: 6px 10px;
}

.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
}


.custom-radio input[type=checkbox],
.custom-radio input[type=radio] {
  display: none;
}


.custom-radio label {
  display: block;
}


.custom-radio span {
  cursor: pointer;
  display: block;
  height: 25px;
  position: relative;
  width: 25px;
}


.custom-radio input[type=checkbox]:checked ~ span:before,
.custom-radio input[type=radio]:checked ~ span:before {
  border: 1px solid var(--color-1st);
  bottom: -4px;
  content: "";
  display: block;
  left: -4px;
  position: absolute;
  right: -4px;
  top: -4px;
}


.custom-radio.disabled label {
  position: relative;
}


.custom-radio.disabled label:after,
.custom-radio.disabled label:before {
  background-color: var(--color-heading);
  content: "";
  height: 90%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: 50% 50%;
  transition: all 0.4s ease;
  width: 1px;
  z-index: 20;
}


.custom-radio.disabled label:before {
  transform: translate(-50%, -50%) rotate(45deg);
}


.custom-radio.disabled label:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.custom-radio.disabled span {
  opacity: 0.9;
}


.custom-radio.disabled input[type=checkbox]:checked ~ span:before,
.custom-radio.disabled input[type=radio]:checked ~ span:before {
  display: none;
}

.collection {
  position: relative;
}

.collection img {
  width: 100%;
}

.collection .collection__more_link {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  bottom: 30px;
  color: var(--color-1st);
  display: flex;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  left: 50%;
  min-width: 200px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 20;
}

.collection .collection__more_link:hover {
  background-color: var(--color-1st);
  color: #fff;
}

.post .post__wrapper {
  transition: all 0.3s ease-in-out;
}

.post .post__wrapper .post__content {
  padding: 15px;
}

.post:hover .post__wrapper {
  background: #fff;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.1);
  transform: translateY(-5px);
}

.post .post__overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.post .post__title {
  font-weight: 600;
}

.post .post__title a {
  font-weight: inherit;
}

.post .post__thumbnail {
  overflow: hidden;
  position: relative;
}

.post .post__thumbnail img {
  transition: all 0.25s ease;
}

.post .post__header {
  padding-bottom: 10px;
}

.post .post__content {
  padding-top: 20px;
}

.post:hover .post__overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 480px) and (max-width: 992px) {
  .post {
    display: flex;
    flex-flow: row nowrap;
  }
  .post > * {
    flex-basis: 100%;
    max-width: 50%;
  }
  .post .post__content {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.post--detail .post__header {
  padding: 20px 0;
  text-align: center;
}

.post--detail .post__header h1 {
  font-size: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .post--detail .post__header {
    padding: 30px 0;
  }
  .post--detail .post__header h1 {
    font-size: 30px;
  }
}
.pagination .page-item.active span {
  background: var(--color-1st);
  color: #fff;
}

.pagination .page-item .page-link {
  background-color: #e9ecef;
  border: none;
  color: var(--color-text);
  margin: 0 5px;
  outline: none;
  padding: 8px 15px;
}

.pagination .page-item .page-link:hover {
  background: var(--color-1st);
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  background-color: #e9ecef !important;
}

.shop__pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  text-align: center;
}

.breadcrumb-wrapper {
  background: #f6f6f8;
  padding: 15px;
}

.breadcrumb-wrapper .breadcrumb--custom {
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-wrapper .breadcrumb--custom li {
  color: var(--color-heading);
  display: inline-block;
  font-size: 14px;
  position: relative;
}

.breadcrumb-wrapper .breadcrumb--custom li:before {
  content: "/";
  margin: 0 5px;
}

.breadcrumb-wrapper .breadcrumb--custom li a {
  color: var(--color-text);
  font-size: 14px;
}

.breadcrumb-wrapper .breadcrumb--custom li a:hover {
  color: var(--color-heading);
}

.breadcrumb-wrapper .breadcrumb--custom li:first-child:before {
  display: none;
}
.panel--sidebar {
  background-color: #fff;
  bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translate3d(400px, 0, 0);
  transition: transform 0.25s ease;
  width: 400px;
  z-index: 1000001;
}

.panel--sidebar .panel__close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 0;
  top: 10px;
  width: 30px;
}

.panel--sidebar .panel__close:after,
.panel--sidebar .panel__close:before {
  background-color: #fff;
  content: "";
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: 50% 50%;
  transition: all 0.4s ease;
  width: 1px;
}

.panel--sidebar .panel__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel--sidebar .panel__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.panel--sidebar .panel__close:hover:after,
.panel--sidebar .panel__close:hover:before {
  background-color: var(--color-danger);
}

.panel--sidebar .panel__header {
  background-color: var(--color-1st);
  padding: 15px;
  position: relative;
}

.panel--sidebar .panel__header h4 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.panel--sidebar .panel__content {
  display: flex;
  flex: 1 1 auto;
  margin-bottom: 0;
  padding: 10px;
  position: relative;
  background-color: #FBF9F4;
}

.panel--sidebar.active {
  transform: none;
}

@media screen and (max-width: 479px) {
  .panel--sidebar {
    max-width: 100%;
  }
}
/* Form Account */
.fw_p .form-label {
  display: none;
}

.lm_form__account {
  transform: translate3d(500px, 0, 0);
  width: 500px;
  background-color: #FBF9F4;
}

.lm_form__account .panel__content {
  flex-direction: column;
}

.lm_form__account .form-label {
  display: none;
}

.lm_form__account .ps-checkbox {
  display: none !important;
}

.lm_form__account .form-control {
  border: none;
  border-bottom: 1px solid #000;
  padding-left: 0;
  background-color: #FBF9F4 !important;
}

.lm_form__account .nav-item {
  width: 48%;
  border: none;
  border-bottom: 1px solid #E2E0DC;
}

.lm_form__account .nav-link {
  color: #6D6B66;
}

.nav_account .active {
  border-bottom: 1px solid #000;
  color: #000;
}

.lm_form__account .nav-link:focus,
.lm_form__account .nav-link:hover {
  color: #000;
}

.lm_form__account .nav-item:focus-visible {
  outline: none;
}

.lm_form__account .nav-link:focus-visible {
  box-shadow: none;
}

.lm_form__account .nav-item button {
  width: 100%;
}

.lm_form__account ul#myTab {
  border: none;
}

.lm_form__account .panel__header h4 {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.lm_form__account .panel__header {
  background-color: #FBF9F4;
  padding: 23px 15px;
}

.lm_form__account .panel__close:after,
.lm_form__account .panel__close:before {
  background-color: #000000;
}

/* End form Account  */
.widget--footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget--footer p strong {
  color: var(--color-heading);
}

.widget--footer .widget__title {
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.widget--footer .widget__links li {
  padding: 0.5em 0;
}

.widget--footer .widget__links li a {
  display: inline-block;
  line-height: 20px;
}

.widget--footer .widget__links li:last-child {
  margin-bottom: 0;
}

.slick-slider .slick-slide {
  box-shadow: 0 0 transparent;
  outline: none;
}

.slick-slider .slick-slide:active,
.slick-slider .slick-slide:focus,
.slick-slider .slick-slide:hover {
  outline: none;
}

.owl-carousel .owl-item .slider-item {
  margin: 0;
  max-height: 650px;
}

.carousel--nav .owl-nav > * i {
  color: var(--color-heading);
}

.noUi-connect {
  background-color: var(--color-1st);
}

.noUi-horizontal {
  height: 6px;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none;
}

.noUi-horizontal .noUi-handle {
  background-color: var(--color-1st);
  height: 16px;
  left: -17px;
  outline: none;
  top: -6px;
  width: 16px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -7px;
}

.noUi-handle {
  border: 3px solid var(--color-1st);
  border-radius: 50%;
  box-shadow: none;
}

.product .product__shopping {
  background-color: #fff;
  bottom: 10px;
  color: var(--color-text);
  font-size: 1.3rem;
  left: 10px;
  line-height: 2rem;
  padding: 1.5rem 2rem;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.5s ease;
  width: calc(100% - 20px);
}


.product .product__shopping {
  opacity: 0;
  position: absolute;
  visibility: hidden;
  z-index: 30;
}

.product .product__thumbnail {
  position: relative;
}

.product .product__thumbnail img {
  max-width: 100%;
  width: 100%;
}

.product .product__thumbnail:before {
  background-color: rgba(0, 0, 0, 0.15);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.4s ease;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  z-index: 1;
}


.product .product__thumbnail:hover:before {
  opacity: 1;
  visibility: visible;
}

.product .product__thumbnail:hover .product__shopping {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.product .product__title {
  color: var(--color-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8em;
}

.product .product__title:hover {
  color: var(--color-1st);
}

.product .product__content {
  padding: 15px 0 0;
  text-align: left;
}

.product .product__price {
  color: dimgray;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.product .product__price del {
  color: var(--color-text);
  margin-left: 5px;
}

.product .product__price.sale del {
  color: var(--color-danger);
}

@media (max-width: 767px) {
  .product {
    margin: 0 auto 2rem;
    max-width: 350px;
  }
}
.product--on-cart {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.product--on-cart > * {
  flex-basis: 100%;
}

.product--on-cart .product__thumbnail {
  max-width: 56px;
}

.product--on-cart .product__content {
  padding-left: 20px;
  padding-right: 30px;
  position: relative;
}

.product--on-cart .product__content .product__remove {
  color: var(--color-text);
  font-size: 18px;
  position: absolute;
  right: 0;
  top: 0;
}

.product--on-cart .product__content .product__remove:hover {
  color: var(--color-danger);
  text-decoration: none;
}

.product--on-cart .product__content a {
  color: var(--color-heading);
  display: block;
  font-size: 14px;
}

.product--on-cart .product__content a:hover {
  text-decoration: underline;
}

.product--on-cart .product__content small {
  color: var(--color-heading);
  font-size: 12px;
  font-weight: 600;
}

.product--on-cart .product__content small .cart-price {
  color: var(--color-1st);
}

.product__attribute > * {
  flex-basis: 100%;
}

.product--detail .product__info-header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.product--detail .product__title {
  color: var(--color-heading);
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3em;
  text-transform: uppercase;
}

.product--detail .product__info {
  text-align: left;
}

.product--detail .product__add-wishlist {
  font-size: 14px;
}

.product--detail .product__add-wishlist span {
  padding-left: 5px;
  text-decoration: underline;
}

.product--detail .product__price {
  align-items: center;
  color: var(--color-heading);
  display: flex;
  flex-flow: row nowrap;
  font-size: 18px;
  font-weight: 400;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product--detail .product__price del {
  color: #bcbcbc;
  font-size: 1.3rem;
  font-style: normal;
}

.product--detail .product__price p {
  color: var(--color-heading);
  font-size: 16px;
  font-weight: 600;
}

.product--detail .product__price p span {
  font-weight: inherit;
}

.product--detail .product__price.sale {
  color: var(--color-heading);
}

.product--detail .product__price.sale del {
  color: var(--color-danger);
  font-size: 22px;
  margin-right: 20px;
}

.product--detail .product__attribute {
  align-items: center;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-flow: row nowrap;
}

.product--detail .product__attribute label {
  margin-bottom: 0;
}

.product--detail .product__attribute .form-control {
  border: none;
}

.product--detail .product__color {
  padding-bottom: 10px;
}

.product--detail .product__color .color-swatch li {
  display: inline-block;
  margin-right: 5px;
  vertical-align: top;
}

.product--detail .product__color .color-swatch li:last-child {
  margin-right: 0;
}

.product--detail .product__color .color-swatch li span {
  margin-bottom: 0;
}

.product--detail .product__desc {
  margin-bottom: 20px;
}

.product--detail .product__desc p {
  color: #777;
  font-size: 14px;
  margin-bottom: 0;
}

.product--detail .product__shopping {
  margin-bottom: 36px;
}

.product--detail .product__shopping figure {
  display: flex;
  justify-content: space-between;
  max-width: 470px;
  padding-bottom: 20px;
}

.product--detail .product__shopping figure > * {
  margin-right: 10px;
}

.product--detail .product__shopping figure .form-group--number {
  max-width: 150px;
}

.product--detail .product__shopping figure .form-group--number input {
  border-radius: 0;
}

.product--detail .product__shopping figure .btn {
  font-size: 14px;
  font-weight: 500;
  min-width: 250px;
  padding: 12px 30px 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: top;
}

.product--detail .product__shopping figure .btn.btn--gray {
  background-color: rgba(34, 34, 34, 0.5);
  color: #fff;
}

.product--detail .product__shopping figure .btn.btn--gray:hover {
  background-color: var(--color-heading);
}

.product--detail .product__shopping .btn--black {
  letter-spacing: 0.1em;
}

.product--detail .product__thumbnail {
  display: flex;
  flex-flow: column wrap;
  margin-bottom: 30px;
  width: 100%;
}

.product--detail .product__thumbnail > * {
  width: 100%;
}

.product--detail .product__thumbnail figure {
  display: block;
  position: relative;
}

.product--detail .product__content {
  padding-top: 50px;
}

@media (max-width: 480px) {
  .product--detail .product__shopping figure {
    flex-flow: row wrap;
  }
  .product--detail .product__shopping figure .form-group--number {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .product--detail .product__shopping figure > * {
    margin-bottom: 10px;
  }
  .product--detail .product__shopping figure .btn {
    flex-grow: 2;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .product--detail .product__thumbnail {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .product--detail .product__title {
    font-size: 30px;
  }
  .product--detail .product__desc p {
    font-size: 16px;
  }
  .product--detail .product__price {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .product--detail .product__content {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .product--detail .product__thumbnail {
    align-content: flex-start;
    flex-flow: row-reverse nowrap;
  }
  .product--detail .product__thumbnail figure {
    max-width: calc(100% - 80px);
    padding-left: 10px;
  }
  .product--detail .product__info {
    padding-left: 30px;
  }
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.tab {
  display: none;
}

.tab.active {
  display: block;
}

.cart--mini {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  position: relative;
}

.cart--mini .cart__items {
  border-bottom: none;
  flex: 1 1 auto;
  overflow-y: auto;
  position: relative;
}

.cart--mini .cart__items .product--on-cart {
  border-bottom: 1px dashed #eaeaea;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.cart--mini .cart__summary p {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.cart--mini .cart__summary p strong {
  color: var(--color-heading);
  font-weight: 500;
}

.cart--mini .cart__actions {
  padding: 1em 0;
}

.cart--mini .cart__actions .btn--custom {
  border-radius: 0;
  padding: 10px;
  text-align: center;
  text-transform: none;
  width: 100%;
  text-transform: uppercase;
  justify-content: space-between;
  display: flex;
  align-items: center;
  font-size: 12px;
  border: 1px solid #000;
}

.cart--mini .cart__footer {
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

.cart--mini figure .btn {
  margin-bottom: 10px;
  padding: 12px 30px;
  text-align: center;
  width: 100%;
}

.cart--mini figure .btn--black {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  min-height: 48px;
}

.form--primary-search {
  position: relative;
}

.form--primary-search button {
  background-color: transparent;
  border: none;
  color: var(--color-heading);
  font-weight: 700;
  height: 30px;
  padding: 0 20px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
}

.form--contact {
  margin-bottom: 30px;
}

.form--contact .form-group {
  margin-bottom: 35px;
}

.form--contact .form__submit .btn--custom {
  min-width: 175px;
  text-align: left;
}

.form--auth .form__header {
  padding-bottom: 10px;
  text-align: left;
}

.form--auth .form__header h3 {
  font-size: 15px;
  text-transform: uppercase;
}

.form--auth .form__actions p a {
  color: var(--color-1st);
}

.form--auth .form__actions p a:hover {
  text-decoration: underline;
}

.form--auth .form__actions button {
  min-width: 175px;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .form--auth .form__header {
    padding-bottom: 20px;
  }
  .form--auth .form__header h3 {
    font-size: 15px;
  }
  .form--auth .form__actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
  }
  .form--auth .form__actions button {
    width: auto;
  }
}

.panel--search {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  left: 0;
  opacity: 0;
  padding: 20px 15px;
  position: fixed;
  top: 0;
  transform-style: preserve-3d;
  transition-delay: 0;
  transition: all 0.25s cubic-bezier(0.7, 0, 0.3, 1);
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.panel--search .panel__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
  z-index: 99;
}

.panel--search .panel__close i {
  font-size: 26px;
}

.panel--search .panel__close:hover i {
  color: var(--color-danger);
}

.panel--search.active {
  opacity: 1;
  transition-delay: 0s;
  visibility: visible;
}

.panel--search.active:before {
  transform: scaleX(1);
  transform-origin: 50% 0;
}

@media (max-width: 479px) {
  .panel--search {
    padding-right: 30px;
  }
}
.section .section__header h3 {
  font-size: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
  .section .section__header h3 {
    font-size: 30px;
  }
}
.section--homepage {
  padding-top: 30px;
}

.section--homepage .section__header {
  padding-bottom: 40px;
  text-align: center;
}

.section--homepage .section__header h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.section--homepage .section__header p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  .section--homepage {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .section--homepage {
    padding-top: 60px;
  }
}
.home-collection .collection {
  margin-bottom: 32px;
}

.shop--sidebar {
  padding-top: 30px;
}

.shop--sidebar .shop__header {
  display: block;
  height: 40px;
}

.shop--sidebar .shop__header:after {
  clear: both;
}

.shop--sidebar .shop__header .panel-trigger {
  padding: 10px 30px;
}

.shop--sidebar .shop__left {
  display: none;
  margin-top: 20px;
}

.shop--sidebar .shop__sort {
  display: none;
}

.shop--sidebar .shop__sort .form-group--inline {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.shop--sidebar .shop__sort .form-group--inline label {
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
  min-width: 60px;
}

.shop--sidebar .shop__sort .form-group--inline .form-control {
  border-color: var(--color-heading);
  border-radius: 50px;
  height: 40px;
  padding: 0 30px;
}

@media screen and (min-width: 992px) {
  .shop--sidebar .shop__left {
    padding-right: 30px;
  }
  .shop--sidebar .shop__header .panel-trigger {
    display: none;
  }
  .shop--sidebar .shop__sort {
    display: block;
    float: right;
  }
}
@media screen and (min-width: 1200px) {
  .shop--sidebar {
    display: flex;
    flex-flow: row nowrap;
    padding-top: 50px;
  }
  .shop--sidebar .shop__left {
    display: block;
    max-width: 300px;
  }
  .shop--sidebar .shop__content {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .shop--sidebar .shop__content > * {
    flex-basis: 100%;
  }
}
.section--blog {
  padding: 30px 0;
}

.section--blog .section__header {
  padding-bottom: 30px;
  text-align: center;
}

.section--blog .section__header h1 {
  color: var(--color-heading);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.section--blog .section__content .post {
  margin-bottom: 30px;
}

.section--blog .section__footer {
  padding-top: 30px;
}

@media screen and (min-width: 1200px) {
  .section--blog {
    padding: 30px 0 60px;
  }
  .section--blog .section__header {
    padding-bottom: 30px;
  }
}
.section--related-posts {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.section--related-posts .post {
  margin-bottom: 30px;
}

.section--related-posts .section__header {
  padding-bottom: 20px;
}

.section--related-posts .section__header h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

@media screen and (min-width: 992px) {
  .section--related-posts .post {
    margin-bottom: 0;
  }
}
.section--auth {
  max-width: 1270px;
  padding: 30px;
}

.section--shopping-cart .section__header {
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .section--shopping-cart .section__header {
    padding-bottom: 40px;
  }
}
.section--instagram {
  position: relative;
}

.section--instagram figure h3 {
  color: #fff;
}

.section--instagram .instagram-images {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}

.section--instagram .instagram-images > * {
  flex-basis: 33.3333%;
}

.section--instagram .instagram-images .block--instagram {
  position: relative;
}

.section--instagram .instagram-images .block--instagram .block__actions {
  color: #fff;
  left: 50%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  visibility: hidden;
  width: 80%;
  z-index: 10;
}

.section--instagram .instagram-images .block--instagram .block__actions a {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.section--instagram .instagram-images .block--instagram .block__actions a i {
  margin-right: 0.5em;
}

.section--instagram .instagram-images .block--instagram .block__actions a:last-child {
  margin-right: 0;
}

.section--instagram .instagram-images .block--instagram .block__actions p {
  color: #fff;
}

.section--instagram .instagram-images .block--instagram .block__overlay {
  background-color: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  z-index: 10;
}

.section--instagram .instagram-images .block--instagram .block__caption {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  max-height: 110px;
  overflow: hidden;
}

.section--instagram .instagram-images .block--instagram:hover .block__actions {
  opacity: 1;
  visibility: visible;
}

.section--instagram .instagram-images .block--instagram:hover .block__overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.section--instagram .section__follow-instagram {
  background-color: rgba(40, 40, 40, 0.9);
  box-shadow: 0 0.5px 1.5px 0 rgba(40, 40, 40, 0.3);
  left: 50%;
  max-width: 90%;
  padding: 20px 30px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 20;
}

.section--instagram .section__follow-instagram h4 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}

.section--instagram .section__follow-instagram p {
  color: #b9b4b4;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.section--instagram .section__follow-instagram a {
  color: var(--color-1st);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (min-width: 480px) {
  .section--instagram .instagram-images > * {
    flex-basis: 33.3333%;
  }
}
@media screen and (min-width: 768px) {
  .section--instagram .instagram-images > * {
    flex-basis: 25%;
  }
  .section--instagram .section__follow-instagram {
    max-width: 400px;
    padding: 20px 30px;
  }
  .section--instagram .section__follow-instagram h4 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .section--instagram .instagram-images > * {
    flex-basis: 25%;
  }
}
@media screen and (min-width: 1366px) {
  .section--instagram .instagram-images > * {
    flex-basis: 16.6666666667%;
  }
}
.home-blog {
  margin-bottom: 60px;
}

@media screen and (max-width: 1199px) {
  .home-blog .post {
    margin-bottom: 30px;
  }
}
.page--blog,
.page--inner {
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .page--blog,
  .page--inner {
    padding: 30px 0 50px;
  }
}
@media screen and (min-width: 1200px) {
  .page--blog,
  .page--inner {
    padding: 50px 0 100px;
  }
}
.page--shop {
  padding-bottom: 50px;
}

.page--shop .page__hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 250px;
  position: relative;
  text-transform: uppercase;
}

.page--shop .page__hero:before {
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.page--shop .page__hero h1 {
  color: #fff;
  font-size: 20px;
  position: relative;
  text-transform: uppercase;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .page--shop .page__hero h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .page--shop .page__hero h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .page--shop {
    padding-bottom: 90px;
  }
  .page--shop .page__hero h1 {
    font-size: 48px;
  }
}
.page--product--detail .product--detail {
  margin-bottom: 50px;
}

.sub-toggle {
  cursor: pointer;
  display: inline-block;
  height: 36px;
  position: relative;
  transform-style: preserve-3d;
  width: 36px;
}

.sub-toggle:after,
.sub-toggle:before {
  background-color: var(--color-heading);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 12px;
}

.sub-toggle:before {
  transform: translateX(-50%);
}

.sub-toggle:after {
  transform: translateX(-50%) rotate(90deg);
}

.sub-toggle.active:after {
  display: none;
}

.sub-menu {
  background-color: hsla(0, 0%, 100%, 0.95);
  border: 1px solid #eee;
  left: 0;
  min-width: 240px;
  opacity: 0;
  position: absolute;
  top: 100%;
  transition: all 0.25s ease;
  visibility: hidden;
  z-index: 1000;
}

.sub-menu:before {
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  bottom: 100%;
  content: "";
  display: none;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.sub-menu > li {
  display: block;
}

.sub-menu > li .sub-toggle-desktop {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 15px;
}

.sub-menu > li .sub-toggle-desktop:before {
  content: "î¡„";
}

.sub-menu > li > a {
  color: var(--color-text);
  display: inline-block;
  font-size: 15px;
  padding: 10px 20px;
  text-transform: capitalize;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.sub-menu > li > a:hover {
  color: var(--color-1st);
}

.sub-menu > li:last-child a {
  border-bottom: 1px solid #eee;
}

.sub-menu > li.menu-item-has-children {
  position: relative;
}

.sub-menu > li.menu-item-has-children > .sub-toggle {
  display: none;
}

.sub-menu > li.menu-item-has-children > .sub-menu {
  left: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(30px);
  visibility: hidden;
}

.sub-menu > li.menu-item-has-children > .sub-menu:before {
  display: none;
}

.sub-menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.sub-menu > li:last-child {
  border-bottom: none;
}

.menu > li {
  padding-right: 30px;
}

.menu > li,
.menu > li > a {
  display: inline-block;
}

.menu > li > a {
  color: var(--color-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  padding: 30px 0;
  position: relative;
  text-transform: uppercase;
  transform-style: preserve-3d;
}

.menu > li > a:hover {
  color: var(--color-1st);
}

.menu > li:first-child {
  padding-left: 0;
}

.menu > li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.menu > li .sub-toggle {
  display: none;
}

.menu > li.menu-item-has-children {
  position: relative;
}

.menu > li.menu-item-has-children .sub-toggle {
  display: none;
  margin-left: 5px;
}

.menu > li.menu-item-has-children .sub-menu {
  opacity: 0;
  transform: scaleZ(0) translateY(30px);
  visibility: hidden;
}

.menu > li.menu-item-has-children:hover .sub-toggle {
  color: #fff;
}

.menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  transform: scaleX(1) translateY(0);
  visibility: visible;
}

.menu > li.current-menu-item > a {
  color: var(--color-1st);
}

.menu > li.current-menu-item .sub-toggle {
  color: #fff;
}

@media (max-width: 1199px) {
  .menu > li {
    border-bottom: 1px dashed #e4e4e4;
    display: block;
    padding-right: 0;
  }
  .menu > li > a {
    color: var(--color-heading);
    display: block;
    font-size: 1.5rem;
    line-height: 20px;
    padding: 1rem 0;
  }
  .menu > li.menu-item-has-children {
    position: relative;
  }
  .menu > li.menu-item-has-children > .sub-menu {
    display: none;
    opacity: 1;
    transition: all 0s ease;
    visibility: visible;
    background-color: #FBF9F4;
  }
  .menu > li.menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-toggle {
    height: 40px;
    width: 40px;
  }
  .menu > li.menu-item-has-children .sub-toggle {
    height: 30px;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    z-index: 10;
  }
  .menu > li.menu-item-has-children .sub-toggle i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .menu > li.current-menu-item {
    border-left: 2px solid var(--color-1st);
    padding-left: 1rem;
  }
  .menu > li.current-menu-item > a:before {
    display: none;
  }
}
.menu--mobile {
  width: 100%;
}

.menu--mobile .sub-menu {
  border: none;
  display: none;
  opacity: 1;
  position: relative;
  transform: translate(0);
  transition: all 0s ease;
  visibility: visible;
}

.menu--mobile .sub-menu > li > a {
  border: none;
  padding: 10px 20px;
}

.menu--mobile .sub-toggle:after,
.menu--mobile .sub-toggle:before {
  background-color: var(--color-text);
}

.menu--mobile > li {
  border-bottom: 1px dashed #eaeaea;
  padding-left: 1rem !important;
}

.menu--mobile > li > a {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  padding: 10px 20px 10px 0;
  position: relative;
  text-transform: uppercase;
  z-index: 10;
}

.menu--mobile > li > a:hover {
  color: var(--color-1st);
  padding-left: 5px;
}

.menu--mobile > li.menu-item-has-children:not(.has-mega-menu) {
  position: relative;
}

.menu--mobile > li.menu-item-has-children:not(.has-mega-menu) .sub-toggle {
  display: inline-block;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  z-index: 20;
}

@media screen and (max-width: 768px) {
  .sub-toggle-desktop {
    display: none !important;
  }
}
.navigation > .container {
  flex-flow: row nowrap;
}

.navigation--mobile,
.navigation > .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.navigation--mobile {
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}

@media screen and (min-width: 1200px) {
  .navigation--mobile {
    display: none;
  }
}
.header {
  display: none;
}

.header .btn-shopping-cart {
  position: relative;
}

.header .btn-shopping-cart > span {
  align-items: center;
  background-color: var(--color-1st);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 10px;
  height: 16px;
  justify-content: center;
  min-width: 16px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(25%, 25%);
}

.header .header__actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.header .header__actions > * {
  align-items: center;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.header .header__actions > * i {
  font-size: 20px;
}

@media screen and (min-width: 1200px) {
  .header {
    display: block;
  }
}
.header--mobile .logo {
  font-size: 20px;
}

@media screen and (max-width: 1199px) {
  .header--mobile {
    display: block;
  }
}
.site-mask {
  background-color: rgba(0, 0, 0, 0.75);
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.4s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.site-mask.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #f9f9f9;
  padding: 45px 0;
}

@media screen and (min-width: 1200px) {
  .footer__wrapper__right {
    padding: 15px;
    margin-bottom: 60px;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.bg--cover {
  background-position: 50% 50% !important;
  background-size: cover !important;
}

.header ul,
.panel--sidebar ul,
.product ul,
.product--detail .product__color ul,
.shop--sidebar .shop__left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
p:empty {
  margin-bottom: 0;
}

.required:after {
  color: red;
  content: " *";
}

.product-attributes ul {
  list-style: none;
  padding-left: 0;
}

.product--detail .product__price.sale del {
  font-size: 14px;
}

.btn--custom.btn-disabled {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  opacity: 0.7;
}

.widget__links li.active a {
  color: var(--color-1st);
}

.product {
  margin: 20px 0;
}

.single-variation-wrap .error-message,
.single-variation-wrap .success-message {
  margin-top: 10px;
}

.panel--sidebar .panel__content {
  overflow-y: scroll;
}

.panel--sidebar .panel__content.panel__scroll {
  display: block;
  flex: none;
}

.product--detail .product__attribute .text-swatch li {
  display: inline-block;
  margin-right: 5px;
}

.product--detail .product__attribute .text-swatch li input[type=checkbox],
.product--detail .product__attribute .text-swatch li input[type=radio] {
  display: none;
}

.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span,
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span {
  border: 1px solid var(--color-1st);
}

.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span:after,
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:after {
  bottom: -5px;
  color: #fff;
  content: "\e83f";
  font-family: feather !important;
  font-size: 8px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  right: -8px;
  width: 16px;
}

.product--detail .product__attribute .text-swatch li input[type=checkbox]:checked ~ span:before,
.product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:before {
  border: 16px solid transparent;
  border-bottom: 16px solid var(--color-1st);
  bottom: -1px;
  content: "";
  position: absolute;
  right: -16px;
}

.product--detail .product__attribute .text-swatch li span {
  border: 1px solid #eee;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 5px 15px;
  position: relative;
  transition: 0.2s;
}

.slider__content {
  bottom: 0;
  display: table;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.slider__content .slider__content__wrapper {
  display: table-cell;
  vertical-align: middle;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content {
  margin: 0 auto;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 50%;
  text-transform: capitalize;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content p {
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
  max-width: 50%;
}

@media screen and (max-width: 1024px) {
  .slider__content .slider__content__wrapper .slider__content__wrapper__content h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .slider__content .slider__content__wrapper .slider__content__wrapper__content p {
    line-height: 24px;
    margin-bottom: 10px;
  }
  .slider__content .slider__content__wrapper .slider__content__wrapper__content .btn--custom,
  .slider__content .slider__content__wrapper .slider__content__wrapper__content button.btn--custom {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.banner-effect {
  display: block;
  overflow: hidden;
  position: relative;
}

.banner-effect:before {
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0.3));
  content: "";
  display: block;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}

.banner-effect:hover:before {
  animation: shine 1.1s;
}

@keyframes shine {
  to {
    left: 125%;
  }
}
@media screen and (max-width: 768px) {
  .slider__content .slider__content__wrapper .slider__content__wrapper__content {
    display: none;
  }
  .categories_box {
    justify-content: center !important;
  }
}
.ps-block--feature {
  display: flex;
  flex-flow: row nowrap;
  max-width: 260px;
}

.ps-block--feature > * {
  width: 100%;
}

.ps-block--feature > .ps-block__left {
  max-width: 55px;
}

.ps-block--feature > .ps-block__left i {
  color: var(--color-text);
  font-size: 3.5rem;
}

.ps-block--feature > .ps-block__right p {
  color: var(--color-heading);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4em;
  text-transform: uppercase;
}

.ps-block--feature > .ps-block__right small {
  color: var(--color-text);
  display: block;
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .ps-block--feature {
    margin: 0 auto 3rem;
  }
}
@media (max-width: 767px) {
  .ps-block--feature {
    max-width: 100%;
  }
}
.ps-block--features {
  padding: 4rem 0;
}

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

.qty-input {
  -moz-appearance: textfield;
}

.show-admin-bar #alert-container {
  top: 100px;
}

.show-admin-bar .panel--search {
  top: 40px;
}

.form--contact .form__submit .btn--custom.button-loading {
  background-color: var(--color-1st) !important;
}

.rating_wrap .rating {
  display: inline-block;
  font-family: feather !important;
  height: 20px;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 80px;
}

.rating_wrap .rating:before {
  color: #d2d2d2;
  content: "î¤‹î¤‹î¤‹î¤‹î¤‹";
  float: left;
  font-size: 14px;
  left: 0;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
}

.rating_wrap .rating_num {
  color: dimgray;
  display: inline-block;
  font-size: 14px;
  vertical-align: middle;
}

.rating_wrap .product_rate {
  color: #edb867;
  font-family: feather !important;
  left: 0;
  overflow: hidden;
  padding-top: 1.5em;
  position: absolute;
  top: 0;
}

.rating_wrap .product_rate:before {
  content: "î¤‹î¤‹î¤‹î¤‹î¤‹";
  font-size: 14px;
  left: 0;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
}

.error-inner {
  min-height: calc(100vh - 385px);
}

.show-admin-bar .error-inner {
  min-height: calc(100vh - 425px);
}

.top-header {
  background-color: #f6f6f8;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
}

.top-header,
.top-header a {
  color: #656262;
  font-size: 12px;
}

.top-header a:hover {
  color: var(--color-1st);
}

.contact-detail li {
  display: inline-block;
  margin-right: 10px;
}

.slider__content {
  background: rgba(0, 0, 0, 0.2);
}

.tracking-form .btn--custom.btn--outline,
.tracking-form .form-control,
.tracking-form button.btn--custom.btn--outline {
  background-color: #000;
  color: #fff;
  width: 100%;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracking-form .btn--custom:active,
.tracking-form .btn--custom:hover,
.tracking-form button.btn--custom:active,
.tracking-form button.btn--custom:hover {
  background-color: var(--color-1st);
  color: #fff;
}

.customer-order-detail {
  padding-top: 20px;
}

.customer-order-detail h5 {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.customer-information-box {
  text-align: right;
}

@media (max-width: 767px) {
  .customer-information-box {
    text-align: left;
  }
}

#alert-container {
  position: fixed;
  right: 5px;
  top: 60px;
  z-index: 9999999;
}

.ps-checkbox {
  display: block;
  position: relative;
}

.ps-checkbox > input {
  box-sizing: border-box;
  position: absolute;
  visibility: hidden;
}

.ps-checkbox label {
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 30px;
  position: relative;
}

.ps-checkbox label:before {
  border: 1px solid #000;
  height: 20px;
  left: 0;
  top: 0;
  width: 20px;
}

.ps-checkbox label:after,
.ps-checkbox label:before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.4s ease;
  z-index: 10;
}

.ps-checkbox label:after {
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  height: 10px;
  left: 7px;
  opacity: 0;
  top: 4px;
  transform: rotate(0deg);
  width: 6px;
}

.ps-checkbox input[type=checkbox]:checked ~ label:before {
  background-color: #222;
  border-color: #222;
}

.ps-checkbox input[type=checkbox]:checked ~ label:after {
  opacity: 1;
  transform: rotate(45deg);
}

.section--auth a {
  color: var(--color-1st);
}

.section--auth .form-control {
  background-color: var(--color-bg-base);
  border: none;
  border-bottom: 1px solid var(--color-border-base);
  padding: 0;
  color: #000;
}

.top-header {
  min-height: 45px;
}

.header > .navigation,
.header > .navigation > .container {
  min-height: 75px;
}

#app {
  min-height: 500px;
}

.menu--mobile .sub-menu > li.menu-item-has-children > .sub-menu {
  padding-left: 20px;
  position: static;
  background-color: #FBF9F4;
}

.header .logo img {
  max-height: 70px;
  padding: 12px 0;
}

.footer {
  padding: 45px 0 20px;
}

.product__attribute .attribute-swatch-item.pe-none {
  cursor: not-allowed !important;
}

.product__attribute .attribute-swatch-item.pe-none > div {
  pointer-events: none !important;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span {
  color: gray;
  cursor: unset;
  opacity: 0.7;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .color-swatch .attribute-swatch-item.pe-none span:before,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before {
  border-top: 1px dashed #999;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:before,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:before {
  transform: rotate(45deg);
}

.product__attribute .color-swatch .attribute-swatch-item.pe-none span:after,
.product__attribute .text-swatch .attribute-swatch-item.pe-none span:after {
  transform: rotate(-45deg);
}

.button-loading {
  border: 1px solid #c4cdd5;
  color: transparent !important;
  cursor: default;
  position: relative;
  text-shadow: none;
  transition: border-color 0.2s ease-out;
}

.button-loading,
.button-loading:active,
.button-loading:focus,
.button-loading:hover {
  color: transparent;
}

.button-loading:before {
  animation: button-loading-spinner 1s linear infinite;
  border: 3px solid;
  border-color: #fff #fff transparent;
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  position: absolute;
  top: 50%;
  width: 18px;
}

@keyframes button-loading-spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.section--shopping-cart .table-responsive {
  padding: 0 10px;
}

.language-wrapper .dropdown {
  height: 100%;
}

.language-wrapper .dropdown .btn {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: inherit;
  height: 100%;
  margin-bottom: 0;
  outline: none !important;
  padding: 7px 15px;
  transition: all 0.4s ease;
}

.language-wrapper .dropdown .dropdown-menu {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  display: none;
  float: left;
  font-size: 14px;
  line-height: 58px;
  list-style: none;
  margin: 0;
  min-width: 160px;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  width: 160px;
  z-index: 1000;
}

.language-wrapper .dropdown .dropdown-menu li .flag {
  margin: 0 10px;
}

.language-wrapper .dropdown .dropdown-menu li span {
  color: #222;
}

.language-wrapper .dropdown .dropdown-menu li.active a span {
  color: #fff;
}

.language-wrapper .dropdown .language_bar_chooser {
  display: block;
  float: right;
  line-height: 58px;
  text-align: center;
  width: 160px;
}

.language-wrapper .dropdown .language_bar_chooser li {
  display: inline-block;
  float: left;
  margin-left: 5px;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu {
  border-radius: 0 !important;
  display: none;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li {
  display: block;
  margin: 0;
  width: 100%;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li:hover {
  background: #ddd;
}

.language-wrapper .dropdown .language_bar_chooser.dropdown-menu li a {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-right: 0 !important;
  text-align: left;
  width: 100%;
}

.language-wrapper .language_bar_list li {
  display: inline-block;
  margin-left: 5px;
  min-width: 90px;
}

.language-wrapper .language_bar_list li a {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.language-wrapper .language_bar_list li a .flag {
  margin-right: 10px;
  width: 20px;
}

.language-wrapper .language_bar_list li a span {
  color: #222;
}

.language-wrapper .language_bar_list li a img {
  margin-right: 5px;
  margin-top: 1px;
}

.language-wrapper .dropdown-toggle:after {
  display: none;
}

.language-wrapper .dropdown .btn {
  padding: 7px;
}

.language-wrapper .btn-select-language {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--color-muted) !important;
  font-size: 12px;
  font-weight: 400;
  height: auto;
  padding: 0;
}

.language-wrapper .dropdown-menu.language_bar_chooser {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #dee2e6 !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  display: none;
  font-size: 12px;
  line-height: 1;
  list-style: none;
  margin: 0.125rem 0 0;
  min-width: 10rem;
  padding: 0;
  text-align: left;
  z-index: 1000;
}

.language-wrapper .dropdown-menu li img {
  margin: 0 10px;
}

.language-wrapper .dropdown-menu li a {
  padding: 10px 0;
}

.language-wrapper .btn img {
  margin-right: 7px;
  margin-top: 2px;
}

.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser {
  min-width: 0;
  width: auto;
}

.language-wrapper.choose-currency .dropdown .dropdown-menu.language_bar_chooser li a {
  padding: 10px;
  text-align: center;
}

.deal {
  background-color: #f5f6f9;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: row wrap;
  min-height: 300px;
  padding: 30px;
}

.deal-co {
  margin: 15px 0;
}

.deal,
.deal > div {
  width: 100%;
}

.deal .deal-content {
  align-self: center;
}

.deal .product-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 240px;
}

.deal .product-title a {
  color: var(--color-1st);
}

.deal .product-price {
  align-items: center;
  color: var(--color-danger);
  display: flex;
  flex-flow: wrap;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}

.deal .product-price .new-price {
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-right: 10px;
}

.deal .product-price .old-price {
  color: #ccc;
  text-decoration: line-through;
}

.deal .deal-bottom {
  align-self: flex-end;
}

.deal .deal-bottom .deals-countdown {
  margin-bottom: 20px;
  margin-left: -12px;
}

.custom-modal .modal-dialog {
  border: 0;
  border-radius: 0;
  margin: auto;
  max-width: 800px !important;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%) !important;
}

.custom-modal .modal-dialog .modal-content {
  border-radius: 0;
  padding: 0;
}

.custom-modal .modal-dialog .btn-close {
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  box-sizing: content-box;
  color: #000;
  height: 1em;
  opacity: 0.5;
  padding: 0.25em;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 1em;
  z-index: 2;
}

.btn--custom.btn--outline.btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.btn--custom.btn--outline.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.pagination {
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
}

.pagination li.page-item {
  margin-bottom: 10px;
}

.dropdown-swatch select.form-control {
  height: 34px;
}

.faqs-list h4 {
  margin-top: 30px;
}

.faqs-list h4:first-child {
  margin-top: 0;
}

.faqs-list .card {
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  margin-bottom: 10px;
}

.faqs-list .card .card-header {
  background: #fff;
  border-radius: 0;
  padding: 1rem;
}

.faqs-list .card .card-header h2 button {
  background: #fff;
  border: none;
  color: #333;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  position: relative;
  text-decoration: none !important;
  text-transform: none;
  width: 100%;
}

.faqs-list .card .card-header h2 button:before {
  display: none;
}

.faqs-list .card .card-header h2 button:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  border: 1px solid #ced4da;
  border-radius: 50%;
  color: #ced4da;
  content: "";
  height: 40px;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: -7px;
  transform: scale(0.7) !important;
  transition: transform 0.2s ease-in-out;
  width: 40px;
}

.faqs-list .card .card-header h2 button:not(.collapsed):after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.table__compare .product--detail .product__attribute {
  border: none;
  padding-bottom: 0;
}

.table__compare .product--detail .product__attribute .text-swatch li input[type=radio]:checked ~ span:after {
  right: -5px;
}

.slider__content {
  display: block;
}

.slider__content .slider__content__wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.slider__content .slider__content__wrapper .slider__content__wrapper__content {
  flex: 1;
}

.cat_slider.owl-carousel.owl-drag .owl-item:last-child {
  margin-right: 0 !important;
}

.cat_slider.owl-carousel .owl-stage {
  margin: 0 auto;
}

.cat_slider.owl-carousel .owl-item img {
  margin-bottom: 5px;
}

.product__attribute > label {
  flex: 1;
  margin-right: 10px;
  white-space: nowrap;
}

.product .product__title {
  word-break: break-word;
}

.categories_box {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  min-height: 160px;
  text-align: center;
}

.product .product__title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Theme */
@media screen and (max-width: 1024px) {
  .desktop {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .mobile {
    display: none;
  }
  .signup_cus {
    border-right: 0.0625rem solid var(--color-grey);
  }
}
@media (min-width: 992px) {
  .lm-product__info_m {
    display: none;
  }
}
@media (max-width: 991px) {
  .desktop-grid {
    display: none;
  }
  .lm-product__overlay {
    display: none;
  }
}
body {
  background: #FBF9F4;
}

h1,
h2,
h3,
h4,
h5 {
  color: #000;
  font-weight: 500;
}

h5,
p {
  font-size: 12px;
  color: #000;
}

.header {
  border-bottom: 1px solid var(--color-border-100);
}

.contact-detail li {
  margin-right: 16px;
}

.top-header,
.top-header a {
  text-transform: uppercase;
  font-weight: 600;
}

.top-header {
  padding: 5px 0;
}

.top-header a:hover {
  color: #fff;
}

.header .logo img {
  width: 82px;
}

.collection.banner-effect {
  border-right: 1px solid #000;
}

.lm_pc_ft {
  border-right: 1px solid var(--color-border-100);
  border-bottom: 1px solid var(--color-border-100);
  border-top: 1px solid var(--color-border-100);
}

section.section--blog {
  padding-top: 0px;
  padding-bottom: 0px;
}

.text-dark {
  color: #000 !important;
}

.top-header {
  background: #000;
}

.top-header,
.top-header a {
  color: #fff;
}

.top-header {
  min-height: 28px;
}

.menu > li > a {
  font-size: 12px;
}

a.collection__more_link {
  left: 74px !important;
  bottom: 46% !important;
  background: none !important;
  color: #fff !important;
}

.footer {
  border-top: 0.0625rem solid var(--color-grey);
  border-bottom: 0.0625rem solid var(--color-grey);
  padding: 0px;
  background: #16151d;
  color: #f0ebe0;
}

.footer a:hover {
  color: var(--color-unbleached-cotton-hover);
}

.p-16px {
  padding: 16px;
}

.btn-dark_cus {
  background-color: #000;
  height: 44px;
  border-radius: 0;
  color: #fff;
}

.home-collection .collection {
  margin-bottom: 0px;
}

.product {
  margin: 0;
}

.product--detail .product__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0px;
  margin-top: 40px;
}

.product--detail .product__info-header {
  border-bottom: none;
  margin-bottom: 0px;
}

.product__desc span {
  font-size: 12px;
  font-weight: 300;
  color: #000;
}

.product--detail .product__price p span {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.product__shopping-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

button.btn--custom.btn-add-cart {
  display: flex;
  flex: 1;
}

.product--detail .product__add-wishlist {
  font-size: 18px;
  width: 50px;
  border: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--custom,
button.btn--custom {
  font-size: 12px;
  font-weight: 400;
  padding: 15px 13px;
}

.product__thumbnail {
  padding: 0 !important;
}

@media screen and (min-width: 1200px) {
  .page--blog,
  .page--inner {
    padding: 0 !important;
  }
}
.page--blog,
.page--inner {
  padding: 0 !important;
}

.breadcrumb-wrapper {
  display: none;
}

/* Image */
.product__thumbnail1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
}

.image-box {
  border-right: 1px solid var(--color-border-100);
  border-bottom: 1px solid var(--color-border-100);
}

.lm-product__wrapper {
  position: relative;
  background: #fff;
}

.lm-product__thumbnail {
  position: relative;
}

.lm-product__image-wrapper {
  position: relative;
  padding-bottom: 125%;
  overflow: hidden;
}

.lm-product__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}

.lm-product__image--hover {
  opacity: 0;
}

.lm-product__thumbnail:hover .lm-product__image--hover {
  opacity: 1;
}

.lm-product__thumbnail:hover .lm-product__image--main {
  opacity: 0;
}

.lm-product__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.lm-product__badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background: #000;
}

.lm-product__badge--sale {
  background: #ff0000;
}

.lm-product__badge--out-of-stock {
  background: #666;
}

.lm-product__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  background: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lm-product__favorite:hover {
  background: none;
}

.lm-product__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  z-index: 2;
}

.lm-product__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 10px;
  padding-bottom: 5px;
}

.lm-product__title {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  margin: 0;
  flex: 1;
  margin-right: 10px;
  text-transform: uppercase;
}

.lm-product__price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

.lm-product__price.sale del {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 12px;
}

.product__content {
  text-align: left;
}

.rating_wrap {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.rating {
  position: relative;
  width: 60px;
  height: 12px;
  background: #ddd;
  margin-right: 5px;
}

.product_rate {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #ffd700;
}

.rating_num {
  font-size: 12px;
  color: #666;
}

.product .product__title {
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
}

/* Customer */

.lm_wishlist_header {
  border-bottom: 1px solid #000;
  padding-bottom: 0px !important;
}

.lm_wishlist_header h3 {
  padding: 24px 0;
  font-size: 16px !important;
  margin-bottom: 0px !important;
}

.lm_wishlist_card {
  display: flex;
  border-right: 1px solid #000;
  position: relative;
}

.lm_wishlist_card__left {
  width: 200px;
  height: 250px;
  overflow: hidden;
}

.lm_wishlist_card__left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lm_wishlist_card__right {
  flex: 1;
  padding: 35px 30px;
}

.lm_wishlist_card__name {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  line-height: 120%;
  margin-bottom: 10px;
  display: flex;
}

.lm_wishlist_card__right .product__price span {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  display: flex;
  margin-bottom: 65px;
}

.lm_wishlist_card__button {
  width: 100%;
  border-radius: 0px;
  padding: 10px 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.lm_wishlist_card__button .icon {
  font-size: 15px;
  margin-right: 5px;
}

.bb_1px {
  border-bottom: 1px solid #000;
}

.js-remove-from-wishlist-button {
  position: absolute;
  right: 7px;
  top: 7px;
  font-size: 17px;
}

@media screen and (max-width: 1024px) {
  .lm_wishlist_card__left {
    width: 156px;
    height: 195px;
  }
  .lm_wishlist_card__right {
    padding: 18px;
  }
  .lm_wishlist_card__right .product__price span {
    margin-bottom: 40px;
  }
  .js-remove-from-wishlist-button {
    right: 10px;
  }
}
.lm_label {
  font-size: 13px !important;
  text-transform: uppercase;
}

/* Header */
.header__desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
}

.navigation__left {
  width: 82px;
}
/* Faqs */
.lm_faq_title {
  margin: 0 auto;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 56px;
  text-transform: uppercase;
  color: #000000;
  margin-top: 80px;
  margin-bottom: 45px;
  max-width: 500px;
}

.mb-80px {
  margin-bottom: 80px;
}

.lm_faq_ul {
  list-style: none !important;
}

.search-container {
  position: relative;
  margin-bottom: 80px;
}

.search-container::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.search-container input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #E5E7EB;
  font-size: 14px;
  color: #374151;
  background: #fff;
  transition: all 0.3s ease;
}

.search-container input:focus {
  outline: none;
  border-color: #D1D5DB;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-container input::-moz-placeholder {
  color: #9CA3AF;
}

.search-container input::placeholder {
  color: #9CA3AF;
}

/* Category Navigation Styles */
.category-nav {
  margin-bottom: 36px;
}

.category-nav .nav-pills {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px 18px;
}

.category-nav .nav-link {
  color: #7E7D7A;
  border: 2px solid #fff;
  border-radius: 0;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 14px;
  background: white;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 48px 32px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.13);
  border-radius: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.category-nav .nav-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.category-nav .nav-link.active {
  color: var(--primary-color);
  background-color: white;
  border-color: var(--primary-color);
  font-weight: 600;
  border: 2px solid #000;
}

/* FAQ Styles */
.faq-container {
  margin: 0 auto;
}

/* Search Results Styles */

/* Remove arrow icons since we're using + and - */

/* Responsive styles */
@media (max-width: 768px) {
  .category-nav .nav-link {
    min-width: auto;
    padding: 20px 24px;
    font-size: 16px;
  }
  .search-container {
    margin-bottom: 30px;
  }
  .category-nav .nav-pills {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .lm_faq_title {
    font-size: 36px;
    line-height: 44px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
/* Stores */
.lm_stores_wrapper {
  margin-top: 42px;
  margin-bottom: 42px;
}

/* Left Column Scroll */
.stores-container {
  height: 523px;
  overflow-y: auto;
  padding: 0px;
}

/* Navbar Styles */

/* Search Box Styles */
.search-box {
  padding: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#searchInput {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  flex: 1;
  box-shadow: none;
}

#searchInput:focus {
  box-shadow: none;
  border-color: #e0e0e0;
}

.search-button {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  background-color: #000;
  border: none;
  min-width: 92px;
  color: #fff;
}

.search-button:hover {
  background-color: #333;
}

/* Map Container Styles */
.map-container {
  height: 600px;
  border: none;
  background-color: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

/* Custom Map Marker Styles */

/* Custom Zoom Control Styles */

/* Update popup styles */

/* Store List Styles */
.stores-list h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* Store Popup Styles */

/* Search Results */

/* Mobile Tabs */
.mobile-tabs {
  display: flex;
}

.tab-btn {
  padding: 12px;
  border: none;
  background: none;
  font-size: 18px;
  color: #6D6B66;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  border-right: 1px solid #EDEDED;
}

.tab-btn.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stores-container {
    height: 100%;
  }
  .stores-tab {
    display: none;
  }
  .stores-tab.active {
    display: block;
  }
  .map_wrapper {
    display: none;
  }
  .map_wrapper.active {
    display: block;
  }
  .map-container {
    height: calc(100vh - 180px);
    border-radius: 0;
  }
  .search-box {
    padding: 15px;
    margin: 0;
    border-bottom: 1px solid #EDEDED;
    border-top: 1px solid #EDEDED;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  #searchInput {
    font-size: 14px;
    padding: 10px 15px;
  }
  .stores-list {
    margin-top: 0;
    padding-bottom: 70px;
  }
  .map_wrapper {
    padding: 0;
  }
}
/* Small mobile devices */
@media (max-width: 576px) {
  .stores-container {
    height: 100%;
  }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.stores-tab {
  overflow-y: auto;
  border: 1px solid #EDEDED;
}

.btn-clear {
  position: absolute;
  right: 135px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #999;
  padding: 0;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-clear:hover {
  color: #666;
}

.btn-clear.visible {
  display: flex;
}

/* Footer */
.widget--footer .widget__links li {
  padding: 0;
}

.widget--footer .widget__title {
  margin-bottom: 10px;
  font-size: 12px;
}

.btn_sale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.btn_sale_input {
  border: none;
  border-bottom: 0.0625rem solid var(--color-grey);
  margin-bottom: 8px;
  padding-left: 10px;
  height: 35px;
}

.btn_sale_input::-moz-placeholder {
  color: var(--color-unbleached-cotton);
}

.btn_sale_input::placeholder {
  color: var(--color-unbleached-cotton);
}

.btn_sale_input:focus {
  background-color: #FBF9F4;
}

.footer .accordion-button {
  text-transform: uppercase;
  font-size: 12px;
  border-top: 0.0625rem solid var(--color-grey);
  font-weight: 600;
  background: var(--color-black-charcoal);
  padding: 15px;
  color: var(--color-unbleached-cotton);
}

.footer .widget__links {
  list-style: none;
  padding: 0;
}

.footer .accordion-body {
  background: var(--color-black-charcoal);
}

.footer .accordion-body a {
  color: var(--color-unbleached-cotton);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #FBF9F4;
  box-shadow: none;
}

.fz-13px {
  font-size: 13px;
}

i.feather.icon.icon-arrow-right {
  font-size: 15px;
}

.mobile a.text-decoration-none.text-dark.font-weight-light {
  font-size: 13px;
  font-weight: 300;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23f0ebe0' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23f0ebe0' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.lm_footer_p {
  font-size: 11px;
  color: var(--color-unbleached-cotton);
  font-weight: 400;
  margin-bottom: 0;
}

.widget--footer .widget__title {
  color: var(--color-grey);
}

.f_newsleter_h5 {
  font-size: 12px;
  color: var(--color-grey);
  font-weight: 600;
}

.lm_footer_btn__promotionall {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--color-orange);
  height: 44px;
  border-radius: 0;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 12px;
}

.lm_footer_btn__promotionall:hover {
  background: var(--color-orange-hover);
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .copyright_m {
    border-top: 0.0625rem solid var(--color-grey);
    padding: 16px;
    color: var(--color-unbleached-cotton);
  }
}
/* Holine icon */
.lm_hotline-wrapper {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
}

.lm_hotline-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lm_hotline-button img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.lm_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  right: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all 0.3s ease;
}

.lm_hotline-wrapper.lm_active .lm_actions {
  opacity: 1;
  transform: scale(1);
}

.lm_action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5803921569);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lm_action-btn:hover {
  background-color: #000;
  color: #fff;
}

.lm_tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  position: absolute;
  right: 60px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.lm_action-btn:hover .lm_tooltip {
  visibility: visible;
  opacity: 1;
}

.lm_close-btn {
  cursor: pointer;
  color: #fff;
}

/* Header */
.lm_dropdown_header {
  border-radius: 0;
}

.lm_dropdown_header a {
  color: #000;
  font-size: 12px;
  font-weight: 500;
}

.lm_dropdown_header a:hover {
  color: #000;
}

.footerInfo__logo {
  width: 100%;
  background-color: var(--color-black-charcoal);
}

.footerInfo__logo:before {
  content: "";
  background: var(--color-orange);
  height: 2.125rem;
  width: 100%;
  display: block;
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .footerInfo__logo:before {
    height: 9.375rem;
    margin-bottom: 2.5rem;
  }
}

.footerInfo__logo:after {
  content: "";
  background: var(--color-orange);
  height: 2.125rem;
  width: 100%;
  display: block;
}

@media (min-width: 1024px) {
  .footerInfo__logo:after {
    height: 9.375rem;
  }
}
.copyright_m {
  background-color: var(--color-black-charcoal);
  color: var(--color-unbleached-cotton);
  padding: 5px;
}

.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  background: var(--color-black-charcoal);
  color: var(--color-unbleached-cotton);
}

.accordion {
  --bs-accordion-bg: var(--color-black-charcoal);
}

.lm_btn__return {
  background-color: #dc3545;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 10px 12px;
}

.lm_btn__return:hover {
  background-color: #f5532c;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.09);
}

/* Accessibility: improved contrast */
.lm__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 7px;
}

.lm__switch input {
  display: none;
}

.lm__slider {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.lm__slider::before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

input:checked + .lm__slider {
  background-color: black;
}

input:checked + .lm__slider::before {
  transform: translateX(20px);
}

.lm__switch .label-text {
  color: var(--color-unbleached-cotton);
}

.high-contrast {
  background: linear-gradient(180deg, rgba(1, 1, 1, 0.2509803922), rgba(1, 1, 1, 0.9019607843));
}

.contrast__text__active {
  color: #fff !important;
}

@media (max-width: 1024px) {
  .lm__switch {
    display: none;
  }
}
