@charset "UTF-8";
/* Reset.scss */
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
}

html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: none;
  cursor: pointer;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
  *overflow: visible;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a,
a:hover,
a:active,
a:focus,
input::-moz-focus-inner,
object,
embed {
  outline: none;
}

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

a:hover,
a:focus {
  text-decoration: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.c-pointer {
  cursor: pointer;
}

.trans {
  transition: all 0.3s ease;
}

.swiper {
  overflow: hidden;
}

.container-base {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-base {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container-base {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .container-base {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .container-base {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .container-base {
    max-width: 1568px;
  }
}

.df-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.df-e--center {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.df-s {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.df-s--start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.df-s--start--baseline {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.df-e {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.df-e--start {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.df-s--end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.df-e--end {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.df-col {
  display: flex;
  flex-direction: column;
}

.df-sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.df-sb--start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.df-se {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .df-wrap {
    flex-wrap: wrap;
  }
  .df-wrap > .df--item {
    flex: 1 0 100%;
    justify-content: center;
  }
}
.d-desktop {
  display: block;
}
.d-desktop.df-c {
  display: flex;
}
@media screen and (max-width: 991px) {
  .d-desktop {
    display: none;
  }
}

.d-mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .d-mobile {
    display: block;
  }
}

.h--100vh {
  height: 100vh;
}

.w100 {
  width: 100%;
}

.bg--cover {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.bg--contain {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.bottom-page-spacing {
  width: 100%;
  height: 140px;
}
@media (min-width: 768px) {
  .bottom-page-spacing {
    height: 240px;
  }
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt100 {
  margin-top: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pt80 {
  padding-top: 80px;
}

.pt40 {
  padding-top: 40px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb10 {
  padding-bottom: 10px;
}

.pr30 {
  padding-right: 30px;
}

.rotate {
  transform: rotate(180deg);
}

.rotate-tab {
  transform: rotate(180deg);
  top: 20px !important;
}

@font-face {
  font-family: "ClashDisplayRegular";
  src: url("../fonts/clashdisplay--regular.eot");
  src: url("../fonts/clashdisplay--regular.eot?#iefix") format("embedded-opentype"), url("../fonts/clashdisplay--regular.ttf") format("truetype"), url("../fonts/clashdisplay--regular.woff") format("woff"), url("../fonts/clashdisplay--regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-strecht: condensed;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "ClashDisplaySemibold";
  src: url("../fonts/clashdisplay--semibold.eot");
  src: url("../fonts/clashdisplay--semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/clashdisplay--semibold.ttf") format("truetype"), url("../fonts/clashdisplay--semibold.woff") format("woff"), url("../fonts/clashdisplay--semibold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-strecht: condensed;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "SatoshiBold";
  src: url("../fonts/satoshi--bold.eot");
  src: url("../fonts/satoshi--bold.eot?#iefix") format("embedded-opentype"), url("../fonts/satoshi--bold.ttf") format("truetype"), url("../fonts/satoshi--bold.woff") format("woff"), url("../fonts/satoshi--bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-strecht: condensed;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "SatoshiRegular";
  src: url("../fonts/satoshi--regular.eot");
  src: url("../fonts/satoshi--regular.eot?#iefix") format("embedded-opentype"), url("../fonts/satoshi--regular.ttf") format("truetype"), url("../fonts/satoshi--regular.woff") format("woff"), url("../fonts/satoshi--regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-strecht: condensed;
  -webkit-font-smoothing: antialiased;
}
h1 {
  font-family: "ClashDisplayRegular";
  font-size: clamp(1.6rem, 3vw, 3.1rem);
}

h2 {
  font-family: "ClashDisplayRegular";
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

h3 {
  font-family: "ClashDisplayRegular";
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}

h4 {
  /*font-family: $typeface--satoshi--regular;*/
  font-family: "ClashDisplayRegular";
  font-size: clamp(1.15rem, 1.5vw, 2rem);
}

h5 {
  font-family: "SatoshiRegular";
  font-size: clamp(1.1rem, 1.5vw, 2rem);
}

p {
  line-height: 1.4;
  font-family: "SatoshiRegular";
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

@media (min-width: 992px) {
  .underline-animation::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .underline-animation::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .underline-animation:hover::after {
    width: 100%;
  }
}

.white {
  color: #F2F2F2 !important;
}

.black {
  color: #2C3042 !important;
}

a.white,
button.white {
  background-color: #F2F2F2 !important;
  border: 1px solid #F2F2F2 !important;
  color: #2C3042 !important;
}
a.black,
button.black {
  background-color: #2C3042 !important;
  border: 1px solid #2C3042 !important;
  color: #F2F2F2 !important;
}
a:hover,
button:hover {
  opacity: 0.5;
}

.contact__form__contact7__input label {
  white-space: pre-wrap;
  width: 38%;
}

.primary-btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.primary-btn:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-btn p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.primary-btn:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.primary-btn:hover, .primary-btn:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.primary-btn:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .primary-btn {
    padding: 0.8rem 6rem;
  }
}

.secondary-btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.secondary-btn:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.secondary-btn p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.secondary-btn:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.secondary-btn:hover, .secondary-btn:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.secondary-btn:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .secondary-btn {
    padding: 0.8rem 6rem;
  }
}

.homepage__slider--full {
  height: calc(100vh - 160px);
}
@media (max-width: 991px) {
  .homepage__slider--full {
    height: 100vh;
  }
}
@media (min-width: 768px) {
  .homepage__slider--full {
    height: auto;
  }
  .homepage__slider--full .swipper {
    overflow: visible;
  }
  .homepage__slider--full .hero-img {
    height: auto;
    width: 100% !important;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper__slide {
  background: var(--bg-desktop);
}
@media (max-width: 991px) {
  .homepage__slider--full .homepage__slider--full__wrapper__slide {
    background: var(--bg-mobile);
  }
}
.homepage__slider--full .homepage__slider--full__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination {
  z-index: 1;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide {
  background-repeat: no-repeat !important;
  background-position: top center !important;
  background-size: cover !important;
  display: flex;
  justify-items: center;
  align-items: center;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__mobile-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__mobile-image {
    display: none;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper {
    max-width: 1568px;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card {
  max-width: 768px;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 24px;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  padding-bottom: 79px;
  line-height: 1.2em;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover, .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
    width: auto;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination {
  position: absolute;
  bottom: 50px;
  left: 0;
  text-align: left;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
}
@media (min-width: 992px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination {
    max-width: 1568px;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet {
  width: 145px;
  height: 42px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 2rem);
  color: #2C3042;
  position: relative;
  text-align: center;
  background-color: transparent;
  margin-left: 8px;
  opacity: 1;
}
@media (max-width: 991px) {
  .homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet {
    width: auto;
    min-width: 45px;
    max-width: 65px;
    margin-right: 4px;
  }
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  bottom: 21px;
  left: -6px;
  width: 4px;
  height: 4px;
  background: #2C3042;
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2C3042;
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #2C3042;
}
.homepage__slider--full .homepage__slider--full__wrapper .homepage__slider--full__wrapper__pagination .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F2F2F2;
}

.container--featured-products .container--featured-products_wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 160px;
  padding-bottom: 90px;
}
@media (min-width: 992px) {
  .container--featured-products .container--featured-products_wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container--featured-products .container--featured-products_wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .container--featured-products .container--featured-products_wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .container--featured-products .container--featured-products_wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .container--featured-products .container--featured-products_wrapper {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .container--featured-products .container--featured-products_wrapper {
    padding-bottom: 26px;
    padding-top: 4rem;
  }
}
.container--featured-products .container--featured-products_wrapper .container--featured-products_wrapper__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  padding-bottom: 4rem;
  text-align: center;
}
@media (max-width: 991px) {
  .container--featured-products .slider--featured-products__wrappper__slide {
    position: relative;
  }
  .container--featured-products .slider--featured-products__wrappper__slide a {
    display: block;
  }
  .container--featured-products .slider--featured-products__wrappper__slide a h2 {
    font-family: "Varela Round", sans-serif;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    text-transform: lowercase;
    color: #2C3042;
  }
  .container--featured-products .slider--featured-products__wrappper__slide a h2 .count {
    display: none;
  }
}

.homepage__grid-banner .homepage__grid-banner__container {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop {
  margin: 0px -12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop {
    flex-direction: column;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left {
  width: 58.333%;
  margin: 0px 12px;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box {
  min-height: 535px;
  display: flex;
  flex-direction: column;
  padding: 33px;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box {
    min-height: 500px;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box.homepage__grid-banner__box__background {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  padding-top: 41px;
  padding-bottom: 24px;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  flex-grow: 1;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button:hover, .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button {
    width: 100%;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--left .homepage__grid-banner__box .homepage__grid-banner__box__button img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right {
  width: 41.667%;
  margin: 0px 12px;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right {
    width: 100%;
    margin: 0;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box {
  min-height: 254px;
  padding: 33px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box__background {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top {
  min-height: 254px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top {
    min-height: 275px;
    margin-bottom: 1rem;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: fit-content;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button:hover, .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--top .homepage__grid-banner__box__button {
    width: 100%;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom {
  min-height: 254px;
  padding: 33px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom {
    min-height: 275px;
  }
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: fit-content;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button:hover, .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .homepage__grid-banner .homepage__grid-banner__container .homepage__grid-banner__container__loop .homepage__grid-banner__container__column--right .homepage__grid-banner__box.homepage__grid-banner__box--bottom .homepage__grid-banner__box__button {
    width: 100%;
  }
}

.homepage__cetegories--cascade {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 190px;
  padding-bottom: 180px;
  position: relative;
}
@media (min-width: 992px) {
  .homepage__cetegories--cascade {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__cetegories--cascade {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__cetegories--cascade {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__cetegories--cascade {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__cetegories--cascade {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text {
  width: 30%;
  position: sticky;
  top: 6rem;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text {
    width: 100%;
    position: static;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  padding-bottom: 3rem;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__title {
    padding-bottom: 2rem;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__info {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 2rem);
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__info {
    padding-bottom: 3rem;
    line-height: 1.3em;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 5rem !important;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button:hover, .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__text .homepage__cetegories--cascade__container__text__button {
    display: none;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories {
  width: 60%;
  column-count: 2;
  column-gap: 25px;
  margin-top: 120px;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .products.columns-4 {
  margin: 0;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories li a {
  position: relative;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories li a::after {
  content: "";
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ccffffff",GradientType=0 ); /* IE6-9 */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories {
    margin-top: 0;
    width: 100%;
    column-count: 1;
    column-gap: 0px;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .slider-categories__wrappper__slide {
    position: relative;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .slider-categories__wrappper__slide a {
    display: block;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .slider-categories__wrappper__slide a h2 {
    left: 20px;
    bottom: 20px;
    position: absolute;
    font-family: "Varela Round", sans-serif;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    text-transform: lowercase;
    color: #2C3042;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .slider-categories__wrappper__slide a h2 .count {
    display: none;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product {
  float: none;
  margin: auto;
  padding: 0;
  position: relative;
  width: 100%;
  margin-left: 0;
  margin-bottom: 20px;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product:first-child {
  margin-top: -120px;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product:first-child {
    margin-top: 0;
  }
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a {
  position: relative;
  display: block;
  overflow: hidden;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a .woocommerce-loop-category__title {
  position: absolute;
  bottom: 40px;
  left: 30px;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  text-transform: lowercase;
  color: #2C3042;
  z-index: 1;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a img {
  transform: scale(1);
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a img:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a:hover img, .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product a:focus img {
  transform: scale(1.3);
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__categories .woocommerce ul.products li.product mark.count {
  display: none;
}
.homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button {
  display: none;
}
@media (max-width: 991px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button {
    display: block;
    margin-top: 40px;
    width: 100%;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a {
    width: 100% !important;
    width: auto;
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: #2C3042;
    color: #F2F2F2;
    border: 1px solid #2C3042;
    position: relative;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.12rem);
    text-align: center;
    font-weight: 300;
    padding: 0.8rem 3rem !important;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a p {
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a:hover {
    background-color: #4D4D4D;
    color: #F2F2F2;
    border: 1px solid #4D4D4D;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a:hover, .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a:active {
    background-color: #4D4D4D;
    color: #F2F2F2;
    border: 1px solid #4D4D4D;
  }
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a:focus {
    background-color: #4D4D4D;
    color: #F2F2F2;
    border: 1px solid #4D4D4D;
    outline: none;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .homepage__cetegories--cascade .homepage__cetegories--cascade__container .homepage__cetegories--cascade__container__button a {
    padding: 0.8rem 6rem;
  }
}

.homepage__service-grid {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 240px;
}
@media (min-width: 992px) {
  .homepage__service-grid {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__service-grid {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__service-grid {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__service-grid {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__service-grid {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .homepage__service-grid {
    padding-bottom: 90px;
  }
}
.homepage__service-grid .homepage__service-grid__container .homepage__service-grid__loop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .homepage__service-grid .homepage__service-grid__container .homepage__service-grid__loop {
    flex-direction: column;
  }
}
.homepage__service-grid .homepage__service-grid__container .homepage__service-grid__loop .homepage__service-grid__loop__card {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
}
@media (max-width: 991px) {
  .homepage__service-grid .homepage__service-grid__container .homepage__service-grid__loop .homepage__service-grid__loop__card {
    max-width: 250px;
    margin-bottom: 3rem;
  }
  .homepage__service-grid .homepage__service-grid__container .homepage__service-grid__loop .homepage__service-grid__loop__card:last-child {
    margin-bottom: 0;
  }
}

.homepage__promo--full {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .homepage__promo--full {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__promo--full {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__promo--full {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__promo--full {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__promo--full {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .homepage__promo--full {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.homepage__promo--full__container {
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-top: 110px;
}
@media (max-width: 991px) {
  .homepage__promo--full__container {
    max-height: 410px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .homepage__promo--full__container img {
    max-height: 410px;
    max-width: 100%;
  }
}
.homepage__promo--full__container .homepage__promo--full__container__box {
  text-align: center;
  max-width: 560px;
  min-height: 570px;
  position: relative;
  padding: 100px 50px 140px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .homepage__promo--full__container .homepage__promo--full__container__box {
    min-height: 300px;
    max-height: 350px;
    padding: 1.5rem 1rem;
    max-width: 300px;
  }
}
.homepage__promo--full__container .homepage__promo--full__container__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 2rem);
  text-align: center;
  padding-bottom: 6em;
  position: relative;
  z-index: 1;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button:hover, .homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .homepage__promo--full__container .homepage__promo--full__container__box .homepage__promo--full__container__box__button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

.homepage__newsletter {
  padding-top: 140px;
  padding-bottom: 160px;
}
@media (max-width: 991px) {
  .homepage__newsletter {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.homepage__plugin--instagram {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .homepage__plugin--instagram {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .homepage__plugin--instagram {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .homepage__plugin--instagram {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .homepage__plugin--instagram {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .homepage__plugin--instagram {
    max-width: 1568px;
  }
}
.homepage__plugin--instagram .homepage__plugin--instagram__container__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  max-width: 500px;
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
  line-height: clamp(1.8rem, 1.4424rem + 1.5894vw, 3rem);
}
.homepage__plugin--instagram .homepage__plugin--instagram__container__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  max-width: 450px;
  text-align: center;
  margin: auto;
  margin-bottom: 2rem;
  line-height: 1.4rem;
  line-height: clamp(1.4rem, 1.2808rem + 0.5298vw, 1.8rem);
}

.site-mdm .homepage__promo--full__container, .site-mdm .homepage__newsletter {
  margin-bottom: 160px;
}
@media (max-width: 991px) {
  .site-mdm .homepage__promo--full__container, .site-mdm .homepage__newsletter {
    margin-bottom: 4rem;
  }
}
.site-mdm .homepage__promo--full__container {
  justify-content: flex-start;
  padding-left: 8rem;
}
.site-mdm .homepage__promo--full__container.custom-image {
  padding-left: 0;
}
.site-mdm .homepage__promo--full__container.custom-image img {
  width: 100%;
}
@media (max-width: 991px) {
  .site-mdm .homepage__promo--full__container {
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button:hover, .site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .site-mdm .homepage__promo--full__container .homepage__promo--full__container__box__button {
    padding: 0.8rem 6rem;
  }
}
.site-mdm .homepage__service-grid {
  padding-bottom: 160px;
}
@media (max-width: 991px) {
  .site-mdm .homepage__service-grid {
    padding-bottom: 4rem;
  }
}
.site-mdm .homepage__service-grid__loop__card__image {
  margin-bottom: 1rem;
}
.site-mdm .homepage__service-grid__loop__card__image img {
  width: 70px;
  height: 70px;
}
.site-mdm .FeedLayout__wrapper {
  background-color: #F8F8F2 !important;
}

.mdm-slider {
  margin-bottom: 160px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .mdm-slider {
    margin-bottom: 4rem;
    margin-top: 50px;
  }
}
.mdm-slider .homepage__slider--full__wrapper__slide {
  background: var(--bg-desktop);
}
@media (max-width: 991px) {
  .mdm-slider .homepage__slider--full__wrapper__slide {
    background: var(--bg-mobile);
  }
}
.mdm-slider .homepage__slider--full {
  height: calc(100vh - 160px);
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .mdm-slider .homepage__slider--full {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .mdm-slider .homepage__slider--full {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .mdm-slider .homepage__slider--full {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .mdm-slider .homepage__slider--full {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .mdm-slider .homepage__slider--full {
    max-width: 1568px;
  }
}
@media (max-width: 991px) {
  .mdm-slider .homepage__slider--full {
    height: 100vh;
  }
}
.mdm-slider .homepage__slider--full .slider-background {
  background-color: rgba(0, 0, 0, 0.1);
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination {
  z-index: 3;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  justify-items: center;
  align-items: center;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card {
  max-width: 768px;
  margin: auto;
  text-align: center;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 24px;
  position: relative;
  z-index: 3;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  padding-bottom: 79px;
  line-height: 1.2em;
  position: relative;
  z-index: 3;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  position: relative;
  z-index: 3;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:hover, .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-slide .homepage__slider--full__wrapper__slide__wrapper .homepage__slider--full__wrapper__slide__wrapper__card .homepage__slider--full__wrapper__slide__wrapper__card__button {
    width: auto;
  }
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination {
  text-align: left;
  width: min-content;
  left: 1rem;
  bottom: 30px;
}
@media (min-width: 992px) {
  .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination {
    left: 115px;
    bottom: 85px;
  }
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet {
  color: transparent !important;
  display: block;
  margin-bottom: 12px;
  width: 11px;
  height: 11px;
  background-color: #929292;
}
@media (min-width: 992px) {
  .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FAFAFA;
  outline-offset: 4px;
  outline: 1px solid #FAFAFA;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet::before {
  display: none;
}
.mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet::after {
  display: none;
}
@media (max-width: 991px) {
  .mdm-slider .homepage__slider--full .homepage__slider--full__wrapper .swiper-pagination .swiper-pagination-bullet {
    min-width: 11px;
    max-width: 11px;
  }
}

.error-page {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .error-page {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .error-page {
    margin-top: 200px;
    margin-bottom: 200px;
  }
}
.error-page__container__subtitle {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.error-page__container__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  line-height: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .error-page__container__title {
    width: 50%;
    margin: auto;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .error-page__container__title {
    width: 30%;
  }
}
.error-page__container__error {
  width: 75%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .error-page__container__error {
    margin-bottom: 6rem;
    width: 50%;
  }
}
.error-page__container__secondary-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 1rem;
}
.error-page__container__links a {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #2C3042;
  display: block;
  margin: auto;
  position: relative;
  width: max-content;
  margin-bottom: 0.75rem;
}
.error-page__container__links a:after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background-color: #242424;
  position: absolute;
  bottom: -4px;
}
@media (min-width: 768px) {
  .error-page__container__links a {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}

.contact {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media (min-width: 992px) {
  .contact {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .contact {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .contact {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .contact {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .contact {
    max-width: 1568px;
  }
}
@media (min-width: 768px) {
  .contact {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact .contac__form__wrapper {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .contact .contac__form__wrapper {
    width: 45%;
    margin-bottom: 0;
  }
}
.contact__message__title {
  margin-bottom: 2rem;
}
.contact__message__text {
  margin-bottom: 3rem;
  line-height: 1.5;
}
.contact__message__links li {
  margin-bottom: 1.5rem;
  list-style: none;
}
.contact__message__links li a {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #2C3042;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact__form__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 4rem;
}
.contact__form__contact7 label {
  width: 37%;
  min-width: 150px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  white-space: pre;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 768px) {
  .contact__form__contact7 label {
    margin-bottom: 0;
  }
}
.contact__form__contact7 .wpcf7-form-control-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__form__contact7 .wpcf7-form-control-wrap {
    max-width: 60%;
    min-width: 50%;
  }
}
.contact__form__contact7__select, .contact__form__contact7__input {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact__form__contact7__select, .contact__form__contact7__input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}
.contact__form__contact7__select select, .contact__form__contact7__select input, .contact__form__contact7__input select, .contact__form__contact7__input input {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  height: 2.5rem;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.contact__form__contact7__acceptance {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .contact__form__contact7__acceptance {
    margin-bottom: 2.5rem;
    margin-top: 3.5rem;
  }
}
.contact__form__contact7__acceptance__item {
  margin-bottom: 0.5rem;
}
.contact__form__contact7__acceptance__item__link {
  color: #2666CF !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.contact__form__contact7__acceptance__item span {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.3;
}
.contact__form__contact7__acceptance__item .wpcf7-form-control-wrap {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
@media (min-width: 768px) {
  .contact__form__contact7__acceptance__item .wpcf7-form-control-wrap {
    max-width: 100%;
  }
}
.contact__form__contact7__acceptance__item .wpcf7-form-control-wrap input[type=checkbox] {
  margin-right: 1rem;
}
.contact__form__contact7__submit input {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.contact__form__contact7__submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact__form__contact7__submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.contact__form__contact7__submit input:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.contact__form__contact7__submit input:hover, .contact__form__contact7__submit input:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.contact__form__contact7__submit input:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .contact__form__contact7__submit input {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .contact__info {
    width: 45%;
    display: flex;
    flex-direction: column;
  }
}
.contact__info__title {
  margin-bottom: 2rem;
}
.contact__info__items {
  margin-bottom: 1rem;
}
.contact__info__items__item {
  margin-bottom: 1rem;
}
.contact__info__items__item p {
  padding-left: 1.5rem;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.contact__info__items__item p:last-child {
  line-height: 1.5;
}
.contact__info__items__item p::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
}
.contact__info__items__item:nth-child(1) p::after {
  background: url(../../images/icon--phone.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__info__items__item:nth-child(2) p::after {
  background: url(../../images/icon--mail.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__info__items__item:nth-child(3) p::after {
  background: url(../../images/icon--map-pin.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact__info__map {
  width: 100%;
  height: auto;
}
.contact__info__map img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .contact__info__map img {
    object-fit: cover;
    max-height: 400px;
  }
}

.faq__container {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .faq__container {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .faq__container {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .faq__container {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .faq__container {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .faq__container {
    max-width: 1568px;
  }
}
.faq__container .dropdown .btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem transparent;
  background-color: transparent;
  outline: none;
  color: #2C3042;
}
.faq__container .dropdown .dropdown-toggle {
  background-color: transparent;
  color: #2C3042;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 0 0.2rem transparent;
  width: 100%;
}
.faq__container .dropdown .dropdown-toggle:focus, .faq__container .dropdown .dropdown-toggle:hover, .faq__container .dropdown .dropdown-toggle:active {
  box-shadow: 0 0 0 0.2rem transparent;
  background-color: transparent;
  outline: none;
}
.faq__container .dropdown .dropdown-menu {
  border: none;
}
.faq__container .dropdown.dropdown__tipology {
  float: none;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown__tipology {
    margin-bottom: 40px;
    width: 80%;
  }
}
.faq__container .dropdown.dropdown__tipology .item--question-main {
  position: relative;
  display: block;
  height: 65px;
  border-bottom: 1px solid #E1E1E1;
  cursor: pointer;
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown__tipology .item--question-main {
    position: static;
  }
}
.faq__container .dropdown.dropdown__tipology .item--question-main::after {
  content: "";
  right: 0;
  position: absolute;
  border: none;
  background-image: url("../../images/icon--open.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 33px;
  height: 33px;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq__container .dropdown.dropdown__tipology .item--question-main::after:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown__tipology .item--question-main::after {
    right: 1.5rem;
  }
}
.faq__container .dropdown.dropdown__tipology .item--question-main .dropdown__tipology__title {
  display: inline-block;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-transform: initial;
}
.faq__container .dropdown.dropdown__tipology .item--question-main.collapsed::after {
  transform: rotate(0deg);
}
.faq__container .dropdown.dropdown__tipology .item--question-main:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq__container .dropdown.dropdown__tipology .dropdown-menu {
  float: none;
  position: static;
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown__tipology .dropdown-menu {
    width: 80%;
  }
}
.faq__container .dropdown.dropdown__tipology ul {
  padding-top: 30px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown_question {
    width: 80%;
  }
}
.faq__container .dropdown.dropdown_question span.item--question {
  margin-bottom: 30px;
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: none;
  width: 100%;
  display: block;
  border-bottom: 1px solid #E1E1E1;
  cursor: pointer;
}
.faq__container .dropdown.dropdown_question span.item--question h5 {
  display: inline-block;
  white-space: initial;
  text-align: left;
  line-height: 1.2;
  padding-right: 2rem;
}
.faq__container .dropdown.dropdown_question span.item--question::after {
  content: "";
  right: 10px;
  position: absolute;
  top: 17px;
  border: none;
  background-image: url("../../images/icon--arrow.svg");
  width: 15px;
  height: 15px;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq__container .dropdown.dropdown_question span.item--question::after:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq__container .dropdown.dropdown_question span.item--question.collapsed::after {
  transform: rotate(90deg);
}
.faq__container .dropdown.dropdown_question span.item--question:not(.collapsed)::after {
  transform: rotate(-90deg);
}
.faq__container .dropdown.dropdown_question ul {
  margin-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 992px) {
  .faq__container .dropdown.dropdown_question ul {
    width: 100%;
    margin-bottom: 80px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.faq__container .dropdown.dropdown_question ul p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.faq__container .dropdown.dropdown_question ul p a {
  color: #2666CF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__container .faqs__link {
  background-color: transparent;
  color: #2C3042;
  border-bottom: 1px solid #E1E1E1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 65px;
  padding: 0.375rem 0 0.375rem 0.75rem;
  display: block;
  position: relative;
}
.faq__container .faqs__link::after {
  content: "";
  right: 0;
  position: absolute;
  top: 7px;
  border: none;
  background-image: url("../../images/icon--open.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 33px;
  height: 33px;
}
@media (min-width: 992px) {
  .faq__container .faqs__link::after {
    right: 1.5rem;
  }
}
.faq__container .faqs__link h3 {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}
@media (min-width: 992px) {
  .faq__container .faqs__link {
    width: 80%;
  }
}
.faq__container__item {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .faq__container__item {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .faq__container__item {
    width: 80%;
  }
}
.faq__container__item__question {
  margin-bottom: 1.5rem;
  /*font-family: $typeface--satoshi--regular;*/
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 2rem);
}
.faq__container__item p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.faq__container__item li {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.3;
  text-indent: 1rem;
  margin-bottom: 0.5rem;
}
.faq__container__item ul li {
  list-style: disc inside;
}
.faq__container__item ol li {
  list-style: decimal inside;
}
.faq__container__item a {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2666CF;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__container__item u {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.3;
}
.faq__container__item strong {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

.legal {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .legal {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .legal {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .legal {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .legal {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .legal {
    max-width: 1568px;
  }
}
.legal h2, .legal h3 {
  margin-bottom: 1.5rem;
  /*font-family: $typeface--satoshi--regular;*/
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 2rem);
}
.legal p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.legal li {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.3;
  text-indent: 1rem;
  margin-bottom: 0.5rem;
}
.legal ul li {
  list-style: disc inside;
}
.legal ol li {
  list-style: decimal inside;
}
.legal a {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2666CF;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal u {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.3;
}
.legal strong {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

.collections .page-header {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .collections .page-header {
    margin-top: 170px;
  }
}
.collections__hero {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .collections__hero {
    height: 750px;
  }
}
.collections__hero__text {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .collections__hero__text {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .collections__hero__text {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .collections__hero__text {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .collections__hero__text {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .collections__hero__text {
    max-width: 1568px;
  }
}
.collections__hero__text__title {
  max-width: 768px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 24px;
}
.collections__hero__text__subtitle {
  max-width: 768px;
  padding-bottom: 79px;
  line-height: 1.2em;
}
.collections__hero__text__button {
  max-width: 768px;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.collections__hero__text__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.collections__hero__text__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.collections__hero__text__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.collections__hero__text__button:hover, .collections__hero__text__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.collections__hero__text__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .collections__hero__text__button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .collections__hero__text__button {
    width: auto;
  }
}
.collections__wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .collections__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .collections__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .collections__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .collections__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .collections__wrapper {
    max-width: 1568px;
  }
}
.collections__wrapper__number {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .collections__wrapper__number {
    margin-bottom: 3rem;
  }
}
.collections__wrapper__number p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  opacity: 70%;
}
.collections__wrapper__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-mdm .collections__wrapper {
  margin: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .site-mdm .collections__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .site-mdm .collections__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .site-mdm .collections__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .site-mdm .collections__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .site-mdm .collections__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .site-mdm .collections__wrapper {
    max-width: 1568px;
  }
}
.site-mdm .collections__wrapper__cards {
  display: flex;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.7rem;
  width: calc(100% + 1.4rem);
  margin-left: -1rem;
  width: calc(100% + 2rem);
}

.login-wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .login-wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .login-wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .login-wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .login-wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .login-wrapper {
    max-width: 1568px;
  }
}
@media (min-width: 768px) {
  .login-wrapper {
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .login-wrapper {
    padding: 0 100px;
  }
}
@media (min-width: 768px) {
  .login-wrapper .login-section {
    width: 45%;
  }
}
@media (min-width: 1440px) {
  .login-wrapper .login-section {
    width: 40%;
  }
}
.login-wrapper .login-section .login-text {
  margin-bottom: 3rem;
}

.woocommerce form.login,
.woocommerce form.register {
  border: none !important;
}

.woocommerce form.login .password-input,
.woocommerce-page form .password-input {
  width: 100% !important;
}

.woocommerce form.login .form-row input.input-text {
  border: none;
  border-bottom: 1px solid #4D4D4D;
  width: 100%;
  height: 2rem;
  padding-left: 1rem;
  font-family: "SatoshiRegular";
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  height: 3rem;
}
.woocommerce form.login .form-row input.input-text::placeholder {
  font-family: "SatoshiRegular";
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

.woocommerce form.login .form-row input.input-text:hover:hover {
  background-color: transparent !important;
}

.woocommerce form.login .form-row label {
  display: none;
}

.woocommerce form.login .form-row {
  padding: 0 !important;
  margin: 0 !important;
}

.lost_password {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .lost_password {
    margin-bottom: 3rem;
  }
}
.lost_password a {
  color: #2666CF !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  margin-bottom: 3rem;
  margin-right: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    margin-bottom: 0;
  }
}

.woocommerce-form-login__submit {
  width: 100%;
  display: inline-block !important;
  text-decoration: none !important;
  padding: 1rem 2rem !important;
  background-color: #F2F2F2 !important;
  color: #4D4D4D !important;
  border: 1px solid #F2F2F2 !important;
  position: relative !important;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 300 !important;
  text-align: center;
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.woocommerce-form-login__submit:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-form-login__submit:hover {
  background-color: #F2F2F2 !important;
  color: #4D4D4D !important;
  border: 1px solid #F2F2F2 !important;
}
.woocommerce-form-login__submit:hover, .woocommerce-form-login__submit:active {
  background-color: #F2F2F2 !important;
  color: #4D4D4D !important;
  border: 1px solid #F2F2F2 !important;
}
.woocommerce-form-login__submit:focus {
  background-color: #F2F2F2 !important;
  color: #4D4D4D !important;
  border: 1px solid #E1E1E1 !important;
  outline: none;
}
@media (min-width: 768px) {
  .woocommerce-form-login__submit {
    padding: 0.8rem 6rem !important;
    margin-bottom: 0;
  }
}

.woocommerce-form-register__submit {
  width: 100%;
  display: inline-block !important;
  text-decoration: none !important;
  padding: 1rem 2rem !important;
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  border: 1px solid #F2F2F2 !important;
  position: relative !important;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 300 !important;
  text-align: center;
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.woocommerce-form-register__submit:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-form-register__submit:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.woocommerce-form-register__submit:hover, .woocommerce-form-register__submit:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.woocommerce-form-register__submit:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}
@media (min-width: 768px) {
  .woocommerce-form-register__submit {
    padding: 0.8rem 6rem !important;
  }
}

.lost_reset_password {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .lost_reset_password {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .lost_reset_password {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .lost_reset_password {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .lost_reset_password {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .lost_reset_password {
    max-width: 1568px;
  }
}
@media (min-width: 768px) {
  .lost_reset_password {
    margin-top: 160px;
    margin-bottom: 160px;
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .lost_reset_password__wrapper {
    max-width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.lost_reset_password__title {
  margin-bottom: 2rem;
  text-align: center;
}

.lost_reset_password__subtitle {
  margin-bottom: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .lost_reset_password__input {
    width: 70% !important;
  }
}

.lost_reset_password__input__item {
  margin-bottom: 3rem !important;
}

.lost_reset_password_button {
  width: 100%;
  display: inline-block !important;
  text-decoration: none !important;
  padding: 1rem 2rem !important;
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  border: 1px solid #F2F2F2 !important;
  position: relative !important;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 300 !important;
  text-align: center;
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.lost_reset_password_button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lost_reset_password_button:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.lost_reset_password_button:hover, .lost_reset_password_button:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.lost_reset_password_button:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}
@media (min-width: 768px) {
  .lost_reset_password_button {
    width: auto;
    padding: 0.8rem 6rem !important;
  }
}

.woocommerce-ResetPassword.lost_reset_password > p {
  margin-bottom: 30px;
  display: block;
}
.woocommerce-ResetPassword.lost_reset_password input.woocommerce-Input--text {
  background-color: #f5f5f5;
  border: none;
  height: 2.5rem;
  padding-left: 1rem;
  font-family: "SatoshiRegular";
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

.lost-password-confirmation__text {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .lost-password-confirmation__text {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .lost-password-confirmation__text {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .lost-password-confirmation__text {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .lost-password-confirmation__text {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .lost-password-confirmation__text {
    max-width: 1568px;
  }
}

.about__hero {
  width: 100%;
  height: 500px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .about__hero {
    height: 750px;
  }
}
.about__hero__text {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .about__hero__text {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .about__hero__text {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .about__hero__text {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .about__hero__text {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .about__hero__text {
    max-width: 1568px;
  }
}
.about__hero__text__title {
  max-width: 768px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 24px;
}
.about__hero__text__subtitle {
  max-width: 768px;
  padding-bottom: 79px;
  line-height: 1.2em;
}
.about__hero__text__button {
  max-width: 768px;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.about__hero__text__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about__hero__text__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.about__hero__text__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.about__hero__text__button:hover, .about__hero__text__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.about__hero__text__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .about__hero__text__button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .about__hero__text__button {
    width: auto;
  }
}
.about .page-header {
  margin-top: 100px;
}
@media (min-width: 992px) {
  .about .page-header {
    margin-top: 170px;
  }
}
.about__content {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .about__content {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .about__content {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .about__content {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .about__content {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .about__content {
    max-width: 1568px;
  }
}
.about__content__flex-section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .about__content__flex-section {
    margin-bottom: 160px;
    flex-direction: row;
    min-height: 450px;
    max-height: 650px;
  }
}
.about__content__flex-section__text {
  width: 100%;
}
@media (min-width: 992px) {
  .about__content__flex-section__text {
    width: 40%;
    padding-right: 2rem;
  }
}
.about__content__flex-section__text__title {
  margin-bottom: 2rem;
}
.about__content__flex-section__text__description {
  margin-bottom: 3rem;
}
.about__content__flex-section__text__btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.about__content__flex-section__text__btn:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about__content__flex-section__text__btn p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.about__content__flex-section__text__btn:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.about__content__flex-section__text__btn:hover, .about__content__flex-section__text__btn:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.about__content__flex-section__text__btn:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .about__content__flex-section__text__btn {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .about__content__flex-section__text__btn {
    width: auto;
  }
}
.about__content__flex-section__img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .about__content__flex-section__img {
    width: 55%;
  }
}
.about__content__flex-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: papayawhip;
}
.about__content__flex-section__gallery {
  width: 100%;
  height: auto;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .about__content__flex-section__gallery {
    width: 55%;
    max-width: 70%;
    margin-top: 0;
  }
}
.about__content__flex-section__gallery__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about__content__flex-section__gallery__list li {
  width: 48%;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .about__content__flex-section__gallery__list li {
    width: 23%;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    margin: 0 0 0.5rem 0.5rem;
  }
}
.about__content__flex-section__gallery__list li img {
  width: 100%;
  height: 270px;
  max-height: 270px;
  object-fit: cover;
}
@media (min-width: 576px) {
  .about__content__flex-section__gallery__list li img {
    height: 350px;
    max-height: 350px;
  }
}
@media (min-width: 768px) {
  .about__content__flex-section__gallery__list li img {
    height: 400px;
    max-height: 400px;
  }
}
@media (min-width: 992px) {
  .about__content__flex-section__gallery__list li img {
    height: 270px;
    max-height: 270px;
  }
}
.about__content__full {
  padding-top: 6rem;
  margin-bottom: 80px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  .about__content__full {
    margin-bottom: 160px;
    padding-left: 0;
    padding-right: 0;
  }
}
.about__content__full__text {
  margin: auto;
  background-color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 1.5rem 1rem;
  max-width: 400px;
}
@media (min-width: 992px) {
  .about__content__full__text {
    width: 70%;
    max-width: 70%;
    padding: 8rem;
  }
}
.about__content__full__text__title {
  margin-bottom: 2rem;
}
.about__newsletter {
  margin-bottom: 80px;
}
.about__newsletter h5 {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  max-width: 500px;
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
  line-height: clamp(1.8rem, 1.4424rem + 1.5894vw, 3rem);
}
@media (min-width: 992px) {
  .about__newsletter h5 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .about__newsletter {
    margin-bottom: 160px;
  }
}

.custom-registration {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 6em !important;
}
@media (min-width: 992px) {
  .custom-registration {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .custom-registration {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .custom-registration {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .custom-registration {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .custom-registration {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .custom-registration {
    max-width: 500px;
  }
}
.custom-registration p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 0.5rem;
}
.custom-registration p.form-row {
  margin-bottom: 2rem !important;
  display: block;
}
.custom-registration p.form-row input {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  height: 2.5rem;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
@media (min-width: 992px) {
  .custom-registration p.form-row input:hover {
    background-color: #ECECEB !important;
  }
}

.page-template-default .content-page-default {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .page-template-default .content-page-default {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .page-template-default .content-page-default {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .page-template-default .content-page-default {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .page-template-default .content-page-default {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .page-template-default .content-page-default {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .page-template-default .content-page-default {
    margin-top: 170px;
    margin-bottom: 170px;
  }
}
.page-template-default .content-page-default h1, .page-template-default .content-page-default h2:first-child {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E1E1E1;
}
@media (min-width: 768px) {
  .page-template-default .content-page-default h1, .page-template-default .content-page-default h2:first-child {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .page-template-default .content-page-default form {
    width: 100%;
  }
}
.page-template-default .content-page-default form .contact__form__contact7__input label {
  white-space: pre-wrap;
  max-width: 38%;
}
.page-template-default .content-page-default ol {
  list-style: auto;
  list-style-position: inside;
}
.page-template-default .content-page-default ul {
  list-style: disc;
  list-style-position: inside;
}
.page-template-default .content-page-default li {
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.4;
}
.page-template-default .content-page-default li:last-child {
  margin-bottom: 0;
}
.page-template-default .content-page-default a {
  text-decoration: underline;
  color: #2C3042;
  text-underline-offset: 4px;
}

.header__heder--top__wrapper .language-switcher li.widget_nav_menu {
  list-style: none;
}

.header__heder--top {
  height: 43px;
  background-color: #4D4D4D;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header__heder--top {
    position: relative;
    z-index: 3;
  }
}
.header__heder--top .header__heder--top__wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header__heder--top .header__heder--top__wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    pointer-events: initial;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .header__heder--top .header__heder--top__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .header__heder--top .header__heder--top__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .header__heder--top .header__heder--top__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 992px) and (min-width: 1568px) {
  .header__heder--top .header__heder--top__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 992px) and (min-width: 1650px) {
  .header__heder--top .header__heder--top__wrapper {
    max-width: 1568px;
  }
}
.header__heder--top .header__heder--top__wrapper span {
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.header__heder--top .header__heder--top__wrapper a {
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.header__heder--top .header__heder--top__wrapper p {
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.header__heder--top .header__heder--top__wrapper .marquee marquee {
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  width: 100vw;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu::marker {
  content: "";
  display: none;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70px;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li {
  position: relative;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li::after {
  content: "|";
  position: absolute;
  color: #F2F2F2;
  right: -15px;
  top: 0;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li:last-child::after {
  display: none;
}
.header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li.current_page_item a {
  font-weight: 600;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    pointer-events: none;
  }
}
header .header__heder--bottom {
  background-color: transparent;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 43px;
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 7;
  /*
  &:not(.scrolled) {

      & .header__heder--bottom__wrapper {

          & .header__heder--bottom__wrapper__menu--left a {
              color: $c__primary__white--1000;
          }

          & .header__heder--bottom__wrapper__menu--left a::after {
              background-color: $c__primary__white--1000;
          }

          & .header__heder--bottom__wrapper__item--logotype img {
              filter: invert(1);
          }

          & .header__heder--bottom__wrapper__menu--right__item::after {
              background-color: $c__primary__white--1000;
          }

          & .header__heder--bottom__wrapper__menu--right__item a {
              color: $c__primary__white--1000;
          }

          & .header__heder--bottom__wrapper__menu--right img {
              filter: invert(1);
          }

          & .header__heder--bottom__wrapper__menu--right span {
              color: $c__primary__white--1000;
          }

          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon__line,                
          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::after,
          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::before {
              background-color: $c__primary__white--1000;
          }
      }
  }
  */
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header__heder--bottom:hover {
  transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom.addon__background--white {
  background-color: #FFFFFF;
  padding: 2.3rem 0px;
}
header .header__heder--bottom.down.addon__background--white {
  padding: 3.6rem 0px;
}
header .header__heder--bottom.scrolled {
  background-color: #FFFFFF;
  margin-top: 0;
}
header .header__heder--bottom.hidden {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(-100%);
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
header .header__heder--bottom.hidden:hover {
  transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  header .header__heder--bottom {
    padding: 1.5rem 0;
    pointer-events: initial;
    position: relative;
    z-index: 7;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  header .header__heder--bottom .header__heder--bottom__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  header .header__heder--bottom .header__heder--bottom__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  header .header__heder--bottom .header__heder--bottom__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  header .header__heder--bottom .header__heder--bottom__wrapper {
    max-width: 1568px;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__item--logotype {
  width: 100%;
  max-width: 100px;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__item--logotype {
    max-width: 209px;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__item--logotype img {
  width: 100%;
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left {
  display: none;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left span {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left a {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-right: 20px;
  position: relative;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: -2.1rem;
    height: 3px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left a:hover::after {
    width: 100%;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--left p {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right {
    pointer-events: initial;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right__item {
  position: relative;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right__item::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: -2.1rem;
    height: 3px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right__item::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right__item:hover::after {
    width: 100%;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right__item a {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-right: 20px;
  position: relative;
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right span {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-right: 8px;
  padding-left: 8px;
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right span.item--icon--search {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right span.item--icon--search.item--icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right span.item--icon--search.item--icon--search {
    margin-left: 0.5rem;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right span.item--icon--search {
    width: 19px;
  }
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon:hover {
    opacity: 0.5;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--search img, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--favorites img, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--cart img {
    width: 19px;
  }
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--search .cart-contents-count, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--favorites .cart-contents-count, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--cart .cart-contents-count {
    font-size: 15px;
    padding-right: 2px;
    padding-left: 5px;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--icon--logout, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--icon--myaccount, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--ico--register, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--ico--menu {
    padding-right: 6px;
    padding-left: 6px;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--logout, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--icon--logout {
    display: none;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--myaccount, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--icon--myaccount {
    display: none;
  }
}
@media (max-width: 991px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right a.item--icon--register, header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .separator--icon--register {
    display: none;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .search--container {
  margin-left: 10px;
  /*&--open {

  }

  &--close {  

  }*/
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right p {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler {
  position: relative;
  z-index: 3;
  pointer-events: initial;
}
@media (min-width: 992px) {
  header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler {
    pointer-events: initial;
  }
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon {
  height: 18px;
  width: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon__line {
  width: 24px;
  height: 1px;
  background-color: #2C3042;
  position: relative;
  top: 9px;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon__line:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 24px;
  height: 1px;
  background-color: #2C3042;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::before:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0px;
  width: 24px;
  height: 1px;
  background-color: #2C3042;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler.open .nav-toggler__icon .nav-toggler__icon__line {
  background-color: transparent;
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler.open .nav-toggler__icon::before {
  top: 10px;
  transform: rotate(45deg);
}
header .header__heder--bottom .header__heder--bottom__wrapper .header__heder--bottom__wrapper__menu--right .nav-toggler.open .nav-toggler__icon::after {
  top: 10px;
  transform: rotate(-45deg);
}

.dgwt-wcas-suggestions-wrapp {
  border: none;
}

.site-mdm .nav-toggler.van-dos-toggler {
  display: none !important;
}
.site-mdm .header__heder--top .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li::after {
  right: -21px;
}

.site-vandos .nav-toggler.mdm-toggler {
  display: none;
}
.site-vandos .go-top {
  display: none;
}

.header__heder--top__wrapper .language-switcher li.widget_nav_menu {
  list-style: none;
}

.site-mdm .header__heder--top {
  display: none;
}
@media (min-width: 992px) {
  .site-mdm .header__heder--top {
    background-color: #E1E1E1;
    display: flex;
    z-index: 11;
  }
}
.site-mdm .header__heder--top__wrapper {
  justify-content: space-between;
}
.site-mdm .header__heder--top__wrapper a {
  color: #2C3042;
  font-size: 14px;
}
.site-mdm .header__heder--top__wrapper .language-switcher {
  display: block;
}
.site-mdm .header__heder--top__wrapper .language-switcher .widget_nav_menu ul li::after {
  color: #2C3042;
}
.site-mdm .header__heder--top__wrapper .marquee p {
  color: #2C3042;
}
.site-mdm .header__heder--top .menu-header-top {
  margin-right: 0.5rem;
}
.site-mdm .header__heder--top .menu-header-top a {
  margin-right: 1rem;
}
.site-mdm .header__heder--top .menu-header-top a:hover {
  opacity: 0.5;
}
.site-mdm header .header__heder--bottom {
  background-color: #F8F8F2;
  /*
  &:not(.scrolled) {

      & .header__heder--bottom__wrapper {

          & .header__heder--bottom__wrapper__menu--left a {
              color: $c__primary__black--1000;
          }

          & .header__heder--bottom__wrapper__menu--left a::after {
              background-color: $c__primary__black--1000;
          }

          & .header__heder--bottom__wrapper__item--logotype img {
              filter: invert(0);
          }

          & .header__heder--bottom__wrapper__menu--right__item::after {
              background-color: $c__primary__black--1000;
          }

          & .header__heder--bottom__wrapper__menu--right__item a {
              color: $c__primary__black--1000;
          }

          & .header__heder--bottom__wrapper__menu--right img {
              filter: invert(0);
          }

          & .header__heder--bottom__wrapper__menu--right span {
              color: $c__primary__black--1000;
          }

          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon__line,                
          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::after,
          & .header__heder--bottom__wrapper__menu--right .nav-toggler__icon::before {
              background-color: $c__primary__black--1000;
          }
      }
  }
  */
}
@media (max-width: 1023px) {
  .site-mdm header .header__heder--bottom {
    margin-top: 0;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype {
  display: flex;
  align-items: center;
  max-width: max-content !important;
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .logotype-container {
  max-width: 75px;
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .logotype-container {
    max-width: 125px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler {
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler {
    margin-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler {
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler.d-mobile {
    display: block;
    margin-left: 35px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler.open .nav-toggler__icon .nav-toggler__icon__line {
  background-color: transparent;
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler.open .nav-toggler__icon::before {
  top: 10px;
  transform: rotate(45deg);
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler.open .nav-toggler__icon::after {
  top: 10px;
  transform: rotate(-45deg);
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon {
  height: 18px;
  width: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon {
    height: 28px;
    width: 56px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon__line {
  width: 24px;
  height: 1px;
  background-color: #2C3042;
  position: relative;
  top: 9px;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon__line:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon__line {
    width: 56px;
    top: 12px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::before, .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::after {
  width: 24px;
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::before, .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::after {
    width: 56px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 1px;
  background-color: #2C3042;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::before:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0px;
  height: 1px;
  background-color: #2C3042;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__item--logotype .nav-toggler__icon::after {
    width: 56px;
    top: 24px;
  }
}
.site-mdm header .header__heder--bottom .header__heder--bottom__wrapper__menu--left {
  display: none;
}
.site-mdm header .header__heder--bottom .separator--icon--menu {
  display: none;
}

footer .footer__footer--top {
  background-color: #E1E1E1;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__footer--top .footer__footer--top__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 54px 0;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    max-width: 1568px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    max-width: 450px;
    margin: auto;
  }
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper {
    flex-direction: row;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper a {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin: auto;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper a {
    margin: initial;
    margin-bottom: 15px;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper p {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(2) a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(2) a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(2) a:hover::after {
    width: 100%;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(2) a::after {
  height: 1px;
  bottom: -2px;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(3) {
  margin-bottom: 0rem;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(3) a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(3) a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(3) a:hover::after {
    width: 100%;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column:nth-child(3) a::after {
  height: 1px;
  bottom: -2px;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column {
    margin-bottom: 0;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column.first-footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column.first-footer-column {
    align-items: flex-start;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__logotype {
  margin-bottom: 30px;
  max-width: 200px;
  width: 100%;
}
@media (min-width: 768px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__social a {
    padding-bottom: 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__social a img {
    height: 25px;
  }
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__social a span {
    padding-right: 10px;
    padding-left: 5px;
  }
}
@media (max-width: 991px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__social {
    display: none;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__payment {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  flex-direction: column;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__payment {
    flex-direction: row;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__payment > div {
  color: #929292;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__payment > div img {
  margin-top: 0.5rem;
  padding-left: 10px;
  width: 125px;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .footer__footer--top__column__payment > div img {
    margin-top: 0;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column a {
  display: block;
  width: max-content;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .widget.col-sm-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .widget.col-sm-4 .wpcf7 form .newsletter__form .wpcf7-form-control-wrap input[type=email] {
  background-color: transparent;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .widget.col-sm-4 .wpcf7 form .newsletter__form .newsletter__form__acceptance a {
  display: inline-block;
  margin-bottom: initial;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column .widget.col-sm-4 .widgettitle {
  display: none;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter {
  padding-right: 0;
  padding-left: 0;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter__title {
  display: none;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter__subtitle {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form {
  max-width: 500px;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form .wpcf7-form-control-wrap {
  width: 100%;
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form__acceptance {
  text-align: left;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form__acceptance {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form__acceptance a {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .wpcf7-list-item input[type=checkbox]:after {
  background-color: #F2F2F2;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form__submit {
    order: 3;
    text-align: center;
    width: 100%;
    margin-left: 0 !important;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .newsletter .newsletter__form__submit input {
  background-color: #F2F2F2;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov {
  margin: auto;
  margin-bottom: 4rem;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov a {
  padding-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov a span {
  padding-right: 10px;
  padding-left: 10px;
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov.d-mobile {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov.d-mobile {
    display: none;
  }
}
footer .footer__footer--top .footer__footer--top__wrapper .footer__footer--top__column__social--mov.d-mobile a img {
  width: 22px;
  height: 22px;
  margin: 0 5px 0 5px;
}
footer .footer__footer--bottom {
  background-color: #2C3042;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer__footer--bottom .widget_nav_menu {
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 992px) {
  footer .footer__footer--bottom .widget_nav_menu {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  footer .footer__footer--bottom .widget_nav_menu {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  footer .footer__footer--bottom .widget_nav_menu {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  footer .footer__footer--bottom .widget_nav_menu {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  footer .footer__footer--bottom .widget_nav_menu {
    max-width: 1568px;
  }
}
footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container {
  width: 100%;
}
footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 11px 0;
}
@media (min-width: 992px) {
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu {
    flex-direction: row;
  }
}
footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a {
  display: block;
  padding: 4px 0;
  color: #F2F2F2;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a::after, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a::after:hover, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a:hover::after, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a:hover::after {
    width: 100%;
  }
}
@media (min-width: 992px) {
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a {
    margin-bottom: 0.5rem;
  }
  footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-english-container .menu a:hover::after, footer .footer__footer--bottom .widget_nav_menu .menu-footer-bottom-container .menu a:hover::after {
    background-color: #F2F2F2;
  }
}

.site-mdm footer .footer__footer--top {
  background-color: #FFFFFF;
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input {
  background-color: #2C3042 !important;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input:hover, .site-mdm footer .footer__footer--top .newsletter__form__submit input:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.site-mdm footer .footer__footer--top .newsletter__form__submit input:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .site-mdm footer .footer__footer--top .newsletter__form__submit input {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .site-mdm footer .footer__footer--top__column {
    max-width: 25%;
    width: initial !important;
  }
}

.tax-collection .site-main {
  padding-left: 1rem;
  padding-right: 1rem;
}
.tax-collection .site-main .woocommerce-products-header .term-description {
  display: none;
}
@media (min-width: 992px) {
  .tax-collection .site-main {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .tax-collection .site-main {
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .tax-collection .site-main {
    max-width: 100%;
  }
}
@media (min-width: 1568px) {
  .tax-collection .site-main {
    max-width: 100%;
  }
}
@media (min-width: 1650px) {
  .tax-collection .site-main {
    max-width: 100%;
  }
}
.tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .tax-collection .woocommerce-breadcrumb, .tax-collection .woocommerce-products-header, .tax-collection .woocommerce-info, .tax-collection .top-products, .tax-collection .products {
    max-width: 1568px;
  }
}
.tax-collection .products {
  margin: auto !important;
}

.megamenu {
  position: fixed;
  top: 0;
  padding: 3.1rem 1rem 2rem 1rem;
  width: 100%;
  min-height: 100vh;
  background-color: #FAFAFA;
  transform: translateX(100%);
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.megamenu:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .megamenu {
    pointer-events: initial;
  }
}
.megamenu__close {
  display: none;
}
@media (min-width: 992px) {
  .megamenu__close {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
}
.megamenu.open {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .megamenu {
    position: fixed;
    display: flex;
    flex: 1;
    min-height: auto;
    padding: initial;
    height: 100%;
  }
}
.megamenu a {
  color: #2C3042;
}
.megamenu__left {
  width: 100%;
}
@media (min-width: 992px) {
  .megamenu__left {
    display: flex;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .megamenu__left__wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
  }
}
.megamenu__left__wrapper__header {
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__header {
    display: none;
  }
}
.megamenu__left__wrapper__header__search {
  position: relative;
  width: 80%;
}
.megamenu__left__wrapper__header__search input {
  background-color: #F2F2F2;
  text-indent: 2rem;
  border-width: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  outline: none;
  position: relative;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #2C3042;
}
.megamenu__left__wrapper__header__search input::placeholder {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.megamenu__left__wrapper__header__search::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  background: url(../../images/icon--zoom.svg);
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 18px;
}
.megamenu__left__wrapper__categories {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__categories {
    margin-bottom: 0;
  }
}
.megamenu__left__wrapper__categories__item {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.megamenu__left__wrapper__categories__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../images/icon--arrow.svg);
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__categories__item::after {
    content: "";
    background: none;
    position: absolute;
    width: 0;
    height: 0;
  }
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__categories__item {
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__categories__item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__left__wrapper__categories__item a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__left__wrapper__categories__item a:hover::after {
    width: 100%;
  }
}
.megamenu__left__wrapper__categories__item img {
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__pages {
    margin-top: 4.5rem;
  }
}
.megamenu__left__wrapper__pages__item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 1.2rem;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__pages__item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__left__wrapper__pages__item a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__left__wrapper__pages__item a:hover::after {
    width: 100%;
  }
}
.megamenu__left__wrapper__pages__item a::after {
  height: 1px;
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__pages__item {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .megamenu__left__wrapper__payement {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    bottom: 3rem;
  }
}
.megamenu__left__wrapper__payement__text {
  margin-right: 0.5rem;
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.megamenu__left__wrapper__payement__image img {
  height: 38px;
}
.megamenu__right {
  opacity: 0;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .megamenu__right {
    display: flex;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    background-position: top center !important;
  }
}
.megamenu__right__veil {
  display: none;
}
@media (min-width: 992px) {
  .megamenu__right__veil {
    background: #F2F2F2;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
  }
}
.megamenu__right:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.megamenu__right.open {
  opacity: 1;
}
.megamenu__right__list__item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .megamenu__right__list__item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__right__list__item a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .megamenu__right__list__item a:hover::after {
    width: 100%;
  }
}
.megamenu__right__list__item a::after {
  height: 1px;
}
.megamenu__right__list {
  display: none;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.megamenu__right__list:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.megamenu__right__list.open {
  display: block;
}
.megamenu__toogle {
  background-color: #FAFAFA;
  position: fixed;
  height: 100vh;
  top: 6rem;
  left: 0;
  width: 100%;
  transform: translateX(100%);
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-top: 1rem;
}
.megamenu__toogle:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.megamenu__toogle.open {
  transform: translateX(0);
  overflow-y: scroll;
  padding-bottom: 130px;
}
.megamenu__toogle__header {
  background-color: #E1E1E1;
  padding: 0.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.megamenu__toogle__header::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: url(../../images/icon--arrow.svg);
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}
.megamenu__toogle__header__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
}
.megamenu__toogle__list {
  padding: 2.5rem 1rem;
}
.megamenu__toogle__list__item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 1.5rem;
}
.megamenu .language-switcher {
  display: none;
}
@media (max-width: 1023px) {
  .megamenu .language-switcher {
    display: block;
  }
}

@media (max-width: 1023px) {
  .language-switcher {
    position: absolute;
    bottom: 30px;
    left: calc(50% - 40px);
  }
}
.language-switcher .widget_nav_menu::marker {
  content: "";
  display: none;
}
.language-switcher .widget_nav_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50px;
}
.language-switcher .widget_nav_menu ul li {
  position: relative;
}
.language-switcher .widget_nav_menu ul li::after {
  content: "|";
  position: absolute;
  color: #2C3042;
  right: -8px;
  top: 0;
}
.language-switcher .widget_nav_menu ul li:last-child::after {
  display: none;
}

.newsletter {
  margin-bottom: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .newsletter {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .newsletter {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .newsletter {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .newsletter {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .newsletter {
    max-width: 1568px;
  }
}
.newsletter__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  max-width: 500px;
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
  line-height: clamp(1.8rem, 1.4424rem + 1.5894vw, 3rem);
}
@media (min-width: 992px) {
  .newsletter__title {
    margin-bottom: 1rem;
  }
}
.newsletter__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  max-width: 450px;
  text-align: center;
  margin: auto;
  margin-bottom: 2rem;
  line-height: 1.4rem;
  line-height: clamp(1.4rem, 1.2808rem + 0.5298vw, 1.8rem);
}
@media (min-width: 992px) {
  .newsletter__subtitle {
    margin-bottom: 4rem;
  }
}
.newsletter__form {
  max-width: 650px;
  margin: auto;
}
@media (min-width: 992px) {
  .newsletter__form {
    display: flex;
    flex-wrap: wrap;
  }
}
.newsletter__form .email-61 {
  position: relative;
}
.newsletter__form .email-61::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #929292;
  position: absolute;
  bottom: -20px;
}
@media (min-width: 992px) {
  .newsletter__form .email-61::after {
    bottom: -12px;
  }
}
@media (min-width: 992px) {
  .newsletter__form .email-61 {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .newsletter__form .wpcf7-form-control-wrap {
    width: 70%;
    min-width: 70%;
  }
}
.newsletter__form .wpcf7-form-control-wrap input[type=email] {
  margin-bottom: 10px;
  width: 100%;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #929292;
  position: relative;
  text-indent: 0.4rem;
}
@media (min-width: 992px) {
  .newsletter__form .wpcf7-form-control-wrap input[type=email] {
    text-indent: 0.8rem;
  }
}
.newsletter__form .wpcf7-form-control-wrap input[type=email]::placeholder {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #929292;
}
.newsletter__form .wpcf7-form-control-wrap input[type=email]::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #929292;
  position: absolute;
  bottom: -10px;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  bottom: -2.1rem;
  height: 1px;
  background-color: #4D4D4D;
}
.newsletter__form .wpcf7-form-control-wrap input[type=email]:focus {
  color: #2C3042;
}
.newsletter__form .newsletter__form__acceptance {
  margin-bottom: 30px;
  color: #2C3042;
  margin-top: 20px;
  margin-left: 0.4rem;
}
@media (min-width: 992px) {
  .newsletter__form .newsletter__form__acceptance {
    margin-bottom: initial;
    order: 3;
    margin-left: 0.8rem;
    width: 70%;
  }
}
.newsletter__form .newsletter__form__acceptance .newsletter__form__acceptance__consent {
  margin-right: 10px;
  background-color: #2C3042;
  width: auto;
}
.newsletter__form .newsletter__form__acceptance .wpcf7-list-item-label {
  line-height: 1.4rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.newsletter__form .newsletter__form__acceptance a {
  color: #2666CF;
  text-decoration: underline;
}
.newsletter__form .newsletter__form__submit {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .newsletter__form .newsletter__form__submit {
    text-align: right;
    width: 25%;
    margin-left: 2rem;
  }
}
.newsletter__form .newsletter__form__submit input {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.newsletter__form .newsletter__form__submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.newsletter__form .newsletter__form__submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.newsletter__form .newsletter__form__submit input:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.newsletter__form .newsletter__form__submit input:hover, .newsletter__form .newsletter__form__submit input:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.newsletter__form .newsletter__form__submit input:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .newsletter__form .newsletter__form__submit input {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .newsletter__form .newsletter__form__submit input {
    width: auto;
  }
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7-not-valid-tip {
  border: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .wpcf7 form.failed .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7-not-valid-tip {
    top: 0;
    margin-bottom: 15px;
    max-width: 650px;
    margin: auto;
    width: 70%;
    margin-top: 1rem;
    font-weight: 600;
  }
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  padding-bottom: 15px;
  margin: 0;
}

.wpcf7-not-valid-tip {
  margin-bottom: 15px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.homepage__newsletter .wpcf7 form.sent .wpcf7-response-output {
  max-width: 650px;
  margin: auto;
  margin-top: 1rem;
  padding-left: 0.4rem;
}
@media (min-width: 992px) {
  .homepage__newsletter .wpcf7 form.sent .wpcf7-response-output {
    padding-left: 0.8rem;
  }
}

.site-mdm .homepage__newsletter {
  background-color: #FFFFFF;
}
.site-mdm .newsletter__form .wpcf7-form-control-wrap input[type=email] {
  background-color: transparent;
}
.site-mdm .newsletter__form__submit input {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.site-mdm .newsletter__form__submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-mdm .newsletter__form__submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.site-mdm .newsletter__form__submit input:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.site-mdm .newsletter__form__submit input:hover, .site-mdm .newsletter__form__submit input:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.site-mdm .newsletter__form__submit input:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .site-mdm .newsletter__form__submit input {
    padding: 0.8rem 6rem;
  }
}

.wpcf7-not-valid-tip,
.wpcf7 form.failed .wpcf7-response-output {
  color: #CD0505;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: #D39A08;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #07B68C;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  border-color: transparent;
}

.xoo-wsc-notice-error {
  color: #CD0505;
  background-color: #ECECEB;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #929292 !important;
  border-top: none !important;
}

.page-header {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 200px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .page-header {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .page-header {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .page-header {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .page-header {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .page-header {
    max-width: 1568px;
  }
}
@media (min-width: 768px) {
  .page-header {
    margin-top: 275px;
    margin-bottom: 50px;
  }
}
.page-header__breadcrumbs {
  color: #2C3042;
  opacity: 80%;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .page-header__breadcrumbs {
    margin-bottom: 35px;
  }
}
.page-header__title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-header__title {
    margin-bottom: 50px;
  }
}
.page-header__line {
  width: 100%;
  height: 1px;
  background-color: #E1E1E1;
}

.swiper-container-horizontal .swiper-wrapper .swiper-slide a .container--featured-products_card {
  opacity: 1 !important;
}
@media (max-width: 1023px) {
  .swiper-container-horizontal .swiper-wrapper .swiper-slide a img {
    height: 430px !important;
    object-fit: cover;
  }
}
@media (max-width: 991px) {
  .swiper-container-horizontal .swiper-wrapper .swiper-slide a img {
    height: 400px !important;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .swiper-container-horizontal .swiper-wrapper .swiper-slide a img {
    height: 435px !important;
    object-fit: cover;
  }
}

.woocommerce-breadcrumb {
  margin-bottom: 50px !important;
}
.woocommerce-breadcrumb a {
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-breadcrumb a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-breadcrumb a:hover, .woocommerce-breadcrumb a:focus {
  color: #2C3042;
}

.collections__wrapper__card {
  display: block;
  width: 100%;
  height: 240px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: #2C3042;
  position: relative;
  overflow: hidden;
}
.collections__wrapper__card:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .collections__wrapper__card {
    height: 400px;
    width: 85%;
    margin-bottom: 3.5rem;
  }
  .collections__wrapper__card:nth-child(even) {
    align-self: flex-start;
  }
  .collections__wrapper__card:nth-child(odd) {
    align-self: flex-end;
  }
}
@media (min-width: 1200px) {
  .collections__wrapper__card {
    height: 530px;
    width: 80%;
    margin-bottom: 4.5rem;
  }
}
.collections__wrapper__card__background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.collections__wrapper__card__background:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.collections__wrapper__card__gradient {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#40ffffff",GradientType=0 ); /* IE6-9 */
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.collections__wrapper__card__text {
  padding: 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .collections__wrapper__card__text {
    padding: 2rem 4rem;
  }
}
@media (min-width: 1200px) {
  .collections__wrapper__card__text {
    padding: 2.5rem 5rem;
  }
}
@media (min-width: 1440px) {
  .collections__wrapper__card__text {
    padding: 3rem 6rem;
  }
}
.collections__wrapper__card__text__item:first-child {
  margin-bottom: 0.5rem;
}
.collections__wrapper__card:hover {
  color: #2C3042;
}
.collections__wrapper__card:hover > .collections__wrapper__card__background {
  transform: scale(1.25);
}

.site-mdm .collections__wrapper__card {
  width: 100%;
  height: 500px;
  height: 70vh;
}
@media (min-width: 768px) {
  .site-mdm .collections__wrapper__card {
    width: calc(50% - 2rem);
    margin: 0 1rem 4rem;
    height: 64vh;
  }
}
@media (min-width: 992px) {
  .site-mdm .collections__wrapper__card {
    width: calc(33.33333% - 2rem);
    height: 55vh;
  }
}
@media (min-width: 1200px) {
  .site-mdm .collections__wrapper__card {
    height: 65vh;
  }
}
@media (min-width: 1440px) {
  .site-mdm .collections__wrapper__card {
    height: 800px;
  }
}
.site-mdm .collections__wrapper__card__background {
  background-position: center top !important;
}
.site-mdm .collections__wrapper__card__gradient {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.site-mdm .collections__wrapper__card__text {
  padding: 1.5rem 1.5rem;
}
@media (min-width: 768px) {
  .site-mdm .collections__wrapper__card__text {
    padding: 2rem 40px;
  }
}
@media (min-width: 1200px) {
  .site-mdm .collections__wrapper__card__text {
    padding: 2.5rem 40px;
  }
}
@media (min-width: 1440px) {
  .site-mdm .collections__wrapper__card__text {
    padding: 3rem 40px;
  }
}
.site-mdm .collections__wrapper__card h3 {
  color: #F2F2F2;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-family: "Varela Round", sans-serif;
}

.yith-similar-products ul.products li.product a,
.container--featured-products ul.products li.product a,
.related.products ul.products li.product a,
.page-template-page-special-prices ul.products li.product a {
  display: block;
  position: relative;
}
.yith-similar-products ul.products li.product a .woocommerce-loop-product__title,
.container--featured-products ul.products li.product a .woocommerce-loop-product__title,
.related.products ul.products li.product a .woocommerce-loop-product__title,
.page-template-page-special-prices ul.products li.product a .woocommerce-loop-product__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
  line-height: 1.2;
  height: 82px;
  min-height: 82px;
}
@media (min-width: 992px) {
  .yith-similar-products ul.products li.product a .woocommerce-loop-product__title,
  .container--featured-products ul.products li.product a .woocommerce-loop-product__title,
  .related.products ul.products li.product a .woocommerce-loop-product__title,
  .page-template-page-special-prices ul.products li.product a .woocommerce-loop-product__title {
    height: 90px;
    min-height: 90px;
  }
}
@media (min-width: 1650px) {
  .yith-similar-products ul.products li.product a .woocommerce-loop-product__title,
  .container--featured-products ul.products li.product a .woocommerce-loop-product__title,
  .related.products ul.products li.product a .woocommerce-loop-product__title,
  .page-template-page-special-prices ul.products li.product a .woocommerce-loop-product__title {
    height: 130px;
    min-height: 130px;
  }
}
.yith-similar-products ul.products li.product a img,
.container--featured-products ul.products li.product a img,
.related.products ul.products li.product a img,
.page-template-page-special-prices ul.products li.product a img {
  object-fit: cover;
}
@media (min-width: 992px) {
  .yith-similar-products ul.products li.product a img,
  .container--featured-products ul.products li.product a img,
  .related.products ul.products li.product a img,
  .page-template-page-special-prices ul.products li.product a img {
    height: 320px;
  }
}
@media (min-width: 1200px) {
  .yith-similar-products ul.products li.product a img,
  .container--featured-products ul.products li.product a img,
  .related.products ul.products li.product a img,
  .page-template-page-special-prices ul.products li.product a img {
    height: 450px;
  }
}
@media (min-width: 1568px) {
  .yith-similar-products ul.products li.product a img,
  .container--featured-products ul.products li.product a img,
  .related.products ul.products li.product a img,
  .page-template-page-special-prices ul.products li.product a img {
    height: 520px;
  }
}
.yith-similar-products ul.products li.product a img:nth-of-type(2),
.container--featured-products ul.products li.product a img:nth-of-type(2),
.related.products ul.products li.product a img:nth-of-type(2),
.page-template-page-special-prices ul.products li.product a img:nth-of-type(2) {
  display: none;
}
.yith-similar-products ul.products li.product a:hover img:nth-of-type(2),
.container--featured-products ul.products li.product a:hover img:nth-of-type(2),
.related.products ul.products li.product a:hover img:nth-of-type(2),
.page-template-page-special-prices ul.products li.product a:hover img:nth-of-type(2) {
  display: block;
}
.yith-similar-products ul.products li.product a:hover img:nth-of-type(1),
.container--featured-products ul.products li.product a:hover img:nth-of-type(1),
.related.products ul.products li.product a:hover img:nth-of-type(1),
.page-template-page-special-prices ul.products li.product a:hover img:nth-of-type(1) {
  display: none;
}
.yith-similar-products ul.products li.product a .star-rating,
.container--featured-products ul.products li.product a .star-rating,
.related.products ul.products li.product a .star-rating,
.page-template-page-special-prices ul.products li.product a .star-rating {
  display: none;
}
.yith-similar-products ul.products li.product a .price,
.container--featured-products ul.products li.product a .price,
.related.products ul.products li.product a .price,
.page-template-page-special-prices ul.products li.product a .price {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E1;
  height: 40px;
}
@media (min-width: 992px) {
  .yith-similar-products ul.products li.product a .price,
  .container--featured-products ul.products li.product a .price,
  .related.products ul.products li.product a .price,
  .page-template-page-special-prices ul.products li.product a .price {
    margin-bottom: 20px;
  }
}
.yith-similar-products ul.products li.product a .price ins,
.container--featured-products ul.products li.product a .price ins,
.related.products ul.products li.product a .price ins,
.page-template-page-special-prices ul.products li.product a .price ins {
  text-decoration: auto;
}
.yith-similar-products ul.products li.product a .product--prices,
.container--featured-products ul.products li.product a .product--prices,
.related.products ul.products li.product a .product--prices,
.page-template-page-special-prices ul.products li.product a .product--prices {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.yith-similar-products ul.products li.product a .product--prices__price--saving,
.container--featured-products ul.products li.product a .product--prices__price--saving,
.related.products ul.products li.product a .product--prices__price--saving,
.page-template-page-special-prices ul.products li.product a .product--prices__price--saving {
  color: #2C3042;
  padding-right: 20px;
}
.yith-similar-products ul.products li.product a .product--prices__price--regular,
.container--featured-products ul.products li.product a .product--prices__price--regular,
.related.products ul.products li.product a .product--prices__price--regular,
.page-template-page-special-prices ul.products li.product a .product--prices__price--regular {
  color: #929292;
  padding-right: 20px;
  text-decoration: line-through;
}
.yith-similar-products ul.products li.product a .product--prices__price--percentage,
.container--featured-products ul.products li.product a .product--prices__price--percentage,
.related.products ul.products li.product a .product--prices__price--percentage,
.page-template-page-special-prices ul.products li.product a .product--prices__price--percentage {
  color: #2C3042;
  padding-right: 20px;
}
.yith-similar-products ul.products li.product a .product-colors,
.container--featured-products ul.products li.product a .product-colors,
.related.products ul.products li.product a .product-colors,
.page-template-page-special-prices ul.products li.product a .product-colors {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.yith-similar-products ul.products li.product a .container--featured-products_card,
.container--featured-products ul.products li.product a .container--featured-products_card,
.related.products ul.products li.product a .container--featured-products_card,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card {
  position: absolute;
  top: 286px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.yith-similar-products ul.products li.product a .container--featured-products_card:hover,
.container--featured-products ul.products li.product a .container--featured-products_card:hover,
.related.products ul.products li.product a .container--featured-products_card:hover,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 768px) {
  .yith-similar-products ul.products li.product a .container--featured-products_card,
  .container--featured-products ul.products li.product a .container--featured-products_card,
  .related.products ul.products li.product a .container--featured-products_card,
  .page-template-page-special-prices ul.products li.product a .container--featured-products_card {
    top: 340px;
  }
}
@media (min-width: 992px) {
  .yith-similar-products ul.products li.product a .container--featured-products_card,
  .container--featured-products ul.products li.product a .container--featured-products_card,
  .related.products ul.products li.product a .container--featured-products_card,
  .page-template-page-special-prices ul.products li.product a .container--featured-products_card {
    top: 370px;
  }
}
@media (min-width: 1200px) {
  .yith-similar-products ul.products li.product a .container--featured-products_card,
  .container--featured-products ul.products li.product a .container--featured-products_card,
  .related.products ul.products li.product a .container--featured-products_card,
  .page-template-page-special-prices ul.products li.product a .container--featured-products_card {
    top: 390px;
  }
}
@media (min-width: 1568px) {
  .yith-similar-products ul.products li.product a .container--featured-products_card,
  .container--featured-products ul.products li.product a .container--featured-products_card,
  .related.products ul.products li.product a .container--featured-products_card,
  .page-template-page-special-prices ul.products li.product a .container--featured-products_card {
    top: 460px;
  }
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--wishlist,
.container--featured-products ul.products li.product a .container--featured-products_card__button--wishlist,
.related.products ul.products li.product a .container--featured-products_card__button--wishlist,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--wishlist {
  display: block;
  position: relative;
  background-color: #F2F2F2;
  width: 30%;
  height: 40px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--wishlist svg,
.container--featured-products ul.products li.product a .container--featured-products_card__button--wishlist svg,
.related.products ul.products li.product a .container--featured-products_card__button--wishlist svg,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--wishlist svg {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--wishlist.active svg,
.container--featured-products ul.products li.product a .container--featured-products_card__button--wishlist.active svg,
.related.products ul.products li.product a .container--featured-products_card__button--wishlist.active svg,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--wishlist.active svg {
  fill: #000;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--quickview,
.container--featured-products ul.products li.product a .container--featured-products_card__button--quickview,
.related.products ul.products li.product a .container--featured-products_card__button--quickview,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--quickview {
  display: block;
  position: relative;
  background-color: #E1E1E1;
  width: 30%;
  height: 40px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--quickview svg,
.container--featured-products ul.products li.product a .container--featured-products_card__button--quickview svg,
.related.products ul.products li.product a .container--featured-products_card__button--quickview svg,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--quickview svg {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
.container--featured-products ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
.related.products ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--quickview .helper--text {
  display: none;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--cart,
.container--featured-products ul.products li.product a .container--featured-products_card__button--cart,
.related.products ul.products li.product a .container--featured-products_card__button--cart,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--cart {
  display: block;
  position: relative;
  background-color: #2C3042;
  width: 30%;
  height: 40px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--cart svg,
.container--featured-products ul.products li.product a .container--featured-products_card__button--cart svg,
.related.products ul.products li.product a .container--featured-products_card__button--cart svg,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--cart svg {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.yith-similar-products ul.products li.product a .container--featured-products_card__button--cart .helper--text,
.container--featured-products ul.products li.product a .container--featured-products_card__button--cart .helper--text,
.related.products ul.products li.product a .container--featured-products_card__button--cart .helper--text,
.page-template-page-special-prices ul.products li.product a .container--featured-products_card__button--cart .helper--text {
  display: none;
}
.yith-similar-products ul.products li.product a:hover .container--featured-products_card,
.container--featured-products ul.products li.product a:hover .container--featured-products_card,
.related.products ul.products li.product a:hover .container--featured-products_card,
.page-template-page-special-prices ul.products li.product a:hover .container--featured-products_card {
  opacity: 1;
}
.yith-similar-products ul.products li.product .button,
.container--featured-products ul.products li.product .button,
.related.products ul.products li.product .button,
.page-template-page-special-prices ul.products li.product .button {
  display: none;
}
.yith-similar-products ul.products li.product .yith-wcwl-add-to-wishlist,
.container--featured-products ul.products li.product .yith-wcwl-add-to-wishlist,
.related.products ul.products li.product .yith-wcwl-add-to-wishlist,
.page-template-page-special-prices ul.products li.product .yith-wcwl-add-to-wishlist {
  display: none;
}

.yith-similar-products {
  margin-top: 70px;
}
.yith-similar-products h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #929292;
}
.yith-similar-products h2 .shop-link {
  display: none;
}
.yith-similar-products ul.products li.product {
  width: 33%;
}
.yith-similar-products ul.products li.product h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.yith-similar-products ul.products li.product img {
  object-position: 50% 0%;
}

.page-template-page-special-prices .woocommerce.columns-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .page-template-page-special-prices .woocommerce.columns-4 {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .page-template-page-special-prices .woocommerce.columns-4 {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .page-template-page-special-prices .woocommerce.columns-4 {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .page-template-page-special-prices .woocommerce.columns-4 {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .page-template-page-special-prices .woocommerce.columns-4 {
    max-width: 1568px;
  }
}
@media (max-width: 575px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product {
    width: 100% !important;
  }
}
.page-template-page-special-prices .woocommerce.columns-4 ul.products li.product img {
  height: 550px;
}
@media (min-width: 576px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product img {
    height: 450px;
  }
}
@media (min-width: 768px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product img {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product img {
    height: 400px;
  }
}
@media (min-width: 1568px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product img {
    height: 500px;
  }
}
.page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .price {
  height: initial;
  min-height: 40px;
}
.page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .price span {
  white-space: nowrap;
}
.page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .container--featured-products_card {
  top: 490px;
  opacity: 1 !important;
}
@media (min-width: 576px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .container--featured-products_card {
    top: 390px !important;
  }
}
@media (min-width: 768px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .container--featured-products_card {
    top: 240px !important;
  }
}
@media (min-width: 1200px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .container--featured-products_card {
    top: 340px !important;
    opacity: 0 !important;
  }
}
@media (min-width: 1568px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product .container--featured-products_card {
    top: 440px !important;
  }
}
@media (min-width: 1200px) {
  .page-template-page-special-prices .woocommerce.columns-4 ul.products li.product:hover .container--featured-products_card {
    opacity: 1 !important;
  }
}

.pop-up-promo {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  opacity: 0;
  display: none;
  transition: opacity 400ms ease-in-out;
}
.pop-up-promo.open {
  opacity: 1;
  display: block;
}
.pop-up-promo__background {
  background-color: #2C3042;
  opacity: 0.25;
  height: 100%;
  width: 100%;
  position: absolute;
}
.pop-up-promo__wrapper {
  pointer-events: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pop-up-promo .pop-up-promo__button {
  display: block;
  text-align: right;
  margin-bottom: 1.5rem;
  position: absolute;
  top: 0;
  right: 0;
}
.pop-up-promo .pop-up-promo__button__line {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
@media (min-width: 992px) {
  .pop-up-promo .pop-up-promo__button__line {
    top: 1.5rem;
    right: 2rem;
    width: 30px;
    height: 33px;
  }
}
.pop-up-promo .pop-up-promo__button__line::before, .pop-up-promo .pop-up-promo__button__line::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 1px;
  background-color: #2C3042;
}
.pop-up-promo .pop-up-promo__button__line:before {
  transform: rotate(45deg);
}
.pop-up-promo .pop-up-promo__button__line:after {
  transform: rotate(-45deg);
}
.pop-up-promo__container {
  pointer-events: all;
}
@media (min-width: 992px) {
  .pop-up-promo__container {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .pop-up-promo__container {
    width: 60%;
  }
}
.pop-up-promo__container__form {
  background-color: #FFFFFF;
  margin-right: 1rem;
  margin-left: 1rem;
  padding: 5.5rem 0.5rem 2rem 0.5rem;
  position: relative;
}
@media (max-width: 1023px) {
  .pop-up-promo__container__form {
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__form {
    display: flex;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }
}
.pop-up-promo__container__form__left {
  background: url("http://van-dos.test/wp-content/uploads/2022/03/homepage-hero.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__left {
    width: 50%;
    padding: 6rem 2rem;
  }
}
@media (min-width: 1200px) {
  .pop-up-promo__container__form__left {
    padding: 8rem 2rem;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__left__title {
    max-width: 70%;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right {
    width: 50%;
    padding: 6rem 2rem;
  }
}
@media (min-width: 1200px) {
  .pop-up-promo__container__form__right {
    padding: 8rem 2rem;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right .newsletter__subtitle {
    text-align: left !important;
  }
}
.pop-up-promo__container__form__right .newsletter__form {
  flex-direction: column;
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right .newsletter__form {
    max-width: 100%;
    width: 100%;
  }
}
.pop-up-promo__container__form__right .newsletter__form .wpcf7-form-control-wrap {
  width: 100% !important;
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right .newsletter__form .wpcf7-form-control-wrap {
    width: 100% !important;
  }
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__acceptance {
  margin-left: 0 !important;
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right .newsletter__form .newsletter__form__acceptance {
    width: 100% !important;
  }
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit {
  order: 3;
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input:hover, .pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit input {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__form__right .newsletter__form .newsletter__form__submit {
    width: 100% !important;
    text-align: center !important;
    margin-top: 3rem;
    margin-left: 0 !important;
  }
}
.pop-up-promo__container__cta {
  background: url("http://van-dos.test/wp-content/uploads/2022/03/homepage-banner-01.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  padding: 8rem 1.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 1rem;
  margin-left: 1rem;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .pop-up-promo__container__cta {
    padding: 10rem 2.5rem;
  }
}
.pop-up-promo__container__cta__subtitle {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .pop-up-promo__container__cta__subtitle {
    max-width: 70%;
  }
}
.pop-up-promo__container__cta__title {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .pop-up-promo__container__cta__title {
    max-width: 70%;
  }
}
.pop-up-promo__container__cta__button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  align-self: center;
}
.pop-up-promo__container__cta__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pop-up-promo__container__cta__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.pop-up-promo__container__cta__button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.pop-up-promo__container__cta__button:hover, .pop-up-promo__container__cta__button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.pop-up-promo__container__cta__button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .pop-up-promo__container__cta__button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .pop-up-promo__container__cta__button {
    align-self: flex-start;
  }
}

.pop-up-video {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  opacity: 0;
  display: none;
}
.pop-up-video.open {
  display: block;
  opacity: 1;
}
.pop-up-video__background {
  background-color: #2C3042;
  opacity: 0.25;
  height: 100%;
  width: 100%;
  position: absolute;
}
.pop-up-video__container {
  pointer-events: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pop-up-video__container__body {
  pointer-events: all;
}
.pop-up-video__container__body__button {
  display: block;
  text-align: right;
  margin-bottom: 1.5rem;
  position: relative;
}
.pop-up-video__container__body__button__line {
  width: 24px;
  height: 24px;
  position: absolute;
  top: -20px;
  right: 0;
}
.pop-up-video__container__body__button__line::before, .pop-up-video__container__body__button__line::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #F2F2F2;
}
.pop-up-video__container__body__button__line:before {
  transform: rotate(45deg);
}
.pop-up-video__container__body__button__line:after {
  transform: rotate(-45deg);
}
.pop-up-video__container__body__button:hover {
  opacity: 0.5;
}
.pop-up-video__container__body iframe {
  width: 300px;
  height: 200px;
}
@media (min-width: 576px) {
  .pop-up-video__container__body iframe {
    width: 400px;
    height: 250px;
  }
}
@media (min-width: 992px) {
  .pop-up-video__container__body iframe {
    width: 700px;
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .pop-up-video__container__body iframe {
    width: 800px;
    height: 500px;
  }
}

.pop-up-guide {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2000;
  display: none;
}
.pop-up-guide.pop-up-guide--shortcode {
  position: relative;
  z-index: 0;
  display: block;
  margin-top: 90px;
  overflow-x: auto;
  width: 100%;
}
.pop-up-guide.pop-up-guide--shortcode .pop-up-guide__container {
  width: auto;
  height: auto;
  min-width: fit-content;
}
.pop-up-guide.pop-up-guide--shortcode .pop-up-guide__container__body {
  overflow: auto;
  width: auto;
}
.pop-up-guide.pop-up-guide--shortcode .pop-up-guide__container__body__content {
  width: auto;
}
.pop-up-guide.open {
  display: block;
  opacity: 1;
}
.pop-up-guide__background {
  background-color: #2C3042;
  opacity: 0.25;
  height: 100%;
  width: 100%;
  position: absolute;
}
.pop-up-guide__container {
  pointer-events: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pop-up-guide__container__body {
  pointer-events: all;
  background-color: #FFFFFF;
  padding-right: 50px;
  padding-left: 50px;
  width: 1300px;
  overflow: scroll;
}
.pop-up-guide__container__body__button {
  display: block;
  text-align: right;
  margin-bottom: 1.5rem;
  position: relative;
}
.pop-up-guide__container__body__button__line {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 31px;
  height: 34px;
}
.pop-up-guide__container__body__button__line::before, .pop-up-guide__container__body__button__line::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 1px;
  background-color: #2C3042;
}
.pop-up-guide__container__body__button__line:before {
  transform: rotate(45deg);
}
.pop-up-guide__container__body__button__line:after {
  transform: rotate(-45deg);
}
.pop-up-guide__container__body__button:hover {
  opacity: 0.5;
}
.pop-up-guide__container__body h5 {
  padding: 45px 0 25px 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #E1E1E1;
}
.pop-up-guide__container__body__content__section-first {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-right: 85px;
  padding-left: 15px;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .pop-up-guide__container__body__content__section-first {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.pop-up-guide__container__body__content__section-first__left {
  margin-right: 60px;
}
.pop-up-guide__container__body__content__section-first__left table {
  margin-bottom: 15px;
}
.pop-up-guide__container__body__content__section-first__left table tr th {
  background-color: #E1E1E1;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  height: 50px;
}
.pop-up-guide__container__body__content__section-first__left table tr th:first-child {
  padding-left: 1rem;
}
@media (min-width: 1200px) {
  .pop-up-guide__container__body__content__section-first__left table tr th:first-child {
    padding-right: 60px;
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  }
}
.pop-up-guide__container__body__content__section-first__left table tr td {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  height: 60px;
  border-bottom: 1px solid #E1E1E1;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .pop-up-guide__container__body__content__section-first__left table tr td {
    padding-right: 60px;
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  }
}
.pop-up-guide__container__body__content__section-first__left table tr td:first-child {
  padding-right: 50px;
  padding-left: 1rem;
}
@media (min-width: 1200px) {
  .pop-up-guide__container__body__content__section-first__left table tr td:first-child {
    padding-right: 120px;
  }
}
.pop-up-guide__container__body__content__section-first__left table tr td:last-child {
  padding-right: 1rem;
}
.pop-up-guide__container__body__content__section-first__rigth {
  position: relative;
  display: flex;
  margin-top: 2rem;
}
@media (min-width: 1200px) {
  .pop-up-guide__container__body__content__section-first__rigth {
    margin-top: 0;
  }
}
.pop-up-guide__container__body__content__section-first__rigth__img {
  width: 155px;
  margin-right: 100px;
}
.pop-up-guide__container__body__content__section-first__rigth__img img {
  width: 155px;
}
.pop-up-guide__container__body__content__section-first__rigth__text {
  margin-left: 60px;
  margin-top: 120px;
  position: absolute;
  right: 0;
  width: 100%;
  text-align: right;
}
.pop-up-guide__container__body__content__section-first__rigth__text p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  position: relative;
}
.pop-up-guide__container__body__content__section-first__rigth__text p::before {
  content: "";
  height: 1px;
  width: 90%;
  position: absolute;
  background-color: #2C3042;
  right: 29%;
  top: 11px;
}
.pop-up-guide__container__body__content__section-first__rigth__text p:nth-child(2) {
  margin-top: 20px;
}
.pop-up-guide__container__body__content__section-first__rigth__text p:nth-child(3) {
  margin-top: 34px;
}
.pop-up-guide__container__body__content__section-first .dropdown {
  width: 100%;
}
.pop-up-guide__container__body__content__section-first .dropdown.show > .btn-secondary.dropdown-toggle {
  background-color: #FAFAFA;
  color: #2C3042;
  border: none;
  outline: none;
  box-shadow: 0 0 0 0.2rem #FAFAFA;
}
.pop-up-guide__container__body__content__section-first .dropdown .btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem transparent !important;
  background-color: transparent !important;
  outline: none !important;
  color: #2C3042 !important;
}
.pop-up-guide__container__body__content__section-first .dropdown-toggle {
  width: 100%;
  background-color: #FAFAFA;
  color: #2C3042;
  border-radius: 0;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: left;
  position: relative;
  height: 50px;
}
.pop-up-guide__container__body__content__section-first .dropdown-toggle::after {
  right: 10px;
  position: absolute;
  top: 17px;
  border: none;
  background-image: url("../../images/icon--arrow.svg");
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
.pop-up-guide__container__body__content__section-first .dropdown-toggle:focus, .pop-up-guide__container__body__content__section-first .dropdown-toggle:hover, .pop-up-guide__container__body__content__section-first .dropdown-toggle:active {
  box-shadow: 0 0 0 0.2rem #FAFAFA;
  background-color: #FAFAFA;
  color: #2C3042;
  border: none;
  outline: none;
}
.pop-up-guide__container__body__content__section-first .dropdown .dropdown-menu {
  transform: translate3d(0px, 0px, 0px) !important;
  border: none;
  border-top: 1px solid #E1E1E1;
  background-color: #FAFAFA;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
  margin-top: 0;
}
.pop-up-guide__container__body__content__section-first .dropdown .dropdown-menu .dropdown-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 0.5rem;
  color: #2C3042;
}
.pop-up-guide__container__body__content__section-first .dropdown .dropdown-menu .dropdown-paragraph {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 1rem;
  color: #2C3042;
}

@media (min-width: 1200px) {
  .page-template-default .pop-up-guide.pop-up-guide--shortcode .pop-up-guide__container__body {
    overflow: initial;
  }
  .page-template-default .pop-up-guide.pop-up-guide--shortcode {
    position: static;
    z-index: 1;
    overflow: initial;
  }
  .page-template-default .pop-up-guide__container__body__content__section-first .dropdown {
    margin-bottom: 125px;
  }
}

/*TODO NURIA*/
@media (max-width: 1199px) {
  .pop-up-guide.open {
    overflow-y: scroll;
  }
  .pop-up-guide__container__body {
    margin-top: 0;
    padding-top: 0;
  }
  .pop-up-guide__container {
    overflow: scroll;
    display: block;
  }
  .pop-up-guide__container__body {
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .pop-up-guide__container__body__content__section-first {
    padding-right: 0;
    padding-left: 50px;
  }
  .pop-up-guide__container__body__content__section-first__left {
    width: 100%;
    overflow-x: scroll;
  }
  .pop-up-guide__container__body__content__section-first__rigth__img {
    margin-right: 65px;
  }
}
.page-template-default.site-mdm .pop-up-guide__container__body {
  background-color: transparent;
}
.page-template-default.site-mdm table {
  background-color: #FFF;
}
@media screen and (max-width: 1199px) {
  .page-template-default.site-mdm .pop-up-guide__container__body__content__section-first {
    padding-right: 0;
    padding-left: 0;
  }
  .page-template-default.site-mdm .pop-up-guide__container__body__content__section-first__rigth__img {
    margin-right: 100px;
  }
  .page-template-default.site-mdm .pop-up-guide__container__body__content__section-first__rigth__img {
    margin-right: 100px;
  }
}

.site-mdm .table-van-dos,
.site-mdm .table-img-vandos {
  display: none;
}

.site-vandos .table-mdm,
.site-vandos .table-img-mdm {
  display: none;
}

.dgwt-wcas-search-wrapp {
  min-width: 320px !important;
}

.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp {
  position: fixed !important;
  margin-top: -1px;
  width: 50vw !important;
  top: 156px !important;
  left: 0 !important;
  right: auto;
  border: none !important;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion {
  display: block !important;
  padding: 10px;
  border-bottom: 1px solid #E1E1E1;
}
@media (min-width: 992px) {
  .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion {
    padding: 10px 80px;
  }
  .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion:hover {
    background-color: #E1E1E1;
  }
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st {
  margin-bottom: 10px;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-st-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-st-title strong {
  font-weight: 300;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-sd {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  padding-top: 10px;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp {
  align-items: flex-start;
  padding-left: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp del, .dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp ins {
  display: none;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices {
  display: flex;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices span {
  margin-right: 7px;
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--saving {
  order: 3;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular {
  order: 2;
  text-decoration: line-through;
  color: #929292;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular .amount {
  color: #929292;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular .amount .woocommerce-Price-currencySymbol {
  color: #929292;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--percentage {
  order: 1;
  margin-right: 14px;
}
.dgwt-wcas-details-outside.dgwt-wcas-is-details .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion.dgwt-wcas-suggestion-more {
  position: absolute;
  bottom: 156px;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #F2F2F2;
  border-bottom: none;
  box-shadow: inset -1px 0 0 transparent, inset 0 -1px 0 transparent, inset 1px 0 0 transparent, inset 0 1px 0 #E1E1E1;
}

.dgwt-wcas-details-left .dgwt-wcas-details-wrapp {
  position: fixed !important;
  width: 50%;
  height: 100vh !important;
  border: none !important;
  border-radius: none !important;
  top: 156px !important;
  right: 0 !important;
  left: auto !important;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-inner {
  height: 100%;
  position: relative;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details {
  height: 100%;
  width: 100%;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details a {
  height: 100%;
  display: block;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details a .dgwt-wcas-details-main-image {
  width: 100%;
  height: 100%;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-inner .dgwt-wcas-product-details a .dgwt-wcas-details-main-image img {
  object-fit: cover;
  max-width: 100% !important;
  max-height: 100% !important;
  height: 100%;
  width: 100%;
  border-radius: none;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space {
  padding: 0;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc {
  position: absolute;
  bottom: 145px;
  width: 100%;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline {
  width: 100%;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  border-radius: 0 !important;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a:hover, .dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .dgwt-wcas-details-left .dgwt-wcas-details-wrapp .dgwt-wcas-details-space .dgwt-wcas-pd-addtc.js-dgwt-wcas-pd-addtc .product.woocommerce.add_to_cart_inline a {
    padding: 0.8rem 6rem;
  }
}
.dgwt-wcas-details-left .dgwt-wcas-details-wrapp .fibo-search__item--close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 1;
  height: 40px !important;
  width: 40px;
}

.dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

a.dgwt-wcas-details-post-title,
a.dgwt-wcas-details-product-title,
.dgwt-wcas-pd-price,
.dgwt-wcas-details-hr,
.dgwt-wcas-stock.in-stock,
.dgwt-wcas-pd-addtc .dgwt-wcas-pd-addtc-form .quantity {
  display: none !important;
}

@media (max-width: 991px) {
  .dgwt-wcas-search-wrapp {
    min-width: 100% !important;
  }
  .dgwt-wcas-no-submit .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    padding: 10px 15px 10px 0px;
    background-color: #F2F2F2;
    text-indent: 2rem;
    border-width: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    outline: none;
    position: relative;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    color: #2C3042;
  }
}
.dgwt-wcas-overlay-mobile-on.dgwt-wcas-is-ios .dgwt-wcas-suggestions-wrapp {
  height: calc(100% - 45px) !important;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion {
  display: block !important;
  padding: 1rem;
  border-bottom: 1px solid #E1E1E1;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st {
  margin-bottom: 10px;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-st-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-st-title strong {
  font-weight: 300;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp {
  align-items: flex-start;
  padding-left: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp del, .dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp ins {
  display: none;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices {
  display: flex;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices span {
  margin-right: 7px;
  color: #2C3042;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--saving {
  order: 3;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular {
  order: 2;
  text-decoration: line-through;
  color: #929292;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular .amount {
  color: #929292;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--regular .amount .woocommerce-Price-currencySymbol {
  color: #929292;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion .dgwt-wcas-meta .dgwt-wcas-sp .product--prices .product--prices__price--percentage {
  order: 1;
  margin-right: 14px;
}
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion.dgwt-wcas-suggestion-more {
  position: static;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #F2F2F2;
  border-bottom: none;
  box-shadow: none;
}

.filter-panel {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-panel:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-panel.open {
  right: 0;
}
@media (min-width: 992px) {
  .filter-panel {
    width: 585px;
  }
}
.filter-panel__close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.filter-panel__close img {
  width: 25px;
  height: 25px;
}
@media (min-width: 992px) {
  .filter-panel__close {
    padding-top: 2.5rem;
    padding-right: 3.2rem;
    padding-bottom: 0;
  }
}
.filter-panel .wcpf-filter {
  padding: 6rem 1rem 2.5rem 1rem;
  height: 100%;
}
@media (min-width: 992px) {
  .filter-panel .wcpf-filter {
    padding: 6rem 3.3rem 2.5rem 3.2rem;
  }
}
.filter-panel .wcpf-filter .wcpf-filter-inner {
  height: 100%;
  position: relative;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-heading-label .text {
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  text-transform: initial;
  font-weight: 300;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list {
  margin-bottom: 3.5rem;
}
@media (min-width: 576px) {
  .filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list {
    columns: 2 auto;
    margin-bottom: 2.5rem;
  }
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list .wcpf-checkbox-item .wcpf-checkbox-item-inner .wcpf-checkbox-label .wcpf-input-container {
  background-color: #E1E1E1;
  border: none;
  border-radius: 0;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list .wcpf-checkbox-item .wcpf-checkbox-item-inner .wcpf-checkbox-label .wcpf-input-container::after {
  top: 0;
  left: 3px;
  height: 7px;
  width: 12px;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list .wcpf-checkbox-item .wcpf-checkbox-item-inner .wcpf-checkbox-label .wcpf-title-container .wcpf-title, .filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list .wcpf-checkbox-item .wcpf-checkbox-item-inner .wcpf-checkbox-label .wcpf-title-container .wcpf-product-counts {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-checkbox-list .wcpf-checkbox-item .wcpf-checkbox-item-inner .wcpf-checkbox-label .wcpf-title-container .wcpf-product-counts {
  display: none;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderInput.ui-slider {
  background-color: #2C3042;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderInput.ui-slider.ui-slider-horizontal {
  height: 2px;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderInput.ui-slider .ui-slider-handle {
  top: -0.5em;
  border: none;
  background-color: #2C3042;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderAmount .wcpf-price-slider-min-max-inputs input {
  border: none;
  background-color: #E1E1E1;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
  padding: 0.3rem 0.5rem;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderAmount .wcpf-price-slider-min-max-inputs input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .priceSliderAmount .priceLabel {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #2C3042;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-color-list .wcpf-color-item {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-color-list .wcpf-color-item:hover {
  transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-item .wcpf-inner .wcpf-color-list .wcpf-color-item:hover {
  transform: scale(1.1);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button {
  width: 100%;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
  margin-top: 3rem;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button:hover, .filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .filter-panel .wcpf-filter .wcpf-filter-inner .wcpf-field-button .wcpf-button {
    padding: 0.8rem 6rem;
  }
}
.filter-panel hr {
  display: none;
}

.header-taxonomy {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .header-taxonomy {
    height: 750px;
  }
}
.header-taxonomy__image {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.header-taxonomy__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.header-taxonomy__text {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .header-taxonomy__text {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header-taxonomy__text {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .header-taxonomy__text {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .header-taxonomy__text {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .header-taxonomy__text {
    max-width: 1568px;
  }
}
.header-taxonomy__text__title {
  max-width: 768px;
  padding-bottom: 79px;
}
.header-taxonomy__text__link {
  display: block;
  max-width: 768px;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.header-taxonomy__text__link:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header-taxonomy__text__link p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.header-taxonomy__text__link:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.header-taxonomy__text__link:hover, .header-taxonomy__text__link:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.header-taxonomy__text__link:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .header-taxonomy__text__link {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .header-taxonomy__text__link {
    width: auto;
  }
}

.sync-content {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 200px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .sync-content {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .sync-content {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .sync-content {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .sync-content {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .sync-content {
    max-width: 1568px;
  }
}
@media (min-width: 768px) {
  .sync-content {
    margin-top: 275px;
    margin-bottom: 50px;
  }
}
.sync-content__header {
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .sync-content__header {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.sync-content__form ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.sync-content__form ul li label {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-left: 0.5rem;
}
.sync-content__form ul li .sync-ref {
  border: none;
  background-color: #E1E1E1;
  color: black;
}
.sync-content__form ul li .sync-submit {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.sync-content__form ul li .sync-submit:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sync-content__form ul li .sync-submit p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.sync-content__form ul li .sync-submit:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.sync-content__form ul li .sync-submit:hover, .sync-content__form ul li .sync-submit:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.sync-content__form ul li .sync-submit:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .sync-content__form ul li .sync-submit {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .sync-content__form ul li .sync-submit {
    padding: 0.5rem 2rem;
  }
}
.sync-content__progress {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.sync-content__progress label {
  margin-right: 0.5rem;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-size: 1.2rem;
}
.sync-content .log-title {
  margin-bottom: 0.5rem;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-size: 1.2rem;
}
.sync-content #log li {
  margin-bottom: 0.5rem;
  color: #CD0505;
}

.mdm-banner {
  background-color: #FFFFFF;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .mdm-banner {
    margin-bottom: 160px;
  }
}
.mdm-banner .mdm-banner__wrapper {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .mdm-banner .mdm-banner__wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .mdm-banner .mdm-banner__wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .mdm-banner .mdm-banner__wrapper {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .mdm-banner .mdm-banner__wrapper {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .mdm-banner .mdm-banner__wrapper {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .mdm-banner .mdm-banner__wrapper {
    display: flex;
  }
}
.mdm-banner__section {
  width: 100%;
}
@media (min-width: 992px) {
  .mdm-banner__section {
    width: 50%;
  }
}
.mdm-banner__section__block {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .mdm-banner__section__block {
    flex-direction: row;
    justify-content: space-between;
    height: 400px;
  }
}
.mdm-banner__section__block__img {
  width: 100%;
  height: 300px;
}
@media (min-width: 992px) {
  .mdm-banner__section__block__img {
    width: 48%;
    height: 100%;
  }
}
.mdm-banner__section__block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mdm-banner__section__block__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem;
  height: 100%;
}
@media (min-width: 992px) {
  .mdm-banner__section__block__text {
    width: 48%;
  }
}
.mdm-banner__section__block__text h3 {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .mdm-banner__section__block__text h3 {
    text-align: left;
  }
}
.mdm-banner__section__block__text p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 992px) {
  .mdm-banner__section__block__text p {
    text-align: left;
  }
}
.mdm-banner__section__block__text a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 1rem !important;
}
.mdm-banner__section__block__text a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-banner__section__block__text a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.mdm-banner__section__block__text a:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.mdm-banner__section__block__text a:hover, .mdm-banner__section__block__text a:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.mdm-banner__section__block__text a:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .mdm-banner__section__block__text a {
    padding: 0.8rem 6rem;
  }
}
.mdm-banner__section__block:last-child {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .mdm-banner__section__block:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text {
  order: 2;
}
@media (min-width: 992px) {
  .mdm-banner__section__block:last-child .mdm-banner__section__block__text {
    order: initial;
  }
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 1rem !important;
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a:hover, .mdm-banner__section__block:last-child .mdm-banner__section__block__text a:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.mdm-banner__section__block:last-child .mdm-banner__section__block__text a:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .mdm-banner__section__block:last-child .mdm-banner__section__block__text a {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .mdm-banner__section:first-child {
    margin-right: 10px;
  }
}
@media (min-width: 992px) {
  .mdm-banner__section:last-child {
    margin-left: 10px;
  }
}
.mdm-banner__section.banner-video {
  position: relative;
  display: block;
}
.mdm-banner__section.banner-video .mdm-banner__section__block__image {
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .mdm-banner__section.banner-video .mdm-banner__section__block__image {
    height: 800px;
  }
}
@media (min-width: 992px) {
  .mdm-banner__section.banner-video:hover > .mdm-banner__section__video-play {
    opacity: 0.5;
  }
}
.mdm-banner__section.banner-video .mdm-banner__section__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(250, 250, 250, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-banner__section.banner-video .mdm-banner__section__video-play:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-banner__section.banner-video .mdm-banner__section__video-play img {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.mdm-categories-cascade {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .mdm-categories-cascade {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .mdm-categories-cascade {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .mdm-categories-cascade {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .mdm-categories-cascade {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .mdm-categories-cascade {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .mdm-categories-cascade {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.mdm-categories-cascade .categories-cascade__section {
  width: 100%;
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section:first-child {
    width: 57%;
  }
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section:last-child {
    width: 34%;
  }
}
.mdm-categories-cascade .categories-cascade__section .swiper {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section .swiper {
    margin-bottom: 0;
  }
}
.mdm-categories-cascade .categories-cascade__section .swiper .swiper-wrapper .swiper-slide {
  position: relative;
}
.mdm-categories-cascade .categories-cascade__section .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mdm-categories-cascade .categories-cascade__section .swiper .swiper-pagination {
  bottom: 50px;
  z-index: 2;
}
.mdm-categories-cascade .categories-cascade__section .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  color: transparent;
}
.mdm-categories-cascade .categories-cascade__section .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #2C3042;
}
.mdm-categories-cascade .categories-cascade__section__title {
  margin-bottom: 35px;
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section__title {
    margin-bottom: 35px;
  }
}
.mdm-categories-cascade .categories-cascade__section__paragraph {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section__paragraph {
    margin-bottom: 60px;
  }
}
.mdm-categories-cascade .categories-cascade__section__list {
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section__list {
    columns: 2;
    margin-bottom: 100px;
    text-align: initial;
  }
}
.mdm-categories-cascade .categories-cascade__section__list__item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 12px;
}
.mdm-categories-cascade .categories-cascade__section__list__item a {
  color: #2C3042;
}
@media (min-width: 992px) {
  .mdm-categories-cascade .categories-cascade__section__list__item {
    margin-bottom: 20px;
  }
  .mdm-categories-cascade .categories-cascade__section__list__item a:hover {
    opacity: 0.5;
  }
}
.mdm-categories-cascade .categories-cascade__section__btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.mdm-categories-cascade .categories-cascade__section__btn:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-categories-cascade .categories-cascade__section__btn p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.mdm-categories-cascade .categories-cascade__section__btn:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.mdm-categories-cascade .categories-cascade__section__btn:hover, .mdm-categories-cascade .categories-cascade__section__btn:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.mdm-categories-cascade .categories-cascade__section__btn:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .mdm-categories-cascade .categories-cascade__section__btn {
    padding: 0.8rem 6rem;
  }
}

.pop-up-banner-top {
  height: auto;
  position: fixed;
  right: 2rem;
  top: 60vh;
  width: 225px;
  background: url("../../images/homepage--banner-categoria--05.jpg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  z-index: 8;
  -webkit-box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  display: none;
}
.pop-up-banner-top.open {
  display: block;
}
@media (min-width: 992px) {
  .pop-up-banner-top {
    top: 70vh;
    width: 250px;
  }
}
.pop-up-banner-top img {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 22px;
  top: 20px;
  cursor: pointer;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pop-up-banner-top img:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pop-up-banner-top img:hover {
  opacity: 0.5;
}
.pop-up-banner-top__text {
  padding: 60px 40px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(248, 248, 242, 0.8);
}
.pop-up-banner-top__text p {
  margin-bottom: 30px;
  text-align: center;
}
.pop-up-banner-top__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #2C3042;
}
.pop-up-banner-top__text a:hover {
  opacity: 0.5;
}

.mdm-megamenu {
  display: none;
  position: fixed;
  top: 0;
  padding: 5rem 1rem 2rem 1rem;
  width: 100%;
  min-height: 100vh;
  background-color: #F8F8F2;
  z-index: 6;
  transform: translateX(-100%);
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mdm-megamenu:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 992px) {
  .mdm-megamenu {
    pointer-events: initial;
    width: 50vw;
  }
}
.mdm-megamenu.open {
  transform: translateX(0);
}
.mdm-megamenu__close {
  display: none;
}
@media (min-width: 992px) {
  .mdm-megamenu__container {
    padding: 150px;
  }
}
.mdm-megamenu__container #accordion {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .mdm-megamenu__container #accordion {
    margin-bottom: 0;
  }
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item {
  margin-bottom: 18px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item:first-child {
  margin-bottom: 9px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__title {
  padding-bottom: 18px;
  cursor: pointer;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__title:first-child {
  margin-bottom: 9px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3 {
  display: inline-block;
  color: #2C3042;
  position: relative;
}
@media (min-width: 992px) {
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3:hover::after {
    width: 100%;
  }
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3 button {
  position: relative;
  background-color: transparent !important;
  text-align: left;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3 button:focus, .mdm-megamenu__container #accordion .mdm-megamenu__container__item__title h3 button:focus-visible {
  outline: none;
}
.mdm-megamenu__container #accordion a.mdm-megamenu__container__item h3::after {
  bottom: -6px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu {
  padding-bottom: 26px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu ul li {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 12px;
}
.mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu ul li a {
  color: #2C3042;
}
@media (min-width: 992px) {
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu ul li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu ul li a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container #accordion .mdm-megamenu__container__item__submenu ul li a:hover::after {
    width: 100%;
  }
}
.mdm-megamenu__container .megamenu__left__wrapper__pages {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .mdm-megamenu__container .megamenu__left__wrapper__pages {
    margin-bottom: 0;
  }
}
.mdm-megamenu__container .megamenu__left__wrapper__pages li a {
  color: #2C3042;
}
@media (min-width: 992px) {
  .mdm-megamenu__container .megamenu__left__wrapper__pages li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    background-color: #4D4D4D;
    transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container .megamenu__left__wrapper__pages li a::after:hover {
    transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mdm-megamenu__container .megamenu__left__wrapper__pages li a:hover::after {
    width: 100%;
  }
}
.mdm-megamenu__container .mdm-megamenu__container__bottom {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .mdm-megamenu__container .mdm-megamenu__container__bottom .megamenu__left__wrapper__payement {
    position: relative;
    bottom: 0;
  }
}
.mdm-megamenu__container .mdm-megamenu__container__bottom .language-switcher {
  width: 100%;
  display: none;
}
.mdm-megamenu__container .mdm-megamenu__container__bottom .language-switcher a {
  color: #2C3042;
}
.mdm-megamenu__container .mdm-megamenu__container__bottom .language-switcher a:hover {
  opacity: 0.5;
}
@media (max-width: 1023px) {
  .mdm-megamenu__container .mdm-megamenu__container__bottom .language-switcher {
    position: static;
    margin-top: 1rem;
    display: block;
  }
}

.site-mdm .mdm-megamenu {
  display: block;
  overflow-y: scroll;
  height: 100vh;
  overflow-x: hidden;
}
.site-mdm .mdm-megamenu::-webkit-scrollbar-track {
  border: 1px solid transparent;
  background-color: #F8F8F2;
}
.site-mdm .mdm-megamenu::-webkit-scrollbar {
  width: 10px;
  background-color: #F8F8F2;
}
.site-mdm .mdm-megamenu::-webkit-scrollbar-thumb {
  background-color: #222;
}

.go-top {
  display: block !important;
  border-radius: 50%;
  background-color: #2C3042;
  width: 50px !important;
  height: 50px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 85vh;
  right: 16px;
  z-index: 6;
}
.go-top:hover {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .go-top {
    width: 65px !important;
    height: 65px;
    padding: 18px;
    right: 30px;
    top: 80vh;
  }
}
.go-top img {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
  filter: invert(1);
}

.woocommerce-error {
  border-top-color: transparent;
  background-color: transparent;
  border-bottom: 1px solid #CD0505;
}
.woocommerce-error::before {
  color: #CD0505;
}

.woocommerce-info {
  border-top-color: transparent;
  background-color: transparent;
  border-bottom: 1px solid #D39A08;
}
.woocommerce-info::before {
  color: #D39A08;
}

.woocommerce-message {
  border-top-color: transparent;
  background-color: transparent;
  border-bottom: 1px solid #07B68C;
}
.woocommerce-message::before {
  color: #07B68C;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-left: 2rem;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    max-width: 1568px;
  }
}
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  left: 0;
}
@media (min-width: 992px) {
  .woocommerce-message,
  .woocommerce-error,
  .woocommerce-info {
    padding-left: 2rem;
    margin: auto;
    margin-bottom: 2rem;
  }
}

.woocommerce-notices-wrapper .backward-container {
  text-align: center;
  margin-top: 4rem;
}

.wc-backward,
.button.wc-backward {
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  text-decoration: none !important;
  border: 1px solid #2C3042 !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
}
.wc-backward:hover,
.button.wc-backward:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.wc-backward:hover, .wc-backward:active,
.button.wc-backward:hover,
.button.wc-backward:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.wc-backward:focus,
.button.wc-backward:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}

.wc-forward {
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  text-decoration: none !important;
  border: 1px solid #2C3042 !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
}
.wc-forward:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.wc-forward:hover, .wc-forward:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.wc-forward:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}

.woocommerce-invalid #terms {
  outline: none;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #CD0505;
}

.woocommerce .star-rating span::before {
  content: "" !important;
}

.cart-header .page-header__line {
  background-color: none;
  height: 0;
}

.cart.woocommerce-cart-form__contents {
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto !important;
  border-left: none !important;
  border-right: none !important;
  margin-bottom: 120px !important;
  border-bottom: none !important;
}
@media (min-width: 992px) {
  .cart.woocommerce-cart-form__contents {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cart.woocommerce-cart-form__contents {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .cart.woocommerce-cart-form__contents {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .cart.woocommerce-cart-form__contents {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .cart.woocommerce-cart-form__contents {
    max-width: 1568px;
  }
}
.cart.woocommerce-cart-form__contents tr .last-row {
  padding-top: 40px;
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon #coupon_code {
  border: none;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 1rem;
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  background-color: transparent;
}
@media (min-width: 768px) {
  .cart.woocommerce-cart-form__contents tr .last-row .coupon #coupon_code {
    min-width: 150px;
  }
}
@media (min-width: 992px) {
  .cart.woocommerce-cart-form__contents tr .last-row .coupon #coupon_code {
    min-width: 300px;
  }
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button {
  font-weight: 300;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 1rem 1rem;
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button:hover, .cart.woocommerce-cart-form__contents tr .last-row .coupon button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.cart.woocommerce-cart-form__contents tr .last-row .coupon button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .cart.woocommerce-cart-form__contents tr .last-row .coupon button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 768px) {
  .cart.woocommerce-cart-form__contents tr .last-row .coupon button {
    width: auto;
    padding: 1rem 2rem !important;
  }
}
.cart.woocommerce-cart-form__contents tr .last-row .update {
  font-weight: 300;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.cart.woocommerce-cart-form__contents tr .last-row .update:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart.woocommerce-cart-form__contents tr .last-row .update p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart.woocommerce-cart-form__contents tr .last-row .update:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.cart.woocommerce-cart-form__contents tr .last-row .update:hover, .cart.woocommerce-cart-form__contents tr .last-row .update:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.cart.woocommerce-cart-form__contents tr .last-row .update:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .cart.woocommerce-cart-form__contents tr .last-row .update {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .cart.woocommerce-cart-form__contents tr .last-row .update {
    width: auto;
  }
}

.cart.woocommerce-cart-form__contents thead tr th {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300;
}

.product-name,
.product-price,
.product-quantity,
.product-subtotal {
  vertical-align: top !important;
}

td.product-total small.tax_label, td.product-total small.includes_tax,
tr.cart-subtotal small.tax_label,
tr.cart-subtotal small.includes_tax,
tr.order-total small.tax_label,
tr.order-total small.includes_tax {
  display: none;
}

td.product-subtotal {
  position: relative;
}
td.product-subtotal small.tax_label {
  display: none;
}
td.product-subtotal::after {
  content: "Impuestos incluídos";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: none;
}
@media (min-width: 768px) {
  td.product-subtotal::after {
    right: initial;
    left: 12px;
    bottom: initial;
    top: 3.5rem;
  }
}
td.product-subtotal:lang(en-GB)::after {
  content: "Taxes included";
}

@media (max-width: 991px) {
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    margin-bottom: 2rem;
    border-bottom: 1px solid #929292;
  }
  .woocommerce-cart table.cart .product-thumbnail {
    display: block;
    text-align: left !important;
  }
  .woocommerce-cart table.cart .product-thumbnail::before {
    content: "";
  }
}
.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent;
}

.cart_item td {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.cart_item td span, .cart_item td a,
.cart_item td input {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
}
.cart_item td dl.variation {
  padding-top: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cart_item td dl.variation .variation-Color, .cart_item td dl.variation .variation-Color p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
}
.cart_item td dl.variation dd {
  float: right;
}
.cart_item td input {
  border: none;
  background-color: #ECECEB;
}
.cart_item td input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.cart_item td.product-remove a {
  position: relative;
  color: #F2F2F2 !important;
}
.cart_item td.product-remove a:hover {
  opacity: 0.5;
  background-color: transparent;
}
.cart_item td.product-remove a:before {
  content: "";
  background-image: url("../../images/icon--delete.svg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 20px;
  height: 20px;
  position: absolute;
  display: inline-block;
}

.woocommerce-cart table.cart img {
  width: 130px;
}

.cart-collaterals {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .cart-collaterals {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cart-collaterals {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .cart-collaterals {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .cart-collaterals {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .cart-collaterals {
    max-width: 1568px;
  }
}
.cart-collaterals h2 {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 40px;
}
.cart-collaterals .shop_table {
  border: none !important;
}
.cart-collaterals .shop_table tbody .cart-subtotal th {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  font-weight: 300;
}
.cart-collaterals .shop_table tbody .cart-subtotal th span {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  font-weight: 300;
}
.cart-collaterals .shop_table tbody .shipping th {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart-collaterals .shop_table tbody .shipping td form {
  margin-bottom: 5px;
}
.cart-collaterals .shop_table tbody .shipping td form .shipping-calculator-button {
  color: #2666CF;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 5px;
}
.cart-collaterals .shop_table tbody .shipping td form .shipping-calculator-button::after {
  content: "";
}
.cart-collaterals .shop_table tbody .shipping td form .validate-required.address-field .select2-selection, .cart-collaterals .shop_table tbody .shipping td form .validate-required.address-field .select2-selection__rendered {
  text-align: left;
}
.cart-collaterals .shop_table tbody .shipping td form .validate-required.address-field span {
  width: 100%;
}
.cart-collaterals .shop_table tbody .shipping td form .validate-required.address-field span b {
  left: auto;
  right: 5px;
}
.cart-collaterals .shop_table tbody .shipping td form input {
  padding-bottom: 0 !important;
  height: 2.5rem !important;
  border-bottom: none !important;
  width: 100%;
  background-color: #f5f5f5 !important;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart-collaterals .shop_table tbody .shipping td form input::placeholder {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart-collaterals .shop_table tbody .shipping td form button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.cart-collaterals .shop_table tbody .shipping td form button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart-collaterals .shop_table tbody .shipping td form button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.cart-collaterals .shop_table tbody .shipping td form button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.cart-collaterals .shop_table tbody .shipping td form button:hover, .cart-collaterals .shop_table tbody .shipping td form button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.cart-collaterals .shop_table tbody .shipping td form button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .cart-collaterals .shop_table tbody .shipping td form button {
    padding: 0.8rem 6rem;
  }
}
.cart-collaterals .shop_table tbody .order-total th {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  font-weight: 300;
  padding-top: 20px;
}
.cart-collaterals .shop_table tbody .order-total td[data-title~=Total] {
  padding-top: 20px !important;
  position: relative;
}
.cart-collaterals .shop_table tbody .order-total td[data-title~=Total]::after {
  content: "Impuestos incluídos";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 12px;
  bottom: -10px;
  display: none;
}
@media (min-width: 768px) {
  .cart-collaterals .shop_table tbody .order-total td[data-title~=Total]::after {
    right: initial;
    left: 12px;
    bottom: -5px;
  }
}
.cart-collaterals .shop_table tbody .order-total td[data-title~=Total]:lang(en-GB)::after {
  content: "Taxes included";
}
.cart-collaterals .shop_table tbody .order-total td[data-title~=Total] span {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  font-weight: 300;
  display: inline-block;
}
.cart-collaterals .shop_table tbody .order-total td[data-title~=Total] small.includes_tax {
  display: none;
}
.cart-collaterals .checkout-button {
  width: 100%;
  display: inline-block !important;
  text-decoration: none !important;
  padding: 1rem 2rem !important;
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  border: 1px solid #F2F2F2 !important;
  position: relative !important;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 300 !important;
  text-align: center;
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.cart-collaterals .checkout-button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart-collaterals .checkout-button:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.cart-collaterals .checkout-button:hover, .cart-collaterals .checkout-button:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.cart-collaterals .checkout-button:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}

.return-to-shop {
  text-align: center;
  margin-top: 4rem;
}
.return-to-shop a {
  background-color: #2C3042 !important;
  color: #F2F2F2 !important;
  text-decoration: none !important;
  border: 1px solid #2C3042 !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
}
.return-to-shop a:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.return-to-shop a:hover, .return-to-shop a:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.return-to-shop a:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  background-color: transparent;
  border: none;
}
.woocommerce form .form-row input.input-text:hover, .woocommerce form .form-row textarea:hover {
  background-color: #ECECEB !important;
}

.select2-dropdown {
  border: none !important;
  background-color: #f5f5f5 !important;
}

.select2-results__option {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}

.select2-container--default .select2-selection--single:hover {
  background-color: #ECECEB !important;
}

.select2-results__option--highlighted[data-selected] {
  background-color: #4D4D4D !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  height: 2.5rem;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: unset;
  padding-left: 0;
  color: #2C3042;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px;
}

.woocommerce form .form-row input.input-text:hover {
  background-color: #ECECEB !important;
}

.form-row {
  display: block;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 1.5rem !important;
}
@media (min-width: 992px) {
  .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.form-row label {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.2 !important;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .form-row label {
    min-width: 30% !important;
    margin-right: 1rem !important;
  }
}
.form-row .required {
  color: #2C3042 !important;
  font-weight: 300 !important;
  display: inline !important;
}

.woocommerce-page form .show-password-input::after {
  content: "";
  background-image: url("../../images/icon-watch-password.svg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  height: 20px !important;
  width: 20px !important;
  font-family: none !important;
  display: block;
  position: absolute;
  margin-left: -1rem;
  top: -4px;
}
@media (min-width: 992px) {
  .woocommerce-page form .show-password-input::after {
    top: -7px;
  }
}

input[type=checkbox] {
  margin-right: 5px;
  background-color: #242424;
  width: auto;
  position: relative;
}
input[type=checkbox]::before {
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 2px solid #E1E1E1;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: rem(-2);
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #E1E1E1;
  cursor: pointer;
}
input[type=checkbox]:checked:before {
  transform: rotate(-45deg);
  height: 0.5rem;
  border-color: #243846;
  border-top-style: none;
  border-right-style: none;
}

.woocommerce-password-strength {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300 !important;
  text-align: left;
  padding-left: 0;
}
.woocommerce-password-strength.short {
  background-color: transparent;
  border-color: transparent;
  color: #CD0505;
}
.woocommerce-password-strength.bad {
  background-color: transparent;
  border-color: transparent;
  color: #fbc5a9;
}
.woocommerce-password-strength.good {
  background-color: transparent;
  border-color: transparent;
  color: #D39A08;
}
.woocommerce-password-strength.strong {
  background-color: transparent;
  border-color: transparent;
  color: #07B68C;
}

.woocommerce-password-hint {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300 !important;
  text-align: left;
}

.woocommerce select {
  display: inline-block;
  position: relative;
}

.woocommerce select:after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: inline-block;
  content: "v";
  margin-top: -0.15rem;
  pointer-events: none;
  border-top: 0.35rem solid;
  border-right: 0.35rem solid transparent;
  border-bottom: 0.35rem solid transparent;
  border-left: 0.35rem solid transparent;
  background-color: red;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  padding-left: 0 !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    margin-bottom: 2rem !important;
  }
}
.woocommerce-form-coupon-toggle .woocommerce-info::before {
  content: "";
}
.woocommerce-form-coupon-toggle .woocommerce-info::after {
  content: "";
  background-image: url("../../images/icon--arrow.svg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 15px;
  height: 15px;
  display: inline-block;
  transform: rotate(90deg);
  position: absolute;
  left: 140px;
  top: 20px;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  opacity: 0;
}
.woocommerce-form-coupon-toggle .woocommerce-info.showcoupon {
  position: relative;
}
.woocommerce-form-coupon-toggle .woocommerce-info.showcoupon::after {
  transform: rotate(270deg);
}

.checkout_coupon {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0 !important;
  border: none !important;
}
@media (min-width: 992px) {
  .checkout_coupon {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .checkout_coupon {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .checkout_coupon {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .checkout_coupon {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .checkout_coupon {
    max-width: 1568px;
  }
}
.checkout_coupon p:first-child {
  display: none;
}
.checkout_coupon .form-row input.input-text {
  padding-bottom: 1rem !important;
  border-bottom: 1px solid #4D4D4D !important;
}
.checkout_coupon .form-row input.input-text:hover:hover {
  background-color: transparent !important;
}
.checkout_coupon .form-row button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
}
.checkout_coupon .form-row button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.checkout_coupon .form-row button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.checkout_coupon .form-row button:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.checkout_coupon .form-row button:hover, .checkout_coupon .form-row button:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.checkout_coupon .form-row button:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .checkout_coupon .form-row button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .checkout_coupon .form-row button {
    width: auto;
  }
}
@media (min-width: 992px) {
  .checkout_coupon {
    margin: auto !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
  }
  .checkout_coupon .form-row {
    width: 23.5% !important;
    display: inline-block !important;
    float: none !important;
  }
  .checkout_coupon .form-row button {
    padding: 1rem 2rem;
  }
}

.checkout {
  padding-left: 1rem;
  padding-right: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .checkout {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .checkout {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .checkout {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .checkout {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .checkout {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .checkout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .checkout .woocommerce-NoticeGroup {
    flex: 0 0 100%;
  }
}
.checkout h3 {
  margin-bottom: 2rem;
  /*font-family: $typeface--satoshi--regular;*/
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 2rem);
}
.checkout .form-row {
  display: block;
  width: 100% !important;
  float: none !important;
}
@media (min-width: 992px) {
  .checkout .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.checkout__section {
  width: 100%;
  max-width: 100% !important;
}
.checkout__section:first-child {
  margin-bottom: 4rem;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
@media (min-width: 992px) {
  .checkout__section {
    flex: 0 0 45% !important;
    max-width: 45% !important;
  }
  .checkout__section:first-child {
    margin-bottom: 0;
  }
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields {
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .woocommerce-account-fields .create-account {
    justify-content: flex-start;
  }
}

.woocommerce-billing-fields {
  padding-bottom: 50px;
}
.woocommerce-billing-fields h3 {
  display: none;
}
.woocommerce-billing-fields #billing_factura_cualificada_field {
  padding-top: 1rem !important;
}
.woocommerce-billing-fields #billing_factura_cualificada_field label {
  margin-bottom: 0;
}
.woocommerce-billing-fields #billing_factura_cualificada {
  height: auto !important;
  width: auto;
}

.mailchimp-newsletter.form-row {
  justify-content: flex-start;
}
.mailchimp-newsletter.form-row::before {
  display: none !important;
}
.mailchimp-newsletter.form-row label {
  margin-left: 5px;
  margin-bottom: 0;
}

.woocommerce-shipping-fields {
  margin-top: 30px;
  margin-bottom: 30px;
}
.woocommerce-shipping-fields h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-shipping-fields .shipping_address {
  margin-bottom: 50px;
}

.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-shipping-fields__field-wrapper .form-row {
  margin-bottom: 1.5rem !important;
}
.woocommerce-billing-fields__field-wrapper .form-row::before,
.woocommerce-shipping-fields__field-wrapper .form-row::before {
  content: none;
}
.woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
.woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  flex: 1;
}
.woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper input,
.woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper input {
  padding-bottom: 0 !important;
  height: 2.5rem !important;
  border-bottom: none !important;
  width: 100%;
  background-color: #f5f5f5 !important;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper input::placeholder,
.woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper input::placeholder {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single {
  border: none;
  background-color: #f5f5f5;
  border-radius: none;
  margin-bottom: 1.5rem;
  height: 2.5rem !important;
  display: flex;
  align-items: center;
  padding-left: 0.75rem !important;
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single:hover {
  background-color: #ECECEB !important;
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #929292 !important;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

@media (min-width: 992px) {
  .woocommerce-additional-fields {
    display: flex;
  }
}
.woocommerce-additional-fields h3 {
  min-width: 30% !important;
  margin-right: 1rem !important;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
}
.woocommerce-additional-fields__field-wrapper {
  flex: 1;
}
.woocommerce-additional-fields__field-wrapper #order_comments_field {
  flex-wrap: wrap;
}
.woocommerce-additional-fields__field-wrapper #order_comments_field label {
  width: 100%;
  display: block;
}
.woocommerce-additional-fields__field-wrapper #order_comments_field .woocommerce-input-wrapper {
  flex: 1;
}
.woocommerce-additional-fields__field-wrapper #order_comments_field .woocommerce-input-wrapper textarea {
  border: none !important;
  background-color: #f5f5f5;
  padding: 1rem;
  height: 150px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-additional-fields__field-wrapper #order_comments_field .woocommerce-input-wrapper textarea::placeholder {
  color: #929292;
}

#order_review {
  background-color: #f5f5f5;
  padding: 1rem;
  height: max-content;
}
@media (min-width: 992px) {
  #order_review {
    padding: 2rem;
    position: sticky;
    top: 6rem;
  }
}
#order_review .shop_table {
  border: none !important;
}
#order_review .shop_table thead th {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
  font-weight: 300;
}
#order_review .shop_table .cart_item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
#order_review .shop_table .cart_item .product-name strong {
  vertical-align: middle !important;
}
#order_review .shop_table .cart_item .product-name .variation {
  display: block;
  padding-top: 0;
}
#order_review .shop_table .cart_item .product-name .variation-container {
  margin-top: 0.5rem;
}
#order_review .shop_table .cart_item .product-name .variation dt, #order_review .shop_table .cart_item .product-name .variation dd {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
}
#order_review .shop_table .cart_item .product-name .variation dt p, #order_review .shop_table .cart_item .product-name .variation dd p {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: inherit;
}
#order_review .shop_table .cart_item .product-total span {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
#order_review .shop_table tfoot tr th, #order_review .shop_table tfoot tr td {
  border-top: none;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  font-weight: 300;
}
#order_review .shop_table tfoot .order-total th, #order_review .shop_table tfoot .order-total td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  padding-bottom: 1.2rem;
}
#order_review .shop_table tfoot .order-total td {
  position: relative;
}
#order_review .shop_table tfoot .order-total td::after {
  content: "Impuestos incluídos";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  left: 12px;
  bottom: 0px;
  display: none;
}
#order_review .shop_table tfoot .order-total td:lang(en-GB)::after {
  content: "Taxes included";
}
#order_review .woocommerce-checkout-payment {
  background-color: transparent;
}
#order_review .woocommerce-checkout-payment .place-order {
  display: block;
  margin-top: 30px !important;
}
#order_review .woocommerce-checkout-payment .place-order button {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  font-weight: 300;
}
#order_review .woocommerce-checkout-payment .place-order button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
#order_review .woocommerce-checkout-payment .place-order button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
#order_review .woocommerce-checkout-payment .place-order button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
#order_review .woocommerce-checkout-payment .place-order button:hover, #order_review .woocommerce-checkout-payment .place-order button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
#order_review .woocommerce-checkout-payment .place-order button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  #order_review .woocommerce-checkout-payment .place-order button {
    padding: 0.8rem 6rem;
  }
}
#order_review .woocommerce-checkout-payment input[type=checkbox]::after, #order_review .woocommerce-checkout-payment input[type=checkbox]::before {
  top: -1px;
}
#order_review .woocommerce-checkout-payment span {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
#order_review .woocommerce-checkout-payment a {
  color: #2666CF;
}

.woocommerce-order {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .woocommerce-order {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .woocommerce-order {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .woocommerce-order {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .woocommerce-order {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .woocommerce-order {
    max-width: 1568px;
  }
}
.woocommerce-order .woocommerce-thankyou-order-received {
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
}
.woocommerce-order .woocommerce-thankyou-order-details li {
  border-right: 1px solid #929292 !important;
}
@media (max-width: 1023px) {
  .woocommerce-order .woocommerce-thankyou-order-details li {
    display: block;
    width: 100%;
    border: none !important;
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
}

.myaccount {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .myaccount {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .myaccount {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .myaccount {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .myaccount {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .myaccount {
    max-width: 1568px;
  }
}
@media (min-width: 992px) {
  .myaccount {
    display: flex;
  }
}
.myaccount .woocommerce-MyAccount-navigation {
  width: 45%;
  padding-right: 1rem;
  float: none;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-navigation {
    margin-bottom: 0;
  }
}
.myaccount .woocommerce-MyAccount-navigation ul li {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}
.myaccount .woocommerce-MyAccount-navigation ul li a {
  color: #929292;
}
.myaccount .woocommerce-MyAccount-navigation ul li a:hover {
  color: #2C3042;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 35px;
  }
}
.myaccount .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #2C3042;
}
.myaccount .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}
.myaccount .woocommerce-MyAccount-content a {
  color: #2C3042;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.myaccount .woocommerce-MyAccount-content a:hover {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account {
    width: 80%;
    margin-left: 0;
  }
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row input {
  flex: 1;
  padding-bottom: 0 !important;
  min-height: 2.5rem !important;
  border-bottom: none !important;
  width: 100%;
  background-color: #f5f5f5 !important;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row input::placeholder {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row input:hover {
  background-color: #ECECEB !important;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row em {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
  margin-top: 0.5rem;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row .password-input {
  min-height: 2.5rem !important;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row .password-input input {
  margin-bottom: 0 !important;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row-wide {
  flex-wrap: wrap;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row.form-row-wide span {
  flex: 1;
  flex-basis: 100%;
  text-align: right;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) input {
  margin-bottom: 0 !important;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) span {
  display: inline-block;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) label span {
  width: min-content;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) {
    flex-wrap: wrap;
    display: flex;
  }
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) span {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-form-row:nth-child(4) span em {
    width: 65%;
  }
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset {
  margin-top: 5rem;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset legend {
  border-bottom: 1px solid #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .woocommerce-form-row:nth-child(4) {
    flex-wrap: nowrap;
  }
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .form-row {
  align-items: flex-start;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .form-row-wide {
  flex-wrap: nowrap !important;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account fieldset .form-row-wide span {
  flex: auto;
  flex-basis: auto;
  text-align: initial;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account legend {
  border-bottom: 1px solid #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
  margin-top: 3rem;
  border-radius: 0;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button:hover, .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-content .woocommerce-EditAccountForm.edit-account .woocommerce-Button {
    width: auto;
    margin-top: 5rem;
  }
}
.myaccount p mark {
  background-color: #f5f5f5;
}
.myaccount .woocommerce-MyAccount-orders {
  padding: 1rem;
  background-color: #f5f5f5;
  border: none !important;
}
@media (min-width: 992px) {
  .myaccount .woocommerce-MyAccount-orders {
    padding: 2rem;
  }
}
.myaccount .woocommerce-MyAccount-orders thead tr th {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
}
.myaccount .woocommerce-MyAccount-orders tbody tr td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
}
.myaccount .woocommerce-MyAccount-orders tbody tr td:last-child a {
  background-color: #2C3042;
  color: #F2F2F2;
  text-decoration: none;
  border: 1px solid #2C3042;
  font-weight: 300;
  border-radius: 0;
}
.myaccount .woocommerce-MyAccount-orders tbody tr td:last-child a:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.myaccount .woocommerce-MyAccount-orders tbody tr td:last-child a:hover, .myaccount .woocommerce-MyAccount-orders tbody tr td:last-child a:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.myaccount .woocommerce-MyAccount-orders tbody tr td:last-child a:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}
.myaccount .woocommerce-MyAccount-orders tbody tr:last-child td {
  padding-bottom: 0;
}
.myaccount .woocommerce-order-details {
  margin-top: 2rem;
}

.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address header, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address header {
  position: static !important;
  margin-top: 2rem;
  margin-bottom: 2rem;
  pointer-events: all;
}
@media (min-width: 992px) {
  .woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address header, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address header {
    height: auto;
  }
}
.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address header h3, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address header h3 {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  border-bottom: 1px solid #929292;
  width: 100%;
}
@media (min-width: 992px) {
  .woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address header h3, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address header h3 {
    margin-right: 0;
  }
}
.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address header a, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address header a {
  float: none !important;
}
.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address address, .woocommerce-Addresses.col2-set.addresses .u-column2.col-2.woocommerce-Address address {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.5;
}
.woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .woocommerce-Addresses.col2-set.addresses .u-column1.col-1.woocommerce-Address {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .woocommerce-edit-address form {
    width: 80% !important;
    margin-left: 0 !important;
  }
}
.woocommerce-edit-address form h3 {
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  border-bottom: 1px solid #929292;
}
.woocommerce-edit-address form .woocommerce-address-fields__field-wrapper .form-row::before {
  display: none !important;
}
.woocommerce-edit-address form .woocommerce-address-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  flex: 1;
}
.woocommerce-edit-address form .woocommerce-address-fields__field-wrapper .form-row .woocommerce-input-wrapper input {
  padding-bottom: 0 !important;
  min-height: 2.5rem !important;
  border-bottom: none !important;
  width: 100%;
  background-color: #f5f5f5 !important;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-edit-address form .woocommerce-address-fields__field-wrapper .form-row .woocommerce-input-wrapper input:hover {
  background-color: #ECECEB !important;
}
.woocommerce-edit-address form .woocommerce-address-fields .button {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  margin-top: 3rem;
}
.woocommerce-edit-address form .woocommerce-address-fields .button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-edit-address form .woocommerce-address-fields .button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-edit-address form .woocommerce-address-fields .button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.woocommerce-edit-address form .woocommerce-address-fields .button:hover, .woocommerce-edit-address form .woocommerce-address-fields .button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.woocommerce-edit-address form .woocommerce-address-fields .button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .woocommerce-edit-address form .woocommerce-address-fields .button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .woocommerce-edit-address form .woocommerce-address-fields .button {
    margin-top: 5rem;
  }
}

.register__container__text__button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 5rem !important;
  width: 100%;
  margin-top: 20px;
}
.register__container__text__button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.register__container__text__button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.register__container__text__button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.register__container__text__button:hover, .register__container__text__button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.register__container__text__button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .register__container__text__button {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 991px) {
  .register__container__text__button {
    display: none;
  }
}

.woocommerce-form-register .form-row-wide.mailchimp-newsletter {
  display: none;
}

.single-product .content-area {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
  margin-top: 275px !important;
  margin-bottom: 50px !important;
}
@media (max-width: 1023px) {
  .single-product .content-area {
    margin-top: 5rem !important;
  }
}
.single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .single-product .content-area .woocommerce-breadcrumb, .single-product .content-area .woocommerce-notices-wrapper, .single-product .content-area .single-product__wrapper, .single-product .content-area .wc-tabs-wrapper, .single-product .content-area .product-article, .single-product .content-area .related.products {
    max-width: 1568px;
  }
}
.single-product .content-area .mdm-banner {
  margin-bottom: 0;
}
.single-product .content-area .product .woocommerce-product-rating .woocommerce-review-link {
  color: #2C3042;
}
@media (max-width: 1023px) {
  .single-product .content-area .product .woocommerce-product-rating {
    margin-bottom: 0.5rem;
  }
}
.single-product .content-area .product .single-product__wrapper {
  position: relative;
  margin-bottom: 160px !important;
  min-height: 1076px;
}
@media (max-width: 1023px) {
  .single-product .content-area .product .single-product__wrapper {
    margin-bottom: 40px !important;
    min-height: auto;
  }
}
.single-product .content-area .product .stock {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #07B68C;
  margin-bottom: 0.5rem;
  display: none !important;
}
.single-product .content-area .product .stock.out-of-stock {
  color: #CD0505;
}
.single-product .content-area .product .swiper {
  position: relative;
  margin-bottom: 40px;
  z-index: 0;
}
.single-product .content-area .product .swiper .swiper-pagination {
  text-align: left;
  padding-left: 1rem;
}
.single-product .content-area .product .swiper .swiper-pagination-bullet {
  background: #F2F2F2;
  opacity: 1;
}
.single-product .content-area .product .swiper .swiper-pagination-bullet-active {
  background: #2C3042;
}
@media (min-width: 992px) {
  .single-product .content-area .product .woocommerce-product-gallery {
    display: flex;
    justify-content: space-between;
  }
  .single-product .content-area .product .woocommerce-product-gallery .flex-viewport {
    width: 75%;
    flex: 0 0 75%;
    order: 2;
  }
  .single-product .content-area .product .woocommerce-product-gallery .flex-control-thumbs {
    position: relative;
    width: 25%;
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    order: 1;
    margin-right: 1rem;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .single-product .content-area .product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    display: none;
  }
  .single-product .content-area .product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .single-product .content-area .product .woocommerce-product-gallery .flex-control-thumbs li:first-child {
    display: none;
  }
  .single-product .content-area .product .woocommerce-product-gallery button {
    position: absolute;
    width: 25%;
    height: 25px;
    background-color: #FFFFFF;
  }
  .single-product .content-area .product .woocommerce-product-gallery button::after {
    content: "";
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    width: 25px;
    height: 15px;
    position: absolute;
    top: 4px;
    left: 42%;
  }
  .single-product .content-area .product .woocommerce-product-gallery button:focus, .single-product .content-area .product .woocommerce-product-gallery button:focus-visible {
    outline: none;
  }
  .single-product .content-area .product .woocommerce-product-gallery button.up-button {
    top: 0;
  }
  .single-product .content-area .product .woocommerce-product-gallery button.up-button::after {
    background-image: url("../../images/icon--up--arrow.svg");
  }
  .single-product .content-area .product .woocommerce-product-gallery button.down-button {
    bottom: 0;
  }
  .single-product .content-area .product .woocommerce-product-gallery button.down-button::after {
    background-image: url("../../images/icon--down--arrow.svg");
  }
  .single-product .content-area .product .woocommerce-product-gallery button.disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}
.single-product .content-area .product .summary {
  position: sticky;
  top: 6rem;
  width: 40%;
}
@media (max-width: 991px) {
  .single-product .content-area .product .summary {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .single-product .content-area .product .summary {
    position: static;
    margin-bottom: 80px;
  }
}
.single-product .content-area .product .summary .product_title {
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .single-product .content-area .product .summary .product_title {
    margin-bottom: 40px !important;
  }
}
.single-product .content-area .product .summary .woocommerce-product-rating {
  margin-bottom: 0.5rem;
}
.single-product .content-area .product .summary .woocommerce-product-rating .star-rating {
  color: #2C3042;
  margin-bottom: 0;
}
.single-product .content-area .product .summary .woocommerce-product-rating .star-rating::before {
  color: #2C3042;
}
.single-product .content-area .product .summary .woocommerce-product-details__short-description {
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.single-product .content-area .product .summary .woocommerce-product-details__short-description p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 2rem);
}
@media (max-width: 1023px) {
  .single-product .content-area .product .summary .woocommerce-product-details__short-description {
    margin-bottom: 0.5rem;
  }
}
.single-product .content-area .product .summary .price {
  display: none;
}
.single-product .content-area .product .summary .product--prices {
  display: flex;
  margin-bottom: 30px;
}
.single-product .content-area .product .summary .product--prices span {
  margin-right: 0.3rem;
}
.single-product .content-area .product .summary .product--prices__price--saving {
  order: 2;
}
.single-product .content-area .product .summary .product--prices__price--regular {
  order: 1;
  color: #929292;
  text-decoration: line-through;
}
.single-product .content-area .product .summary .product--prices__price--percentage {
  display: none;
}
.single-product .content-area .product .sumary-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.single-product .content-area .product form.cart {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .single-product .content-area .product form.cart {
    margin-bottom: 65px;
  }
}
.single-product .content-area .product form.cart div.quantity {
  width: 35%;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .single-product .content-area .product form.cart div.quantity {
    width: 20%;
  }
}
.single-product .content-area .product form.cart div.quantity input {
  border: none;
  background-color: #ECECEB;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  height: 100%;
  width: 100%;
}
.single-product .content-area .product form.cart div.quantity input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.single-product .content-area .product form.cart div.quantity.hidden, .single-product .content-area .product form.cart div.quantity::before {
  display: none !important;
}
.single-product .content-area .product form.cart .variations select {
  border: none;
  background-color: #ECECEB;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-indent: 1rem;
  max-width: 100%;
  min-width: 100%;
}
@media (min-width: 992px) {
  .single-product .content-area .product form.cart .variations select {
    max-width: 50%;
    min-width: 50%;
  }
}
.single-product .content-area .product form.cart .single_add_to_cart_button {
  max-width: 100%;
  min-width: 64%;
  flex: 1;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  border-radius: 0;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.single-product .content-area .product form.cart .single_add_to_cart_button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-product .content-area .product form.cart .single_add_to_cart_button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .product form.cart .single_add_to_cart_button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .product form.cart .single_add_to_cart_button:hover, .single-product .content-area .product form.cart .single_add_to_cart_button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .product form.cart .single_add_to_cart_button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .single-product .content-area .product form.cart .single_add_to_cart_button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .product form.cart .single_add_to_cart_button {
    width: 50%;
    min-width: 0%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.single-product .content-area .product .whislist-btn {
  width: 100%;
}
@media (min-width: 992px) {
  .single-product .content-area .product .whislist-btn {
    width: 28%;
    flex: 1;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .product .yith-wcwl-add-to-wishlist {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist .feedback {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  display: none;
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
  border: 1px solid #929292;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a:hover, .single-product .content-area .product .yith-wcwl-add-to-wishlist a:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .single-product .content-area .product .yith-wcwl-add-to-wishlist a {
    padding: 0.8rem 6rem;
  }
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a:hover {
  border: 1px solid transparent;
}
.single-product .content-area .product .yith-wcwl-add-to-wishlist a i {
  margin-right: 0;
}
.single-product .content-area .product .composition {
  display: block;
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 1rem;
}
.single-product .content-area .product .product_meta .sku_wrapper {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.single-product .content-area .product .product_meta .posted_in {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.single-product .content-area .product .product_meta .posted_in a {
  text-transform: lowercase;
  color: #2C3042;
  text-decoration: underline;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary {
    margin-bottom: 80px;
  }
}
.single-product .content-area .product.product-type-variable .summary .price {
  display: block;
  color: #4D4D4D;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.single-product .content-area .product.product-type-variable .summary .price ins {
  text-decoration: none;
}
.single-product .content-area .product.product-type-variable .summary .price ins bdi {
  font-weight: 300;
}
.single-product .content-area .product.product-type-variable .summary .woocommerce-review-link {
  color: #2C3042;
  text-decoration: underline;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.single-product .content-area .product.product-type-variable .summary .colors {
  padding-top: 35px;
  padding-bottom: 75px;
  border-top: 1px solid rgba(36, 36, 36, 0.2);
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary .colors {
    padding-bottom: 45px;
    padding-top: 20px;
  }
}
.single-product .content-area .product.product-type-variable .summary .colors__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 15px;
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary .colors__text {
    margin-bottom: 10px;
  }
}
.single-product .content-area .product.product-type-variable .summary .colors ul {
  display: flex;
}
.single-product .content-area .product.product-type-variable .summary .colors ul li {
  width: 30px;
  height: 30px;
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary .colors ul li {
    width: 20px;
  }
}
.single-product .content-area .product.product-type-variable .summary .colors ul li a img {
  border-radius: 50%;
  width: 25px;
  border: 1px solid rgba(36, 36, 36, 0.2);
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-product .content-area .product.product-type-variable .summary .colors ul li a img:hover {
  transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary .colors ul li a img {
    width: 20px;
  }
}
.single-product .content-area .product.product-type-variable .summary .colors ul li a img:hover {
  transform: scale(1.15);
}
@media (max-width: 1023px) {
  .single-product .content-area .product.product-type-variable .summary .colors ul li a img:hover {
    transform: none;
  }
}
.single-product .content-area .product.product-type-variable .woocommerce-variation-price .price {
  display: none !important;
}
.single-product .content-area .product.product-type-variable .variations_form.cart {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  display: block;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .single-product .content-area .product.product-type-variable .variations_form.cart {
    margin-bottom: 65px;
  }
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations {
  margin-bottom: 12px;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations .label, .single-product .content-area .product.product-type-variable .variations_form.cart .variations .value {
  display: block;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations .label {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations .label label {
  font-weight: 300;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations .value {
  margin-bottom: 1.5rem;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations #picker_pa_color {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 28px;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper {
  border: none;
  background-color: transparent;
  margin: 0 15px 5px 0;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper a {
  border-radius: 50%;
  width: 18px !important;
  height: 18px !important;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper.selected {
  border: none;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper.selected a {
  width: 25px !important;
  height: 25px !important;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations .reset_variations {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  display: none !important;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .variations tr:last-child .value {
  margin-bottom: 0.5rem;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .quantity {
  width: 23%;
  margin-right: 0;
}
@media (min-width: 992px) {
  .single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .quantity {
    width: 75px;
  }
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1;
}
@media (min-width: 992px) {
  .single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 50%;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-right: 1rem;
  }
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .added_to_cart {
  display: none;
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist {
  width: 100%;
}
@media (min-width: 992px) {
  .single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist {
    flex: 1;
  }
  .single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist a {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
.single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-guide-link {
  color: #2C3042;
  text-decoration: underline;
  margin-bottom: 45px;
  display: block;
}
@media (min-width: 992px) {
  .single-product .content-area .product.product-type-variable .variations_form.cart .woocommerce-variation-guide-link {
    margin-bottom: 35px;
  }
}
.single-product .content-area .woocommerce-tabs {
  margin-bottom: 160px;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}
.single-product .content-area .woocommerce-tabs ul.tabs {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs ul.tabs {
    display: none;
  }
}
.single-product .content-area .woocommerce-tabs ul.tabs::before {
  border-bottom: 1px solid #E1E1E1 !important;
}
.single-product .content-area .woocommerce-tabs ul.tabs::after {
  display: none !important;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab {
  background-color: transparent;
  border: none;
  border-radius: 0;
  /*font-family: $typeface--satoshi--regular;*/
  font-family: "Varela Round", sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 2rem);
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab a, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab a, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab a {
  border-radius: 0;
  border: none;
  font-weight: 300 !important;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab::before, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab::before, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab::before {
  display: none;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab::after, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab::after, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab::after {
  display: none;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab.active, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab.active, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab.active {
  border-bottom: 3px solid #2C3042;
  background-color: transparent;
  z-index: 1;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab.active::before, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab.active::before, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab.active::before {
  display: none;
}
.single-product .content-area .woocommerce-tabs ul.tabs .description_tab.active::after, .single-product .content-area .woocommerce-tabs ul.tabs .additional_information_tab.active::after, .single-product .content-area .woocommerce-tabs ul.tabs .reviews_tab.active::after {
  display: none;
}
.single-product .content-area .woocommerce-tabs .panel {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel {
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 3rem !important;
  }
}
.single-product .content-area .woocommerce-tabs .panel h2 {
  display: none !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel h2 {
    display: block !important;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E1E1E1;
  }
}
.single-product .content-area .woocommerce-tabs .panel h3, .single-product .content-area .woocommerce-tabs .panel h4, .single-product .content-area .woocommerce-tabs .panel h5, .single-product .content-area .woocommerce-tabs .panel p, .single-product .content-area .woocommerce-tabs .panel a, .single-product .content-area .woocommerce-tabs .panel span {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
  line-height: 1.4;
}
.single-product .content-area .woocommerce-tabs .panel p a {
  color: #2C3042;
  text-decoration: underline;
}
.single-product .content-area .woocommerce-tabs .panel .woocommerce-product-attributes {
  border: none;
}
.single-product .content-area .woocommerce-tabs .panel .woocommerce-product-attributes tr .woocommerce-product-attributes-item__label {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
  font-weight: 300;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist {
  margin-bottom: 2rem !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist {
    margin-bottom: 0 !important;
  }
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container {
  background-color: #F2F2F2;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container img.avatar {
  top: 1rem !important;
  left: 1rem !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container img.avatar {
    position: static !important;
    float: none !important;
    margin: 1em !important;
  }
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container .comment-text {
  border: none !important;
  border-radius: 0 !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container .comment-text {
    margin: 0 !important;
  }
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container .comment-text .star-rating::before {
  color: #2C3042;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container .comment-text .meta {
  color: #929292;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews .commentlist .comment_container .comment-text .description p {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(0.9rem, 1vw, 0.95rem) !important;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form .comment-reply-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  display: block;
  margin-bottom: 1rem !important;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-rating {
  margin-bottom: 1rem;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-rating label {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 0.5rem;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-rating .stars span {
  font-size: 1.5rem;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-comment {
  margin-bottom: 1rem;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-comment label {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-comment textarea {
  background-color: #F2F2F2;
  border: none !important;
  border-radius: 0 !important;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-author, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email {
  width: 50%;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-author label, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email label {
  min-width: 35%;
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-author, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email {
    width: 100%;
  }
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-author input, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email input {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  height: 2.5rem;
  padding-left: 1rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-author input, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email input {
    width: 100%;
  }
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .comment-form-email {
  margin-bottom: 1rem;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  border-radius: 0 !important;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input:hover, .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input {
    padding: 0.8rem 6rem;
  }
}
@media (max-width: 1023px) {
  .single-product .content-area .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews #review_form #respond .comment-form .form-submit input {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .woocommerce-tabs .panel .instructions {
    max-width: 450px;
  }
}
.single-product .content-area .woocommerce-tabs .panel .instructions span {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(0.9rem, 1vw, 0.95rem) !important;
  color: #929292;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E1E1E1;
  display: block;
}
.single-product .content-area .woocommerce-tabs .panel .instructions ul li {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.2;
}
.single-product .content-area .woocommerce-tabs .panel .instructions ul li img {
  margin-right: 0.5rem;
  position: relative;
  top: -5px;
}
.single-product .content-area .product-article {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .single-product .content-area .product-article {
    display: none;
    margin-bottom: 160px;
  }
}
.single-product .content-area .product-article__text {
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .single-product .content-area .product-article__text {
    width: 42.5%;
    padding-right: 10%;
    margin-bottom: 0;
  }
}
.single-product .content-area .product-article__text__title {
  margin-bottom: 30px;
}
.single-product .content-area .product-article__text__paragraph {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .product-article__text__btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
  margin-top: 1rem !important;
}
.single-product .content-area .product-article__text__btn:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.single-product .content-area .product-article__text__btn p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.single-product .content-area .product-article__text__btn:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .product-article__text__btn:hover, .single-product .content-area .product-article__text__btn:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.single-product .content-area .product-article__text__btn:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .single-product .content-area .product-article__text__btn {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .product-article__text__btn {
    margin-top: 60px !important;
    width: auto;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .product-article__img {
    width: 57.5%;
  }
}
.single-product .content-area .product-article__img img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .single-product .content-area .product-article__img img {
    max-height: 350px;
  }
}
@media (min-width: 992px) {
  .single-product .content-area .product-article__img img {
    max-height: 550px;
  }
}
.single-product .content-area .related.products {
  margin-bottom: 160px !important;
}
@media (max-width: 1023px) {
  .single-product .content-area .related.products {
    margin-bottom: 40px !important;
  }
}
.single-product .content-area .related.products h2 {
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .single-product .content-area .related.products h2 {
    margin-bottom: 30px;
  }
}
.single-product #sidebar {
  display: none;
}
.single-product .wpsi_social_share_buttons {
  margin: 0 0 20px 0;
}
.single-product .wpsi_social_share_buttons a {
  background: transparent !important;
  flex: auto;
  max-width: fit-content;
  border-right: 5px solid transparent !important;
}
.single-product .wpsi_social_share_buttons a:hover {
  background: transparent !important;
  opacity: 0.5;
}
.single-product .wpsi_social_share_buttons a:hover span {
  background: transparent !important;
}
.single-product .wpsi_social_share_buttons a span {
  background: transparent !important;
  width: 25px;
}
.single-product .wpsi_social_share_buttons a span svg path {
  fill: #2C3042;
}
.single-product .pswp__bg {
  background: rgba(0, 0, 0, 0.5);
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: transparent;
  border: none;
  border-top: 1px solid #F2F2F2;
}

.woocommerce div.product form.cart::before {
  display: none;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  z-index: 1;
  right: 1.5rem;
}

@media (max-width: 1023px) {
  #yith-quick-view-modal {
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 1023px) {
  #yith-quick-view-modal .yith-quick-view-overlay {
    background: transparent;
  }
}
#yith-quick-view-modal .yith-wcqv-main {
  box-shadow: none;
}
#yith-quick-view-modal.open .yith-wcqv-main {
  overflow: hidden;
}

.yith-wcqv-wrapper {
  height: auto !important;
}
.yith-wcqv-wrapper #yith-quick-view-close {
  color: transparent;
}
.yith-wcqv-wrapper #yith-quick-view-close::after {
  content: "";
  background: url("../../images/icon--close.svg");
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-close::after {
    right: 5px;
    top: 5px;
  }
}
.yith-wcqv-wrapper .yith-wcqv-main {
  overflow-y: hidden;
}
.yith-wcqv-wrapper #yith-quick-view-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  border: none !important;
  padding-bottom: 50px !important;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    max-width: 1568px;
  }
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content {
    margin-top: 5rem !important;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-rating .woocommerce-review-link {
  color: #2C3042;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-rating {
    margin-bottom: 0.5rem;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .single-product__wrapper {
  margin-bottom: 160px !important;
  min-height: 1076px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .single-product__wrapper {
    margin-bottom: 40px !important;
    min-height: auto;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .stock {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #07B68C;
  margin-bottom: 0.5rem;
  display: none !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .stock.out-of-stock {
  color: #CD0505;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-gallery {
  width: 50%;
  height: 100%;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-gallery {
    width: 100%;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  display: none;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-gallery img {
  width: 100%;
  height: 100%;
  min-height: 75vh;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .woocommerce-product-gallery img {
    height: auto;
    min-height: auto;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary {
  position: sticky;
  top: 6rem;
  width: 50%;
  padding-top: 50px !important;
  overflow-y: auto;
  height: 75vh;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .summary {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .summary {
    position: static;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product_title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .summary .product_title {
    margin-bottom: 40px !important;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .woocommerce-product-rating {
  margin-bottom: 0.5rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .woocommerce-product-rating .star-rating {
  color: #2C3042;
  margin-bottom: 0;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .woocommerce-product-rating .star-rating::before {
  color: #2C3042;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .woocommerce-product-details__short-description {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .summary .woocommerce-product-details__short-description {
    margin-bottom: 0.5rem;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .price {
  font-weight: 300;
  color: #2C3042;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .price del {
  color: #929292;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .price ins {
  color: #2C3042;
  text-decoration: none;
  font-weight: 300;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product--prices {
  display: flex;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product--prices span {
  margin-right: 0.3rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product--prices__price--saving {
  order: 2;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product--prices__price--regular {
  order: 1;
  color: #929292;
  text-decoration: line-through;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .summary .product--prices__price--percentage {
  display: none;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .sumary-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product form.cart {
    flex-wrap: wrap;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity {
  width: 35%;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity {
    width: 20%;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity input {
  border: none;
  background-color: #ECECEB;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  height: 100%;
  width: 100%;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity.hidden, .yith-wcqv-wrapper #yith-quick-view-content .product form.cart .quantity::before {
  display: none !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .variations select {
  border: none;
  background-color: #ECECEB;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-indent: 1rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button {
  width: 100%;
  min-width: 64%;
  flex: 1;
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  border-radius: 0;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button:hover, .yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product form.cart .single_add_to_cart_button {
    width: 50%;
    min-width: 0%;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    flex: inherit;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .whislist-btn {
  width: 100%;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .whislist-btn {
    width: 28%;
    flex: 1;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist .feedback {
  width: 100%;
  display: block;
  margin-bottom: 8px;
  display: none;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  width: 100%;
  border: 1px solid #929292;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:hover, .yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a {
    padding: 0.8rem 6rem;
  }
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product .yith-wcwl-add-to-wishlist a:hover {
  border: 1px solid transparent;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .product_meta .posted_in {
  color: #2C3042;
}
.yith-wcqv-wrapper #yith-quick-view-content .product .product_meta .posted_in a {
  text-transform: lowercase;
  color: #2C3042;
  text-decoration: underline;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .summary .price {
  display: block;
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .summary .woocommerce-review-link {
  color: #2C3042;
  text-decoration: underline;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .woocommerce-variation-price .price {
  display: none !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  display: block;
  margin-bottom: 4rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors {
  padding-top: 35px;
  padding-bottom: 75px;
  border-top: 1px solid rgba(36, 36, 36, 0.2);
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors {
    padding-bottom: 45px;
    padding-top: 20px;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors__text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  margin-bottom: 15px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors__text {
    margin-bottom: 10px;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li {
  width: 30px;
  height: 30px;
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li {
    width: 20px;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li a img {
  border-radius: 50%;
  width: 25px;
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li a img:hover {
  transition: 200ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li a img {
    width: 20px;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li a img:hover {
  transform: scale(1.15);
}
@media (max-width: 1023px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .colors ul li a img:hover {
    transform: none;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations {
  margin-bottom: 0;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .label, .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .value {
  display: block;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .label {
  color: #2C3042;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .label label {
  font-weight: 300;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .value {
  margin-bottom: 1.5rem;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations #picker_pa_color {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 28px;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper {
  border: none;
  background-color: transparent;
  margin: 0 15px 5px 0;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper a {
  border-radius: 50%;
  width: 18px !important;
  height: 18px !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper.selected {
  border: none;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations #picker_pa_color .swatch-wrapper.selected a {
  width: 25px !important;
  height: 25px !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations .reset_variations {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  display: none !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .variations tr:last-child .value {
  margin-bottom: 25px;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .quantity {
  width: 23%;
  margin-right: 0;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .quantity {
    width: 18%;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  flex: 1;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 50%;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-right: 0.5rem;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist {
  width: 100%;
}
@media (min-width: 992px) {
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist {
    flex: 1;
  }
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist a {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist a i {
    margin-right: 0;
  }
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-add-to-cart .added_to_cart {
  display: none !important;
}
.yith-wcqv-wrapper #yith-quick-view-content .product.product-type-variable .variations_form.cart .woocommerce-variation-guide-link {
  color: #2C3042;
  text-decoration: underline;
  margin-bottom: 2rem;
  display: block;
}
.yith-wcqv-wrapper #yith-quick-view-content .product_meta {
  display: none;
}
.yith-wcqv-wrapper #sidebar {
  display: none;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: transparent;
  border: none;
  border-top: 1px solid #F2F2F2;
}

.woocommerce div.product form.cart::before {
  display: none;
}

.xoo-wsc-modal .xoo-wsc-container .product--prices__price--percentage {
  display: block;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-basket {
  display: none !important;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top {
  justify-content: center;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top .xoo-wsch-basket .xoo-wscb-count {
  line-height: 32px;
  position: relative;
  top: 14px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top .xoo-wsch-basket .xoo-wscb-count::before {
  content: "(";
  position: absolute;
  right: 14px;
  top: -7px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top .xoo-wsch-basket .xoo-wscb-count::after {
  content: ")";
  position: absolute;
  right: -10px;
  top: -7px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top .xoo-wsch-basket .xoo-wscb-icon {
  display: none;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top .xoo-wsch-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  padding-top: 2rem;
  padding-left: 10px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top span.xoo-wsch-close {
  top: 2rem;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top span.xoo-wsch-close::after {
  content: "";
  background: url("../../images/icon--close.svg");
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  top: -10px;
}
@media (max-width: 1023px) {
  .xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top span.xoo-wsch-close::after {
    right: 5px;
    top: 5px;
  }
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-header .xoo-wsch-top span.xoo-wsch-close::before {
  content: "";
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products {
  margin-left: 20px;
  margin-right: 20px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 3.5rem;
  padding-top: 3rem;
  align-items: flex-start;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-pname a {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .variation {
  color: #929292;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .variation dt {
  font-style: normal;
  line-height: 18px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .variation dd {
  line-height: 18px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span {
  display: block;
  color: #929292;
  font-size: 13px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span:first-child::before {
  content: "Cantidad:  ";
  color: #929292;
  font-family: "SatoshiRegular";
  display: inline-block;
  font-size: 13px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span:last-child::before {
  content: "";
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span .amount {
  color: #2C3042;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span .amount .woocommerce-Price-currencySymbol {
  display: inline-block;
  padding-left: 0;
  color: #2C3042;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-left .xoo-wsc-qty-price span .amount::before {
  content: "Precio:  ";
  color: #929292;
  font-family: "SatoshiRegular";
  display: inline-block;
  font-size: 13px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-right {
  justify-content: center;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-right .xoo-wsc-icon-trash {
  color: transparent;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-right .xoo-wsc-icon-trash:hover {
  opacity: 0.5;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-body .xoo-wsc-products .xoo-wsc-product .xoo-wsc-sum-col .xoo-wsc-sm-info .xoo-wsc-sm-right .xoo-wsc-icon-trash::before {
  background: url("../../images/icon--delete.svg");
  width: 20px;
  height: 20px;
  position: relative;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals {
  padding-top: 3rem;
  position: relative;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals::after {
  content: "Impuestos incluídos";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 0px;
  bottom: 20px;
  display: none;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals:lang(en-GB) {
  display: none;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals:lang(en-GB)::after {
  content: "Taxes included";
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt-subtotal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #ECECEB;
  position: relative;
  margin-bottom: 1.5rem;
  padding-top: 8px;
  position: relative;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt-subtotal span {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  font-weight: 300;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt-subtotal::before {
  content: "Envío/Promociones";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: -26px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals .xoo-wsc-ft-amt-subtotal::after {
  content: "Calculados en el paso siguiente";
  color: #929292;
  font-family: "SatoshiRegular";
  font-size: 13px;
  font-weight: 300;
  position: absolute;
  right: 0;
  top: -26px;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-totals small.tax_label {
  display: none;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn {
  width: 100%;
  border-radius: 0;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-continue {
  display: none;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:hover {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:hover, .xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:active {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart:focus {
  background-color: #F2F2F2;
  color: #4D4D4D;
  border: 1px solid #F2F2F2;
  outline: none;
}
@media (min-width: 768px) {
  .xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart {
    padding: 0.8rem 6rem;
  }
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover, .xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .xoo-wsc-modal .xoo-wsc-container .xoo-wsc-footer .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout {
    padding: 0.8rem 6rem;
  }
}

.woocommerce-order-details {
  padding: 1rem;
  background-color: #f5f5f5;
  border: none !important;
}
@media (min-width: 992px) {
  .woocommerce-order-details {
    padding: 2rem;
  }
}
.woocommerce-order-details__title {
  margin-bottom: 2rem;
}
.woocommerce-order-details .woocommerce-table--order-details {
  border: none !important;
}
.woocommerce-order-details .woocommerce-table--order-details thead .product-name {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.woocommerce-order-details .woocommerce-table--order-details thead .product-total {
  font-weight: 300;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  color: #929292;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.woocommerce-order-details .woocommerce-table--order-details .order_item {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-order-details .woocommerce-table--order-details .order_item td {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  border-top: none !important;
}
.woocommerce-order-details .woocommerce-table--order-details .order_item .product-name a {
  color: #2C3042;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-order-details .woocommerce-table--order-details .order_item .product-name .product-quantity {
  vertical-align: baseline !important;
}
.woocommerce-order-details .woocommerce-table--order-details .order_item:first-child .product-name, .woocommerce-order-details .woocommerce-table--order-details .order_item:first-child .product-total {
  padding-top: 60px !important;
}
.woocommerce-order-details .woocommerce-table--order-details .order_item:last-child .product-name, .woocommerce-order-details .woocommerce-table--order-details .order_item:last-child .product-total {
  padding-bottom: 60px !important;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr th {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
  font-weight: 300;
  border-top: none !important;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr td {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
  font-weight: 300;
  border-top: none !important;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr td .amount {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  color: #2C3042;
  font-weight: 300;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child th {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
  font-weight: 300;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
  font-weight: 300;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td .amount {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
  font-weight: 300;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:first-child th {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding-top: 30px;
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:first-child td {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding-top: 30px;
}

.woocommerce-customer-details .woocommerce-column__title {
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  font-family: "ClashDisplayRegular";
}
.woocommerce-customer-details .woocommerce-column--shipping-address.col-2, .woocommerce-customer-details .woocommerce-column--billing-address.col-1 {
  max-width: initial !important;
  flex: auto !important;
}
.woocommerce-customer-details .woocommerce-column--billing-address {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .woocommerce-customer-details .woocommerce-column--billing-address {
    margin-bottom: 0;
  }
}
.woocommerce-customer-details address {
  border: none !important;
  padding: 0 !important;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  line-height: 1.4;
}
.woocommerce-customer-details address .woocommerce-customer-details--phone {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.woocommerce-customer-details address .woocommerce-customer-details--phone::before {
  content: "" !important;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  width: 15px;
  height: 15px;
  background: url(../../images/icon--phone.svg);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
@media (min-width: 1440px) {
  .woocommerce-customer-details address .woocommerce-customer-details--phone::before {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1568px) {
  .woocommerce-customer-details address .woocommerce-customer-details--phone::before {
    width: 20px;
    height: 20px;
  }
}
.woocommerce-customer-details address .woocommerce-customer-details--email {
  position: relative;
}
.woocommerce-customer-details address .woocommerce-customer-details--email::before {
  content: "" !important;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  width: 15px;
  height: 15px;
  background: url(../../images/icon--mail.svg);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
@media (min-width: 1440px) {
  .woocommerce-customer-details address .woocommerce-customer-details--email::before {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1568px) {
  .woocommerce-customer-details address .woocommerce-customer-details--email::before {
    width: 20px;
    height: 20px;
  }
}

.woocommerce table.shop_table tr.order_item td.product-name {
  display: flex;
  gap: 30px;
  vertical-align: middle;
  align-items: center;
}
.woocommerce table.shop_table tr.order_item td.product-name .product-thumbnail {
  width: 100px;
}
.woocommerce table.shop_table tr.order_item td.product-total {
  vertical-align: middle;
}

.post-type-archive-product main,
.tax-product_cat main,
.tax-collection main {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .post-type-archive-product main,
  .tax-product_cat main,
  .tax-collection main {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .post-type-archive-product main,
  .tax-product_cat main,
  .tax-collection main {
    max-width: 1100px;
  }
}
@media (min-width: 1440px) {
  .post-type-archive-product main,
  .tax-product_cat main,
  .tax-collection main {
    max-width: 1340px;
  }
}
@media (min-width: 1568px) {
  .post-type-archive-product main,
  .tax-product_cat main,
  .tax-collection main {
    max-width: 1468px;
  }
}
@media (min-width: 1650px) {
  .post-type-archive-product main,
  .tax-product_cat main,
  .tax-collection main {
    max-width: 1568px;
  }
}
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb,
.tax-collection .woocommerce-breadcrumb {
  margin-top: 200px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .post-type-archive-product .woocommerce-breadcrumb,
  .tax-product_cat .woocommerce-breadcrumb,
  .tax-collection .woocommerce-breadcrumb {
    margin-top: 275px;
    margin-bottom: 50px;
  }
}
.post-type-archive-product .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header,
.tax-collection .woocommerce-products-header {
  position: static;
  height: auto;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .post-type-archive-product .woocommerce-products-header,
  .tax-product_cat .woocommerce-products-header,
  .tax-collection .woocommerce-products-header {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.tax-collection .woocommerce-result-count {
  color: #4D4D4D;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .post-type-archive-product .woocommerce-result-count,
  .tax-product_cat .woocommerce-result-count,
  .tax-collection .woocommerce-result-count {
    margin-bottom: 50px;
  }
}
.post-type-archive-product .container--ordering-filter,
.tax-product_cat .container--ordering-filter,
.tax-collection .container--ordering-filter {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .post-type-archive-product .container--ordering-filter,
  .tax-product_cat .container--ordering-filter,
  .tax-collection .container--ordering-filter {
    width: 100%;
    justify-content: space-between;
  }
}
.post-type-archive-product .container--ordering-filter .woocommerce-ordering,
.tax-product_cat .container--ordering-filter .woocommerce-ordering,
.tax-collection .container--ordering-filter .woocommerce-ordering {
  margin-bottom: 40px;
  float: left;
}
@media (min-width: 992px) {
  .post-type-archive-product .container--ordering-filter .woocommerce-ordering,
  .tax-product_cat .container--ordering-filter .woocommerce-ordering,
  .tax-collection .container--ordering-filter .woocommerce-ordering {
    margin-bottom: 50px;
    float: right;
  }
}
.post-type-archive-product .container--ordering-filter .woocommerce-ordering select,
.tax-product_cat .container--ordering-filter .woocommerce-ordering select,
.tax-collection .container--ordering-filter .woocommerce-ordering select {
  width: 170px;
  margin-right: 68px;
  border: none;
  background-color: transparent;
}
.post-type-archive-product .container--ordering-filter .item--filter,
.tax-product_cat .container--ordering-filter .item--filter,
.tax-collection .container--ordering-filter .item--filter {
  cursor: pointer;
}
.post-type-archive-product .container--ordering-filter .item--filter span,
.tax-product_cat .container--ordering-filter .item--filter span,
.tax-collection .container--ordering-filter .item--filter span {
  padding-right: 10px;
}
.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-collection ul.products li.product {
  margin-bottom: 55px;
}
@media (max-width: 575px) {
  .post-type-archive-product ul.products li.product,
  .tax-product_cat ul.products li.product,
  .tax-collection ul.products li.product {
    float: none !important;
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .post-type-archive-product ul.products li.product,
  .tax-product_cat ul.products li.product,
  .tax-collection ul.products li.product {
    margin-bottom: 70px;
  }
}
.post-type-archive-product ul.products li.product a,
.tax-product_cat ul.products li.product a,
.tax-collection ul.products li.product a {
  display: block;
  position: relative;
}
.post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail, .post-type-archive-product ul.products li.product a .attachment-thumbnail,
.tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail,
.tax-product_cat ul.products li.product a .attachment-thumbnail,
.tax-collection ul.products li.product a .attachment-woocommerce_thumbnail,
.tax-collection ul.products li.product a .attachment-thumbnail {
  height: 518px;
  margin-bottom: 20px;
  object-fit: cover;
}
.post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail.woocommerce-placeholder, .post-type-archive-product ul.products li.product a .attachment-thumbnail.woocommerce-placeholder,
.tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail.woocommerce-placeholder,
.tax-product_cat ul.products li.product a .attachment-thumbnail.woocommerce-placeholder,
.tax-collection ul.products li.product a .attachment-woocommerce_thumbnail.woocommerce-placeholder,
.tax-collection ul.products li.product a .attachment-thumbnail.woocommerce-placeholder {
  display: block !important;
}
@media (max-width: 1399px) {
  .post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail, .post-type-archive-product ul.products li.product a .attachment-thumbnail,
  .tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-product_cat ul.products li.product a .attachment-thumbnail,
  .tax-collection ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-collection ul.products li.product a .attachment-thumbnail {
    height: 400px;
  }
}
@media (max-width: 1023px) {
  .post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail, .post-type-archive-product ul.products li.product a .attachment-thumbnail,
  .tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-product_cat ul.products li.product a .attachment-thumbnail,
  .tax-collection ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-collection ul.products li.product a .attachment-thumbnail {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail, .post-type-archive-product ul.products li.product a .attachment-thumbnail,
  .tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-product_cat ul.products li.product a .attachment-thumbnail,
  .tax-collection ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-collection ul.products li.product a .attachment-thumbnail {
    height: 518px;
  }
}
@media (max-width: 575px) {
  .post-type-archive-product ul.products li.product a .attachment-woocommerce_thumbnail, .post-type-archive-product ul.products li.product a .attachment-thumbnail,
  .tax-product_cat ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-product_cat ul.products li.product a .attachment-thumbnail,
  .tax-collection ul.products li.product a .attachment-woocommerce_thumbnail,
  .tax-collection ul.products li.product a .attachment-thumbnail {
    height: auto;
    object-fit: cover;
  }
}
.post-type-archive-product ul.products li.product a .attachment-thumbnail:nth-of-type(2),
.tax-product_cat ul.products li.product a .attachment-thumbnail:nth-of-type(2),
.tax-collection ul.products li.product a .attachment-thumbnail:nth-of-type(2) {
  display: none;
}
.post-type-archive-product ul.products li.product a:hover .attachment-thumbnail:nth-of-type(2),
.tax-product_cat ul.products li.product a:hover .attachment-thumbnail:nth-of-type(2),
.tax-collection ul.products li.product a:hover .attachment-thumbnail:nth-of-type(2) {
  display: block;
}
.post-type-archive-product ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1),
.tax-product_cat ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1),
.tax-collection ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1) {
  display: none;
}
.post-type-archive-product ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1).woocommerce-placeholder,
.tax-product_cat ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1).woocommerce-placeholder,
.tax-collection ul.products li.product a:hover .attachment-woocommerce_thumbnail:nth-of-type(1).woocommerce-placeholder {
  display: block !important;
}
.post-type-archive-product ul.products li.product a .woocommerce-loop-product__title,
.tax-product_cat ul.products li.product a .woocommerce-loop-product__title,
.tax-collection ul.products li.product a .woocommerce-loop-product__title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  color: #2C3042;
  padding: 0;
  line-height: 1.2;
  height: 82px;
  min-height: 82px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .post-type-archive-product ul.products li.product a .woocommerce-loop-product__title,
  .tax-product_cat ul.products li.product a .woocommerce-loop-product__title,
  .tax-collection ul.products li.product a .woocommerce-loop-product__title {
    margin-bottom: 45px;
  }
}
.post-type-archive-product ul.products li.product a .star-rating,
.tax-product_cat ul.products li.product a .star-rating,
.tax-collection ul.products li.product a .star-rating {
  display: none;
}
.post-type-archive-product ul.products li.product a .price,
.tax-product_cat ul.products li.product a .price,
.tax-collection ul.products li.product a .price {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
  color: #2C3042 !important;
  margin-bottom: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E1E1;
  height: 40px;
}
@media (min-width: 992px) {
  .post-type-archive-product ul.products li.product a .price,
  .tax-product_cat ul.products li.product a .price,
  .tax-collection ul.products li.product a .price {
    margin-bottom: 20px;
  }
}
.post-type-archive-product ul.products li.product a .price ins,
.tax-product_cat ul.products li.product a .price ins,
.tax-collection ul.products li.product a .price ins {
  text-decoration: auto;
}
.post-type-archive-product ul.products li.product a .product--prices,
.tax-product_cat ul.products li.product a .product--prices,
.tax-collection ul.products li.product a .product--prices {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  display: flex;
}
.post-type-archive-product ul.products li.product a .product--prices__price--saving,
.tax-product_cat ul.products li.product a .product--prices__price--saving,
.tax-collection ul.products li.product a .product--prices__price--saving {
  color: #2C3042;
  padding-right: 20px;
  order: 3;
}
.post-type-archive-product ul.products li.product a .product--prices__price--regular,
.tax-product_cat ul.products li.product a .product--prices__price--regular,
.tax-collection ul.products li.product a .product--prices__price--regular {
  color: #929292;
  padding-right: 20px;
  text-decoration: line-through;
  order: 2;
}
.post-type-archive-product ul.products li.product a .product--prices__price--percentage,
.tax-product_cat ul.products li.product a .product--prices__price--percentage,
.tax-collection ul.products li.product a .product--prices__price--percentage {
  color: #2C3042;
  padding-right: 20px;
  order: 1;
}
.post-type-archive-product ul.products li.product a .product-colors,
.tax-product_cat ul.products li.product a .product-colors,
.tax-collection ul.products li.product a .product-colors {
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.post-type-archive-product ul.products li.product a .container--featured-products_card,
.tax-product_cat ul.products li.product a .container--featured-products_card,
.tax-collection ul.products li.product a .container--featured-products_card {
  position: absolute;
  top: 390px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.post-type-archive-product ul.products li.product a .container--featured-products_card:hover,
.tax-product_cat ul.products li.product a .container--featured-products_card:hover,
.tax-collection ul.products li.product a .container--featured-products_card:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1399px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card,
  .tax-product_cat ul.products li.product a .container--featured-products_card,
  .tax-collection ul.products li.product a .container--featured-products_card {
    top: 340px;
  }
}
@media (max-width: 1023px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card,
  .tax-product_cat ul.products li.product a .container--featured-products_card,
  .tax-collection ul.products li.product a .container--featured-products_card {
    top: 240px;
  }
}
@media (max-width: 767px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card,
  .tax-product_cat ul.products li.product a .container--featured-products_card,
  .tax-collection ul.products li.product a .container--featured-products_card {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card,
  .tax-product_cat ul.products li.product a .container--featured-products_card,
  .tax-collection ul.products li.product a .container--featured-products_card {
    height: auto;
    object-fit: cover;
  }
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--wishlist,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--wishlist,
.tax-collection ul.products li.product a .container--featured-products_card__button--wishlist {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #F2F2F2;
  width: 30%;
  height: 40px;
}
@media (min-width: 1440px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card__button--wishlist,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--wishlist,
  .tax-collection ul.products li.product a .container--featured-products_card__button--wishlist {
    width: 15%;
  }
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--wishlist svg,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--wishlist svg,
.tax-collection ul.products li.product a .container--featured-products_card__button--wishlist svg {
  width: 20px;
  height: 20px;
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--wishlist.active svg,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--wishlist.active svg,
.tax-collection ul.products li.product a .container--featured-products_card__button--wishlist.active svg {
  fill: #000;
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--cart,
.tax-collection ul.products li.product a .container--featured-products_card__button--quickview,
.tax-collection ul.products li.product a .container--featured-products_card__button--cart {
  position: relative;
  background-color: #E1E1E1;
  width: 30%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--cart,
  .tax-collection ul.products li.product a .container--featured-products_card__button--quickview,
  .tax-collection ul.products li.product a .container--featured-products_card__button--cart {
    width: 40%;
  }
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview .helper--text, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart .helper--text,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--cart .helper--text,
.tax-collection ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
.tax-collection ul.products li.product a .container--featured-products_card__button--cart .helper--text {
  display: none;
}
@media (min-width: 1440px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview .helper--text, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart .helper--text,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--cart .helper--text,
  .tax-collection ul.products li.product a .container--featured-products_card__button--quickview .helper--text,
  .tax-collection ul.products li.product a .container--featured-products_card__button--cart .helper--text {
    display: block;
    padding-left: 0.2rem;
    font-family: "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.12rem);
    color: #2C3042;
    order: 2;
  }
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview svg, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart svg,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview svg,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--cart svg,
.tax-collection ul.products li.product a .container--featured-products_card__button--quickview svg,
.tax-collection ul.products li.product a .container--featured-products_card__button--cart svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1200px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card__button--quickview svg, .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart svg,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--quickview svg,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--cart svg,
  .tax-collection ul.products li.product a .container--featured-products_card__button--quickview svg,
  .tax-collection ul.products li.product a .container--featured-products_card__button--cart svg {
    order: 1;
    padding-right: 0.2rem;
  }
}
.post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart,
.tax-product_cat ul.products li.product a .container--featured-products_card__button--cart,
.tax-collection ul.products li.product a .container--featured-products_card__button--cart {
  background-color: #2C3042;
}
@media (min-width: 1200px) {
  .post-type-archive-product ul.products li.product a .container--featured-products_card__button--cart .helper--text,
  .tax-product_cat ul.products li.product a .container--featured-products_card__button--cart .helper--text,
  .tax-collection ul.products li.product a .container--featured-products_card__button--cart .helper--text {
    color: #F2F2F2;
  }
}
@media (min-width: 992px) {
  .post-type-archive-product ul.products li.product a:hover .container--featured-products_card,
  .tax-product_cat ul.products li.product a:hover .container--featured-products_card,
  .tax-collection ul.products li.product a:hover .container--featured-products_card {
    opacity: 1;
  }
}
.post-type-archive-product ul.products li.product .button, .post-type-archive-product ul.products li.product .yith-wcwl-add-to-wishlist,
.tax-product_cat ul.products li.product .button,
.tax-product_cat ul.products li.product .yith-wcwl-add-to-wishlist,
.tax-collection ul.products li.product .button,
.tax-collection ul.products li.product .yith-wcwl-add-to-wishlist {
  display: none;
}

ul.products li.product a:hover {
  opacity: 1 !important;
}

@media (min-width: 992px) {
  .woocommerce-wishlist .page-header,
  .myaccount .page-header {
    margin-bottom: 0 !important;
  }
  .woocommerce-wishlist .page-header .page-header__line,
  .myaccount .page-header .page-header__line {
    display: none;
  }
}
@media (min-width: 992px) {
  .woocommerce-wishlist form,
  .myaccount form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .woocommerce-wishlist form,
  .myaccount form {
    padding-left: 0;
    padding-right: 0;
    max-width: 900px;
    margin: auto;
    width: 100%;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .woocommerce-wishlist form,
  .myaccount form {
    max-width: 1100px;
  }
}
@media (min-width: 992px) and (min-width: 1440px) {
  .woocommerce-wishlist form,
  .myaccount form {
    max-width: 1340px;
  }
}
@media (min-width: 992px) and (min-width: 1568px) {
  .woocommerce-wishlist form,
  .myaccount form {
    max-width: 1468px;
  }
}
@media (min-width: 992px) and (min-width: 1650px) {
  .woocommerce-wishlist form,
  .myaccount form {
    max-width: 1568px;
  }
}
.woocommerce-wishlist .wishlist-title-container,
.myaccount .wishlist-title-container {
  display: none;
}
.woocommerce-wishlist .wishlist_table,
.myaccount .wishlist_table {
  padding: 1rem;
  background-color: #f5f5f5;
  border: none !important;
}
@media (min-width: 992px) {
  .woocommerce-wishlist .wishlist_table,
  .myaccount .wishlist_table {
    padding: 0;
    background-color: transparent;
  }
}
.woocommerce-wishlist .wishlist_table .yith-wcqv-button,
.myaccount .wishlist_table .yith-wcqv-button {
  display: none;
}
.woocommerce-wishlist .wishlist_table.mobile li,
.myaccount .wishlist_table.mobile li {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.woocommerce-wishlist .wishlist_table.mobile li:last-child,
.myaccount .wishlist_table.mobile li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .product-name,
.myaccount .wishlist_table.mobile li .item-details .product-name {
  margin-bottom: 2rem;
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .product-name h3,
.myaccount .wishlist_table.mobile li .item-details .product-name h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .product-name h3 a,
.myaccount .wishlist_table.mobile li .item-details .product-name h3 a {
  text-decoration: underline;
  color: #2C3042;
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr td,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr td {
  vertical-align: baseline;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr .value del, .woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr .value ins,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr .value del,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr .value ins {
  display: none;
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices__price--saving, .woocommerce-wishlist .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices__price--regular,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices__price--saving,
.myaccount .wishlist_table.mobile li .item-details .item-details-table tr .value .product--prices__price--regular {
  margin-right: 0.5rem;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper,
.myaccount .wishlist_table.mobile li .additional-info-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .additional-info td,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .additional-info td {
  padding: 0;
  vertical-align: bottom;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .additional-info .label,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .additional-info .label {
  display: none;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .additional-info .value,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .additional-info .value {
  vertical-align: bottom;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart {
  margin-bottom: 0;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a {
  background-color: #2C3042;
  color: #F2F2F2;
  text-decoration: none;
  border: 1px solid #2C3042;
  font-weight: 300;
  padding: 0.2rem 1rem;
  margin: 0 5px !important;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:hover,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:hover {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:hover, .woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:active,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:hover,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:active {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:focus,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a:focus {
  background-color: #4D4D4D !important;
  color: #F2F2F2 !important;
  border: 1px solid #4D4D4D !important;
  outline: none;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-remove a i,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-remove a i {
  position: relative;
  width: 2rem;
}
.woocommerce-wishlist .wishlist_table.mobile li .additional-info-wrapper .product-remove a i::before,
.myaccount .wishlist_table.mobile li .additional-info-wrapper .product-remove a i::before {
  content: "";
  background-image: url("../../images/icon--delete.svg");
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -1rem;
  right: 0;
}
.woocommerce-wishlist .wishlist_table.traditional thead tr th,
.myaccount .wishlist_table.traditional thead tr th {
  padding: 0;
}
.woocommerce-wishlist .wishlist_table.traditional thead tr th span,
.myaccount .wishlist_table.traditional thead tr th span {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #929292;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  font-weight: 300;
  display: inline-block;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  text-align: left;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td a,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td a {
  color: #2C3042;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a {
  position: relative;
  color: transparent !important;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a:hover,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a:hover {
  opacity: 0.5;
  background-color: transparent;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a::before,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-remove a::before {
  content: "";
  background-image: url(../../images/icon--delete.svg);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 20px;
  height: 20px;
  position: absolute;
  display: inline-block;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-thumbnail a,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-thumbnail a {
  width: 130px;
  max-width: 130px;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-thumbnail a img,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-thumbnail a img {
  width: 130px;
  height: auto;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price del, .woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price ins,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price del,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price ins {
  display: none;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices span,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices span {
  margin-right: 0.25rem;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices__price--percentage,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices__price--percentage {
  display: none;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices__price--regular,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-price .product--prices__price--regular {
  text-decoration: line-through;
  color: #929292;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-stock-status,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-stock-status {
  vertical-align: top;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-stock-status span,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-stock-status span {
  color: #2C3042;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart {
  vertical-align: top;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 1rem !important;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a p,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover, .woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:active,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:hover,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:focus,
.myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .woocommerce-wishlist .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a,
  .myaccount .wishlist_table.traditional .wishlist-items-wrapper tr td.product-add-to-cart a {
    padding: 0.8rem 6rem;
  }
}
.woocommerce-wishlist .yith_wcwl_wishlist_footer .yith-wcwl-share,
.myaccount .yith_wcwl_wishlist_footer .yith-wcwl-share {
  float: none;
  width: 100%;
  text-align: center;
}
.woocommerce-wishlist .yith_wcwl_wishlist_footer .yith-wcwl-share a,
.myaccount .yith_wcwl_wishlist_footer .yith-wcwl-share a {
  background-color: #929292;
  background: #929292;
  color: #F2F2F2;
}
.woocommerce-wishlist .yith_wcwl_wishlist_footer .yith-wcwl-share a:hover,
.myaccount .yith_wcwl_wishlist_footer .yith-wcwl-share a:hover {
  opacity: 0.5;
}

.myaccount .page-header {
  display: none;
}
.myaccount .wishlist-title-container {
  display: block;
}
.myaccount .wishlist-title-container .wishlist-title {
  margin-bottom: 1.5rem;
}
.myaccount .wishlist-title-container .wishlist-title h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.myaccount .wishlist-items-wrapper tr td {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.myaccount .product--prices {
  line-height: inherit;
}
.myaccount .product--prices span {
  font-family: "Inter", sans-serif !important;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem) !important;
}
.myaccount .product-add-to-cart a {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  background-color: #2C3042;
  color: #F2F2F2;
  border: 1px solid #2C3042;
  position: relative;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
  text-align: center;
  font-weight: 300;
  padding: 0.8rem 1rem !important;
  font-size: 1rem !important;
}
.myaccount .product-add-to-cart a:hover {
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.myaccount .product-add-to-cart a p {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.3vw, 1.12rem);
}
.myaccount .product-add-to-cart a:hover {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.myaccount .product-add-to-cart a:hover, .myaccount .product-add-to-cart a:active {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
}
.myaccount .product-add-to-cart a:focus {
  background-color: #4D4D4D;
  color: #F2F2F2;
  border: 1px solid #4D4D4D;
  outline: none;
}
@media (min-width: 768px) {
  .myaccount .product-add-to-cart a {
    padding: 0.8rem 6rem;
  }
}

.onsale {
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  margin: 0 0 0 0 !important;
  padding: 10px !important;
  font-size: 12px !important;
  background-color: #929292 !important;
  min-height: 0 !important;
  line-height: 1.3em !important;
  border-radius: 0 !important;
  z-index: 1 !important;
  font-weight: 300 !important;
  letter-spacing: 0.7px !important;
}
@media (min-width: 1440px) {
  .onsale {
    padding: 14px 50px !important;
  }
}

html:lang(es-ES) .onsale--spanish {
  display: block;
}
html:lang(es-ES) .onsale--english {
  display: none;
}

html:lang(en-GB) .onsale--spanish {
  display: none;
}
html:lang(en-GB) .onsale--english {
  display: block;
}

.site-mdm .onsale {
  left: auto !important;
  right: 0 !important;
  padding: 10px !important;
  padding-right: 30px !important;
  background-color: #F2F2F2 !important;
  color: #2C3042 !important;
  position: relative;
}
.site-mdm .onsale::after {
  content: "";
  background-image: url("../../images/icon--arrow-up.svg");
  width: 10px;
  height: 10px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.site-mdm.single-product .onsale {
  left: 0rem !important;
  right: auto !important;
}
.site-mdm #yith-quick-view-content .onsale {
  left: 12.7rem !important;
  right: auto !important;
}

html {
  width: 100%;
  height: 100%;
  overflow-y: visible;
  --scrollbar-width: 0px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 575px) {
  html {
    overflow-y: hidden;
  }
}
html body {
  overflow-x: hidden;
  overflow-y: auto;
  cursor: auto;
  background-color: #F8F8F2;
  height: 100%;
  line-height: 1.3;
  color: #2C3042;
}
html.no-scroll {
  padding-right: var(--scrollbar-width);
}
html.no-scroll body {
  overflow-y: auto;
}
html .FeedGridLayout__grid {
  margin-left: -0.3rem;
  margin-right: -0.3rem;
}
html .FeedGridLayout__cell {
  margin: 0.3rem;
}

li.product:nth-child(n+5) {
  opacity: 0;
}/*# sourceMappingURL=base-mdm.css.map */