* {
  margin: 0;
  padding: 0;
}

body {
  color: var(--base);
  font-weight: var(--base-font-weight);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  background: var(--web-background);
    -webkit-text-size-adjust: none;
}

html {
  scroll-behavior: smooth;
}

input {
  border-radius: 0;
  padding: 0;
  font-weight: var(--base-font-weight);
}

[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type="search"]::-ms-clear {
  display: none;
}

.btn-1 {
  color: var(--btn-font);
  background-color: var(--btn);
  border: 1px solid var(--btn-border);
  cursor: pointer;
  box-sizing: border-box;
}

.btn-2 {
  color: var(--btn-font-hover);
  background-color: var(--btn-hover);
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
}

.tr-2 {
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.tr-3 {
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.tr-4 {
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.tr-5 {
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.bkg {
  position: fixed;
  inset: 0;
  height: 100dvh;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 6;
  opacity: 0;
  display: none;
}

.bkg.openFilter {
  opacity: 1;
  display: block;
  background-color: rgb(0 0 0 / 12%);
}

body.open {
  overflow: hidden;
}

#content {
  width: 100%;
  min-height: 50vh;
  min-width: unset;
  background-color: var(--web-background);
}

#header {
  height: var(--menu-height);
  position: fixed;
  width: 100%;
  overflow: visible;
  z-index: 5;
  background-color: var(--web-background);
  line-height: var(--base-line-height);
  font-size: var(--base-font-size);
  border-bottom: 1px solid var(--secondary);
}

#searchBar {
  height: auto;
  width: var(--web-container);
  margin: auto;
  display: flex;
  background-color: transparent;
  height: 65px;
  align-items: center;
}

.profileIcon img {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  filter: var(--icons-invert);
}

.headerPromo {
  text-align: center;
  line-height: var(--header-promo-height);
  height: var(--header-promo-height);
  overflow: hidden;
}

.headerPromoText {
 
}

#headerDummy {
  position: relative;
  width: 100%;
  height: var(--menu-height);
}

.headerRow {
  width: var(--web-container);
  display: flex;
  margin: 0 auto;
  height: calc(var(--menu-height) - var(--header-promo-height));
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
  position: relative;
}

.headerCol.logo {
    width: fit-content;
    position: relative;
    left: auto;
    transform: none;
    z-index: 1;
    flex: 0 0 auto;
}

.headerCol {
  position: relative;
  height: 100%;
  overflow: visible;
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: space-between;
}

.categoriesContainer {
  display: grid;
  height: 100%;
  width: fit-content;
  justify-content: end;
  grid-auto-flow: column;
  gap: 28px;
  text-transform: uppercase;
}

a.categoryThreeTitle {
  min-width: max-content;
  height: auto;
  width: fit-content;
  position: relative;
}

.headerLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-width: fit-content;
  overflow: visible;
}

.headerLink.offerCategory,
.headerLink.offerCategory:visited,
.headerLink.offerCategory:hover,
.headerLink.offerCategory:focus {
  color: #E10101 !important;
}

.headerLink.offerCategory::before {
  background: #E10101;
}

.searchBarHeader {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  background: var(--web-background);
  border-bottom: 1px solid var(--secondary-2);
}

.searchBarHeader.open {
  top: var(--menu-height);
}

.categoryArrow:after {
  content: "";
  width: 40px;
  background-image: url(../../files/arrow.svg);
  height: 40px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  right: -35px;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}


.categoryArrow:hover:after {
  opacity: 1;
}


.blackBkg80, .blackBkg50 {
  opacity: 0.5;
  background-color: var(--base) !important;
}

.headerMainCol {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  display: flex;
}

.headerCol.desktopElement {
  flex: 1 1 auto;
}

#headerLogoContainer {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

#headerLogoContainer a {
  display: block;
  width: 100%;
}

#headerLogoContainer img {
  display: block;
  width: 85px;
}

#header.openMenu #headerLogoContainer {
  display: none;
}

.rightItemsContainer {
  position: relative;
  height: 20px;
  overflow: visible;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  gap: 14px;
}

.expandedCategory {
  position: fixed;
  top: calc(var(--menu-height) + 5px);
  display: none;
  width: 100%;
  height: auto;
  left: 0px;
  justify-content: space-between;
  background-color: var(--web-background);
  z-index: 3;
  transition: top 0.3s ease-out;
  -moz-transition: top 0.3s ease-out;
  -webkit-transition: top 0.3s ease-out;
  -o-transition: top 0.3s ease-out;
  overflow: hidden;
  padding: 12px 14px 12px 56px;
  box-sizing: border-box;
  min-height: 220px;
}

.expandedCategory a:hover,
.expandedCategory a:focus {
  font-weight: 400;
  text-shadow: 0 0 0 var(--base);
}

.expandedCategory a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 0;
}

.expandedCategory .lineEffectLeft::after,
.expandedCategory .lineEffectCenter:hover::before,
.expandedCategory .lineEffectCenter.headerLink::before,
.expandedCategory .lineEffectCenter::before {
  display: none;
}

.categoryColumn {
  cursor: pointer;
  height: fit-content;
  width: auto;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 150px;
}

.categoryColumn.open img {
    opacity: 1;
}

.columnCatContainer {
  float: left;
  position: relative;
  width: 100%;
}

.categoryTwoTilte {
  display: block;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.categoryColumn .catArrow {
    opacity: 0;
    transition: opacity 0.2s;
    margin-left: 20px;
}

.categoryColumn.open .catArrow {
    opacity: 1;
}

.categoryThreeContainer {
    position: absolute;
    left: calc(100% + 28px);
    z-index: 10;
    top: 34px;
    margin-left: 0;
    padding-left: 48px;
    border-left: 1px solid var(--base);
    box-sizing: border-box;
    display: none;
    height: 100%;
    text-transform: uppercase;
}

.categoryThreeContainer.open {
    display: block;
}

.categoryThree {
    display: grid;
    width: auto;
    gap: 18px 18px;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto);
}

.menuSubcategoriesContainer {
  width: 44%;
  padding-left: 50px;
  padding-top: 34px;
  float: left;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  max-width: 520px;
}

.expandedMedia {
    flex: 0 0 30%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    float: right;
    justify-content: flex-end;
}

.expandedImg {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 1;  
  object-fit: cover;
}

.expandedMedia .expandedImg {
  aspect-ratio: 390 / 207;
  width: min(30vw, 390px);
  height: 319px;
  max-height: none;
  object-fit: cover;
}

.menuSubcategories {
  display: grid;
  grid-template-rows: repeat(var(--cols), auto);
  grid-auto-flow: column;
  align-content: start;
  row-gap: 20px;
  column-gap: 48px;
  width: 100%;
  height: auto;
}

.whatsAppWebContainer {
  width: 63px;
  height: auto;
  right: 30px;
  opacity: 0;
}

.whatsAppWebContainer.open {
  bottom: 40px;
  opacity: 1;
  z-index: 2;
}

.alertMessageLogo {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  width: 150px;
  margin-bottom: 20px;
}

.alertMessageDiv {
  position: relative;
  margin: 0 auto;
  padding-bottom: 40px;
  width: 370px;
  background-color: var(--web-background);
  border: none;
  padding-top: 20px;
}

#alertMessageLogo {
  width: 150px;
}

#cartMessageDiv #cartMessageMessage {
  margin-top: 35px;
  width: 217px;
  margin-bottom: 30px;
}

#cartMessageLunaEventFixedContainer #cartMessageMessage {
  width: 281px;
}

#cartMessageDiv a.alertMessageAceptar {
  background-color: var(--secondary);
  border: 1px solid var(--secondary-2);
  /* color: var(--button-font-color-hover); */
}

#cartMessageDiv a.alertMessageAceptar:hover {
  background-color: var(--secondary);
}

.alertMessageAceptar {
  position: relative;
  background-color: var(--secondary-2);
  border: 1px solid var(--secondary);
  text-align: center;
  line-height: 40px;
  height: 40px;
  font-size: 15px;
  color: var(--button-font-color);
  padding: 0 10px;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  cursor: pointer;
  font-weight: var(--base-font-weight);
}

.alertMessageAceptar:hover {
  background-color: var(--base-aux) !important;
  color: var(--button-font-color-hover);
  opacity: 1;
  border-color: var(--secondary-2);
}

.alertMessageClose {
  right: 10px;
  font-size: 23px;
  color: var(--base);
}

#cartMessageDiv {
  margin-top: 20%;
}

.alertMessageMessage {
  font-size: calc(var(--base-font-size) + 2px);
  line-height: calc(var(--base-line-height) + 2px);
  color: var(--base) !important;
  letter-spacing: 0;
}

#cartMessageButtonsWrapper {
  float: none;
  width: 189px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#cartMessageDiv {
  overflow: hidden;
  width: 380px;
  padding: 0 0 0 0;
  height: fit-content;
  margin-top: 0;
  padding-top: 25px;
  border: none;
  padding-bottom: 62px;
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
}

.alertMessageDiv {
  top: 50%;
  transform: translateY(-50%);
}

.wishListProductsDiv {
  height: 21px;
  cursor: pointer;
  position: relative;
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-start;
}

.heart {
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
  filter: var(--icons-invert);
  right: auto;
  left: 0;
  margin-right: 2px;
}

.wishListQuantity {
  position: static;
  top: 0;
  text-transform: lowercase;
  font-size: 12px;
  line-height: 13px;
  min-width: max-content;
  padding: 0;
  text-align: left;
  white-space: nowrap;
}

.wishListQuantity::before {
  content: "(";
}

.wishListQuantity::after {
  content: ")";
}

.searchButton {
  display: flex;
  position: relative;
  cursor: pointer;
}

.searchButton img {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  filter: var(--icons-invert);
}

.searchSite {
  background: transparent;
  width: 100%;
  color: var(--base);
  height: 45px;
  font-size: var(--body-font-size);
  text-indent: 30px;
}
input.searchSite::placeholder {
  color: var(--base);
}

#searchBar img {
  position: absolute;
  cursor: pointer;
  height: var(--header-icons-height);
  filter: var(--icons-invert);
}

.searchContainer {
  width: 148px;
  height: 18px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.searchContainer.open .searchButton {
  right: 0;
}

#headerCart {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: unset;
  height: 21px;
  width: auto;
  margin-right: 0;
  white-space: nowrap;
}

.openCloseSearch {
  width: 21px;
  height: 21px;
}

.cart {
  height: 16px;
  width: 16px;
  display: block;
  position: relative;
  filter: var(--icons-invert);
  right: 2px;
}

.langaugeAndCurrencyContainer {
    align-items: center;
    display: flex;
    gap: 8px;
}

.cartAmount {
  position: static;
  display: inline-flex;
  gap: 0;
  top: 0;
  text-transform: lowercase;
  font-size: 12px;
  line-height: 13px;
  min-width: max-content;
  padding: 0;
  text-align: left;
  white-space: nowrap;
}

.cartAmount::before {
  content: "(";
}

.cartAmount::after {
  content: ")";
}

.languages {
  position: relative;
  float: left;
}

.languageSelect {
  position: relative;
  float: left;
  width: fit-content;
  cursor: pointer;
  font-size: 15px;
  height: 24px;
  line-height: 25px;
  overflow: hidden;
  z-index: 1;
  margin-left: 0px;
}

.languageSelect.open {
  overflow: visible;
}

.languageRow {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 24px;
  cursor: pointer;
  margin-right: 9px;
}

.languageRow.notSelected {
  background: var(--secondary);
  color: var(--base-aux);
  padding: 0 4px;
  top: 2px;
  margin-right: 0px;
  box-sizing: border-box;
}

.languageRow.notSelected:hover {
  background: var(--base-aux);
  color: var(--secondary);
}

.languageRow.notSelected:hover p {
  color: var(--secondary);
}

.languageSelectArrow {
  position: absolute;
  width: 3.5px;
  height: auto;
  right: 2px;
  top: 8.5px;
  filter: var(--icons-invert);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

#accountOptions,
#accountOptions1,
#accountOptions2 {
  width: 21px;
  display: block;
  height: 21px;
  overflow: visible;
}

#accountOptions .profileIcon,
#accountOptions1 .profileIcon,
#accountOptions2 .profileIcon {
  margin-bottom: 9px;
}

#accountOptions1,
#accountOptions2 {
  float: left;
  height: 21px;
  z-index: 1;
}

#accountOptions:hover,
#accountOptions1:hover,
#accountOptions2:hover {
  height: 21px;
}

#dialogIconTriangle,
#dialogIconTriangle1,
#dialogIconTriangle2 {
  display: none;
  position: absolute;
  top: 13px;
  right: 1px;
  z-index: 1;
  color: var(--secondary);
}

#myProfileUser,
#myProfileUser1 {
  display: none;
  line-height: 28px;
  height: 28px;
  background-color: var(--web-background);
  right: 10px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(
  --secondary-2);
  position: relative;
  border: 1px solid var(
  --secondary);
  width: 120px;
  border-bottom: 0px;
  border-radius: 0;
}

#logoutUser,
#logoutUser1 {
  line-height: 28px;
  height: 28px;
  right: 10px;
  font-size: 12px;
  background-color: var(--web-background);
  border: 1px solid var(
  --secondary);
  color: var(
  --base);
  width: 120px;
  text-transform: uppercase;
  border-radius: 0;
}

.headerBar {
  width: 100%;
  height: 27px;
  text-align: center;
  color: var(--secondary);
  background: var(--base);
  line-height: 27px;
}

#logoutUser2:hover {
  background-color: var(--base-aux);
  color: var(--secondary-2);
}

#myProfileUser:hover,
#myProfileUser1:hover,
#logoutUser:hover,
#logoutUser1:hover {
  background-color: var(--secondary-2);
  color: var(--button-font-color);
}

.profileIcon {
  position: relative;
  width: 21px;
  display: block;
  height: 21px;
  cursor: pointer;
}

.currencySelectContainer {
  position: relative;
  float: left;
  justify-content: space-between;
  font-size: 12px;
  cursor: pointer;
  height: auto;
  color: var(--base);
}

.currencySelectImg {
  display: block;
  position: relative;
  height: calc(var(--header-icons-height) + 1px);
  float: left;
  filter: var(--icons-invert);
}

.selectedOption {
  width: 70%;
}

.currencySelectContainer img.arrowDown {
    position: absolute;
    width: 3.5px;
    height: auto;
    right: 7px;
    top: 6.5px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    filter: var(--icons-invert);
}

.pageCurrencySelect {
  height: 0;
  overflow: hidden;
  top: 45px;
  text-align: left;
  width: 120px;
  right: -10px;
  position: absolute;
}

.pageCurrencySelect.open {
  display: block;
  height: auto;
  background: var(--base-aux);
  font-size: 12px;
  z-index: 1;
}

.pageCurrencySelect.open .currencySelectOption:not(.titleOption):hover {
  background: var(--secondary);
  color: var(--base-aux);
  cursor: pointer;
}

.currencySelectOption {
  padding: 5px 0;
  padding-left: 6px;
}

.currencySelectOption:not(.titleOption) {
  cursor: pointer;
}

.currencySelectOption[is-selected="true"] {
  background: var(--secondary);
  color: var(--base-aux);
}

.currencySelectOption:nth-child(1) {
  padding-left: 5px;
  text-transform: uppercase;
}

.lineEffectCenter:hover::before {
  width: 100%;
  left: 0%;
}

.lineEffectCenter.headerLink::before {
  bottom: 20px;
}

.lineEffectCenter::before {
  content: "";
  background: var(--base);
  height: 1px;
  width: 0%;
  position: absolute;
  left: 50%;
  -webkit-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1), width 045s cubic-bezier(0.4, 0, 1, 1);
  -o-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1), width 0.4s cubic-bezier(0.4, 0, 1, 1);
  transition: left 0.4s cubic-bezier(0.4, 0, 1, 1), width 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.headerIndex#header .lineEffectCenter.headerLink::before {
  bottom: 40px;
  background: var(--white);
}

.expandedCategory.headerIndex {
  top: 105px;
}

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.borderContainer {
  --b: 1px;
  padding: calc(var(--g) + var(--b));
  --_g: #0000 25%, var(--secondary) 0;
  background: conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat, conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%) / var(--_i, var(--b)) 200% no-repeat;
  transition: 0.3s, background-position 0.3s 0.3s;
  cursor: pointer;
}

.borderContainer:hover {
  --_i: 100%;
  -webkit-transition: 0.3s, background-size 0.3s 0.3s;
  -o-transition: 0.3s, background-size 0.3s 0.3s;
  transition: 0.3s, background-size 0.3s 0.3s;
}

.lineEffectLeft::after {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  height: 1px;
  background: var(--base);
  -webkit-transition: width 0.4s;
  -o-transition: width 0.4s;
  transition: width 0.4s;
  bottom: 0px;
}

.lineEffectLeft:hover::after {
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  #content {
    max-width: unset;
    min-width: unset;
  }

  #topHiddenBar {
    min-width: unset;
  }

  #alertMessageDiv {
    margin-top: 0;
    top: 50%;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --menu-height: 98px;
    --header-icons-height:17px;
  }
  .headerCol.logo {
    position: relative;
    left: unset;
    transform: unset;
}
  #header .headerRow {
    position: relative;
  }

  #header .headerCol.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #header .right.mobileElement {
    margin-left: auto;
  }
.menuCatContainer a.categoryOne {
    font-size: var(--button-font-size);
    padding: 16px 5vw;
    /* font-weight: var(--slider-font-weight); */
    box-sizing: border-box;
    min-height: 52px;
}
  .categoryOneWithCategoryTwo.mobileElement {
    font-size: var(--button-font-size);
    padding: 16px 5vw;
    /* font-weight: var(--slider-font-weight); */
    box-sizing: border-box;
    display: flex !important;
    justify-content: space-between;
}
  .categoriesTwoContainer {
    position: absolute;
    top: 0px;
    right: -100%;
    width: 100%;
    background: var(--web-background);
    height: 100%;
    /* padding: 0px 5vw; */
    z-index: 12;
    box-sizing: border-box;
    display: flex;
    transition: right 0.2s;
    flex-direction: column;
}
  .categoriesTwoContainer .volver {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    font-size: var(--body-font-size);
    padding: 12px 5vw;
}
  .categoriesTwo {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    margin-top: 9px;
    overflow-y: auto;
    height: calc(100% - 0px);
    padding-bottom: 20px;
    box-sizing: border-box;
}
  a.categoryTwoContainerTitle {
    font-size: var(--button-font-size);
    padding-bottom: 15px;
    padding-left: 5vw;
    padding-top: 11px;
    font-weight: 600;
}
  .categoryTwoWithCategoryThree {
    padding: 16px 5vw;
    /* font-weight: var(--slider-font-weight); */
    box-sizing: border-box;
    display: flex !important;
    justify-content: space-between;
    font-size: var(--base-font-size);
}
  .categoryOneWithCategoryTwo.mobileElement p {
    width: fit-content;
    /* font-weight: 100; */
}
  .categoryOneWithCategoryTwo.mobileElement img {
    padding-left: 50px;
}
  .categoriesThreeContainer {
    position: absolute;
    top: 0px;
    right: -100%;
    width: 100%;
    background: var(--web-background);
    height: 100%;
    /* padding: 0px 5vw; */
    z-index: 12;
    box-sizing: border-box;
    display: flex;
    transition: right 0.2s;
    flex-direction: column;
}.categoriesTwoContainer .volver {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    font-size: var(--body-font-size);
    padding: 12px 5vw;
}
  .categoriesThree {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    margin-top: 9px;
    overflow-y: auto;
    height: calc(100% - 60px - -6px);
    padding-bottom: 20px;
    box-sizing: border-box;
}
  .categoriesThreeContainer.open {
    right: 0px;
}
  a.categoryThreeContainerTitle {
    font-size: var(--button-font-size);
    padding-bottom: 15px;
    padding-left: 5vw;
    padding-top: 11px;
    font-weight: 600;
}
  a.categoryThree {
    width: 100%;
    font-weight: var(--base-font-weight);
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 5vw;
    box-sizing: border-box;
    display: block;
}
  a.categoryTwoTilte {
    width: 100%;
    font-weight: var(--base-font-weight);
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 5vw;
    box-sizing: border-box;
}
  .categoriesTwoContainer .volver img {
    transform: rotate(180deg);
    width: 5px;
    padding-left: 0px;
}
  .categoriesTwoContainer.open {
    right: 0px;
}
  .categoryOneWithCategoryTwo img {
    filter: var(--icons-filter);
    padding-left: 80px;
}
  .headerMobileMenuIcon span:nth-child(even) {
    left: 8%;
    border-radius: 0 9px 9px 0;
  }
  .currencySelectContainer.mobileElement {
    margin-right: 20px;
}

  /* Burger menu */


label.burgerMenu {
  display: flex !important;
  flex-direction: column;
  width: 19px;
  cursor: pointer;
  height: auto;
  margin-left: 16px;
}

label.burgerMenu span {
  background: var(--base);
  border-radius: 10px;
  height: 1px;
  margin: 2.7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.burgerMenu span:nth-of-type(1) {
  width: 100%;
}

.burgerMenu span:nth-of-type(2) {
  width: 100%;
}

.burgerMenu span:nth-of-type(3) {
  width: 55%;
  margin-right: 0px;
  margin-left: 44%;
}

.burgerMenu.open span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(6px, 5px);
}

.burgerMenu.open span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.burgerMenu.open span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(11px, -11px) rotatez(45deg);
  opacity: 0;
}

/*  */


  .menuCatContainer {
    position: fixed;
    width: 420px;
    height: calc(100dvh - var(--menu-height));
    background: var(
    --web-background);
    z-index: 13;
    top: var(--menu-height);
    right: -50vw;
    transition: right 0.5s;
    display: flex;
    flex-direction: column;
    padding-left: calc(calc(100% - var(--web-container)) / 2);
    padding-top: calc(calc(100% - var(--web-container)) / 1.6);
    padding-right: calc(calc(100% - var(--web-container)) / 1.6);
    /* gap: 40px; */
    box-sizing: border-box;
    border-right: 1px solid var(--secondary);
}

  .menuCatContainer {
    top: 0px;
    z-index: 16;
    width: 100vw;
    height: 100dvh;
    border-right: none;
    right: -100%;
    padding: 0px;
    overflow: hidden;
}
label.closeMenuMobile {
    display: flex;
    flex-direction: column;
    width: 23px;
    cursor: pointer;
    height: auto;
    margin-top: 1px;
}
  .closeMenuMobile span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(6px, 7px);
}
  .closeMenuMobile span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg) translate(-4px, 2px);
}
  .closeMenuMobile span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(11px, -11px) rotatez(45deg);
    opacity: 0;
}
  .menuCatContainer.open {
    right: 0px;
}
label.closeMenuMobile span {
    background: var(--base);
    border-radius: 10px;
    height: 1px;
    margin: 2px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
  .menuCatContainer .topSection.mobileElement {
    border: none;
    padding: 23px 5vw;
    border-bottom: 1px solid var(--base);
    display: flex !important;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 90vw;
    gap: 10px;
}

  .bottomSection {
    position: relative;
    height: calc(100dvh - 98px);
}

  .rightElemenetsMenu {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

  .categoriesMobileContainer {
    height: calc(100% - 54px - 56px);
    overflow-y: auto;
    /* border-bottom: 1px solid var(--base-with-opacity); */
    overflow-x: hidden;
    padding-bottom: 100px;
    position: relative;
    background: var(--web-background);
    margin-top: 11px;
}.langaugeAndCurrencyContainerMobile {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0px;
    gap: 10px;
    left: 0px;
    z-index: 11;
    width: 100%;
    padding-left: 5vw;
    padding-bottom: 23px;
    box-sizing: border-box;
    background-color: var(--web-background);
    padding-top: 20px;
    border-top: 1px solid var(--lighter-base);
}

  .currencySelectContainer {
    position: relative;
    float: left;
    justify-content: space-between;
    font-size: 12px;
    cursor: pointer;
    height: auto;
    margin-right:20px;
    color: var(--base);
}

  .pageCurrencySelect {
    height: 0;
    overflow: hidden;
    top: 45px;
    text-align: left;
    width: 120px;
    right: -10px;
    position: absolute;
}
  .currencySelectOption:nth-child(1) {
    padding-left: 5px;
    text-transform: uppercase;
}
  .currencySelectOption {
    padding: 5px 0;
    padding-left: 6px;
}
  .currencySelectOption[is-selected="true"] {
    background: var(--secondary);
    color: var(--base-aux);
}
  .languageSelect {
    /* margin-left: 6px; */
    /* top: -1px; */
    width: calc(100% - 20px);
    margin-right: 20px;
    height: auto;
    position: relative;
}
  .languageSelect {
    position: relative;
    float: left;
    width: fit-content;
    cursor: pointer;
    font-size: 15px;
    height: 24px;
    /* top: 1px; */
    line-height: 25px;
    overflow: hidden;
    z-index: 1;
    /* display: none; */
    margin-left: 0px;
}
  .languagesContainer {
    position: absolute;
    left: 0px;
    top: -99px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0px;
    width: 100%;
    font-size: var(--body-font-size);
    border: 1px solid var(--lighter-base);
    border-radius: var(--border-radius-small);
    display: none;
    flex-direction: column;
    background: var(--base-aux);
}
  .languageSelect.mobileElement.open .languagesContainer {
    display: flex;
}
  .languageTitle {
    font-size: var(--body-font-size);
}
  .languageRowTitle {
    padding: 5px;
    height: 30px;
    box-sizing: border-box;
}
  .languageRow.selectedLanguage {
    background: var(--secondary);
    color: var(--base-aux);
    height: 30px;
}
  .languageRow.notSelected {
    background: unset;
    color: unset;
    padding: 5px;
    top: unset;
    left: unset;
    height: 30px;
}
.languageRow {margin-right: 6px;box-sizing: border-box;padding: 5px;}

  .alertMessageAceptar:hover {
    background-color: var(--secondary) !important;
    color: white !important;
    border: 1px solid var(--secondary) !important;
  }

  .headerMobileMenuIcon span:nth-child(odd) {
    left: 0;
    border-radius: 13px 0 0 13px;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 10px;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 19px;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2),
  .headerMobileMenuIcon.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(1) {
    /* left: 4px; */
    top: 7px;
  }

  .headerMobileMenuIcon.open span:nth-child(2) {
    /* left: calc(10% - 7px); */
    top: 7px;
  }

  .headerMobileMenuIcon.open span:nth-child(3) {
    /* left: -50%; */
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(5) {
    /* left: 4px; */
    top: 6px;
  }

  .headerMobileMenuIcon.open span:nth-child(6) {
    /* left: calc(10% - 7px); */
    top: 6px;
  }

  .cartMobile {
    position: absolute;
    right: 0;
  }

  .headerMainCol {
    border: none;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }

  #header .right {
    position: relative;
    right: unset;
    width: fit-content;
    display: flex !important;
    align-items: center;
  }

  .headerRow {
    display: flex;
    width: 92%;
    margin-left: 4%;
  }

  #headerLogoContainer img {
    max-width: 155px;
    /* width: 100%; */
    margin: 10px auto;
  }

  #headerCart {
    height: 20px;
    margin-right: 10px;
    margin-top: -10px;
  }
.searchButton {
    margin-right: 7px;
}
  .cart {
    position: relative;
    /* height: 18px; */
  }

  .cartContainer {
    height: 22px;
  }

  #alertMessageDiv {
    margin-top: 0;
    top: 50%;
  }

  .cartAmount {
    float: right;
    line-height: 14px;
    position: absolute;
    right: -8px;
    top: 0;
    font-size: 10px;
  }

  #header .headerRow {
    width: 100%;
    margin-left: 0;
    position: relative;
  }

  #header .headerCol.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #header .right.mobileElement {
    margin-left: auto;
    right: 0;
  }

  #headerPromo {
    width: 100%;
    top: 0;
    z-index: 999;
    height: 24px;
    overflow: hidden;
    position: fixed;
    box-shadow: 0 4px 34px rgba(0, 0, 0, 0.09);
  }

  #headerPromoText {
    font-size: 10px;
    line-height: 23px;
    text-align: center;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0.5px;
  }

  .santanderLogo {
    height: 11px;
    margin-top: 7px;
    margin-left: 4px;
  }

  #headerMobileIcons {
    width: fit-content;
    right: 0;
    display: flex !important;
    align-items: center;
    position: absolute;
    margin-right: 5%;
    margin-top: 0;
    top: 0;
    height: 100px;
  }

  .headerMobileMenuIcon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 73%;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .headerMobileMenuIcon span:nth-child(even) {
    border-radius: 0 0 0 0;
    float: left;
  }

  .headerMobileMenuIcon span:nth-child(odd) {
    right: 0;
    border-radius: 0 0 0 0;
    width: 6px;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
    float: right;
    /* left: 15px; */
    width: 25px;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 8px;
    width: 25px;
    /* left: 15px; */
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 16px;
    /* left: 15px; */
    width: 17px;
    right: 1px;
    left: unset;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2),
  .headerMobileMenuIcon.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -m.searchButton {
    margin-right: 7px;
    }
  }

  .headerMobileMenuIcon.open span:nth-child(1) {
    left: 2px;
    top: 10px;
  }

  .headerMobileMenuIcon.open span:nth-child(2) {
    /* left: 13px; */
    top: 10px;
  }

  .headerMobileMenuIcon.open span:nth-child(3) {
    /* left: -50%; */
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }
  
  .headerMobileMenuIcon.open span:nth-child(5) {
    /* left: 3px; */
    top: 13px;
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(6) {
    /* left: 3.5px; */
    top: 8px;
    opacity: 0;
  }

  #topHiddenBarOptions {
    width: 100%;
  }

  .hiddenBarLogoContainer {
    overflow: hidden;
    position: relative;
    display: flex;
    margin: auto;
    width: 30%;
    height: 85px;
    margin-top: 15px;
  }

  .openMenu #headerLogo2 {
    display: none;
  }

  #headerLogoHiddenBar {
    width: 100%;
  }

  #headerLogo {
    width: 70px;
    height: auto;
    position: relative;
    display: block;
    margin: 5px auto 0;
  }

  .searchMobileContainer {
    width: 100%;
    position: relative;
    margin: 0px auto 0;
    overflow: hidden;
  }

  .mobileMenuItems {
    overflow: auto;
    box-sizing: border-box;
    height: calc(94dvh - 106px);
  }

  #rightHeaderOptions {
    position: relative;
    float: right;
    width: 85px;
    right: 0;
  }

  .topHeaderMobileIcons {
    position: absolute;
    right: 4%;
    top: 23px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
  }

  .topHeaderMobileIcons .left {
    display: flex;
    align-items: flex-start;
  }

  .topHeaderMobileIcons .right {
    display: flex;
    height: auto;
    margin-right: calc(5% + 10px);
  }

  .languageSelect {
    /* margin-left: 6px; */
    /* top: -1px; */
    /* margin-left: 6px; */
    /* top: -1px; */
    width: calc(100% - 20px);
    margin-right: 20px;
    height: auto;
    position: relative;
  }

  .userMobile {
    height: auto;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    line-height: 23px;
    margin-left: 30px;
  }

  .userMobile span {
    position: relative;
    font-size: 20px;
    margin-right: 10px;
  }

  .userMobile a:first-of-type {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  #headerProfile {
    top: -12px;
    height: 21px;
    width: 21px;
  }

  #dialogIconTriangle {
    display: none !important;
  }

  #logoutUser {
    margin-left: -110px;
  }

  .notLogged {
    display: none;
  }

  .show {
    display: block !important;
  }

  .currencyArrow {
    filter: unset;
    width: 35px;
    height: 35px;
    position: absolute;
    top: -6px;
    right: -8px;
  }

  .languageSelectArrow {
    filter: unset;
    width: 5px;
    height: auto;
    top: 6.5px;
    right: 14px;
  }

  .headerBar {
    font-size: calc(var(--base-font-size) - 2px);
  }

  #decoHeader {
    display: none;
  }

  #headerMobileProfile {
    position: relative;
    float: right;
    height: 25px;
    margin-top: 5px;
    cursor: pointer;
    margin-right: 5px;
    display: none;
  }

  .rightHeaderHidden {
    position: absolute;
    top: 0;
    right: 5%;
  }

  #headerCartMobile {
    position: relative;
    float: left;
    top: 2px;
    display: block;
  }

  #headerCartMobile svg {
    margin-right: 8px;
    height: 23px;
  }

  #headerCartMobile path {
    stroke: #000;
  }

  #headerMobileMenu {
    position: fixed;
    height: calc(100dvh - 27px);
    width: 100%;
    left: -100%;
    background-color: var(--base-aux);
    z-index: 5;
    overflow: hidden;
    top: 27px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #headerMobileMenu.open {
    left: 0;
    z-index: 5;
  }

  #headerMobileLogo {
    margin: auto;
    position: absolute;
    float: left;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    top: 0;
    left: calc(50% - 50px);
  }

  .headerMobileMenuIcon {
    top: 53px;
    width: 28px;
    height: 23px;
    position: fixed;
    z-index: 8;
    right: 4%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    -moz-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    -o-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    cursor: pointer;
  }

  .headerIndex.headerMobileMenuIcon span {
    background: var(--white);
  }

  .open.headerIndex.headerMobileMenuIcon span {
    background: var(--base);
  }

  .headerMobileMenuIcon span {
    display: block;
    position: absolute;
    height: 1.7px;
    width: 21px;
    background: var(--base);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  #headerMobileLogo a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: fit-content;
    margin: auto;
    display: block;
    overflow: visible;
  }

  .mobileMenuItem {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: table;
    height: auto;
    color: var(--base);
    border-bottom: 1px solid #00000030;
  }

  .mobileMenuItem:first-of-type {
    border-top: none;
  }

  .wishListProductsDiv .heart {
    height: 16px;
  }

  .mobileMenuSubcategory:first-of-type {
    padding-top: 10px;
  }

  .open > a.mobileMenuLink {
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .menuMobileLine {
    width: 100%;
    margin: 1em auto;
  }

  .mobileMenuItem:last-child {
    margin-bottom: 50px;
  }

  .user {
    width: 20px;
    margin-left: 0;
    margin-bottom: 0;
    height: 20px;
    float: right;
    position: relative;
    display: block;
    margin-right: 20px;
    z-index: 94;
  }

  .highlightTitle {
    font-size: 70px;
  }

  .mobileMenuLink {
    position: relative;
    float: left;
    width: calc(100% - 91px);
    font-size: var(--button-font-size);
    letter-spacing: var(--letter-spacing);
    height: 60px;
    line-height: 60px;
    color: var(--base);
    padding-left: 30px;
    word-break: break-all;
    overflow: hidden;
  }

  .mobileMenuSubcategory:last-of-type {
    padding-bottom: 10px;
  }

  .mobileMenuLink:not(.mobileMenuSubcategoryText) {
    text-transform: unset;
  }

  .mobileMenuSeeMore {
    position: relative;
    float: right;
    margin-right: 22px;
    line-height: 60px;
    width: 15px;
    font-size: 17px;
    text-align: center;
    font-weight: var(--secondary-font-weight);
    color: var(--base);
  }

  .mobileMenuSubcategories {
    position: relative;
    float: left;
    width: calc(100% - 0px);
    height: 0;
    /* padding-left: 20px; */
    overflow: hidden;
    background-color: var(--base-aux);
  }

  .mobileMenuLink.mobileMenuSubcategoryText {
    line-height: 50px;
    height: 50px;
    font-weight: var(--base-font-weight);
    text-transform: initial;
    font-size: var(--base-font-size);
  }

  .mobileMenuSubcategory {
    position: relative;
    width: 100%;
    height: auto;
    text-transform: capitalize;
    height: auto;
    border-bottom: none;
    overflow: hidden;
  }

  .mobileMenuSubcategory.open {
    border-bottom: 0;
  }

  .mobileMenuCategoryLevelThree {
    border-bottom: none;
  }

  #mobileSearchBar {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--base);
    border-bottom: 1px solid #00000030;
    border-top: 1px solid #00000030;
    margin: auto;
    display: flex;
    align-items: center;
  }

  #mobileSearchImg {
    position: absolute;
    float: left;
    height: 21px;
    width: 21px;
    z-index: 2;
    margin-right: 10px;
    left: calc(5% + 2px);
  }

  #mobileSearch {
    position: relative;
    float: left;
    width: calc(100% - 22px);
    height: 60px;
    padding: 0;
    border-radius: 0;
    text-indent: 60px;
    font-size: var(--base-font-size);
    background-color: transparent;
    color: var(--base);
  }

  #mobileSearch::-webkit-input-placeholder {
    color: var(--base);
  }

  #mobileSearch:-moz-placeholder {
    color: var(--base);
  }

  #mobileSearch::-moz-placeholder {
    color: var(--base);
  }

  #mobileSearch:-ms-input-placeholder {
    color: var(--base);
  }

  #mobileSearch::-ms-input-placeholder {
    color: var(--base);
  }

  .mobileMenuCategoryArrow {
    position: relative;
    float: right;
    height: 10px;
    top: 0;
    right: 5px;
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
  }

  .mobileMenuCategoryArrow.open {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .menuCartMobile {
    margin-right: 8px;
    width: auto;
    position: relative;
    margin-left: 6px;
    display: block;
  }

  .mobilePersonalPages {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  #cartMessageDiv {
    width: 90%;
  }

  .cartMessageAceptar {
    width: calc(100% - 4px);
    margin-left: 0;
    margin-right: 0;
    line-height: 38px;
    height: 38px;
  }

  #forMeBtn {
    margin-right: 7px;
  }

  #forGiftBtn {
    margin-right: 7px;
  }

  .wishListProductsDiv {
    position: relative;
    display: block;
    height: 18px;
    margin-right: 10px;
    overflow: visible;
  }

  .wishListQuantity {
    position: absolute;
    right: -8px;
    top: 0;
    line-height: 14px;
    font-size: 10px;
  }

  .customMobile {
    margin-top: 12px;
    margin-bottom: 7px;
  }

  #content {
    min-height: calc(65vh - 60px);
    height: auto;
  }

  #cartMessageMessage {
    margin-bottom: 15px;
  }

  .whatsAppWebContainer {
    width: 56px;
    z-index: 3;
    right: 10px;
  }

  .whatsAppWebContainer.open {
    bottom: 10px;
  }

  .profileImgMobile {
    /* width: 23px; */
    /* height: 23px; */
    position: relative;
    padding-right: 10px;
  }

  .userAccount {
    font-size: 14px;
    margin-left: 6px;
    color: #000;
    display: none;
  }

  .logoutMobile {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #cartMessageDiv #cartMessageMessage {
    margin-top: 40px;
  }

  .mobileMenuCategoryLevelThreeText {
    padding-left: 40px;
    width: calc(80% - 40px);
    display: block;
    height: auto;
    font-size: 14px;
  }

  .headerScrolled .headerMobileMenuIcon {
    margin-top: 26px;
  }

  .mediaContainer {
    padding-left: 35px;
    flex-wrap: wrap;
    width: calc(100% - 35px);
    bottom: 0;
    display: none;
  }

  .mediaContainer p {
    width: 100%;
    margin-bottom: 20px;
  }

  .mediaContainer a:first-of-type {
    margin-left: 0;
  }

  .rightTopItems {
    width: 380px;
    float: right;
    height: 30px;
    margin-top: 25px;
    color: #000;
    margin-right: 3%;
    display: none !important;
  }

  #topHiddenBar .heart {
    margin-right: 8px;
    height: 21px;
  }

  #topHiddenBar .heart svg {
    height: 20px;
    width: 24px;
  }

  #header .wishListProductsDiv,
  #header #headerCart,
  #header .menuCartMobile,
  #headerMobileMenu .wishListProductsDiv,
  #headerMobileMenu .menuCartMobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: auto;
    height: 18px;
    margin-right: 0;
    white-space: nowrap;
  }

  #header .wishListQuantity,
  #header .cartAmount,
  #headerMobileMenu .wishListQuantity,
  #headerMobileMenu .cartAmount {
    position: static;
    float: none;
    min-width: max-content;
    padding: 0;
    font-size: 11px;
    line-height: 13px;
    text-align: left;
    white-space: nowrap;
  }

  #headerMobileMenu .topHeaderMobileIcons a.menuCartMobile {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: auto !important;
    gap: 2px;
  }

  #headerMobileMenu .topHeaderMobileIcons a.menuCartMobile .cartAmount {
    position: static !important;
    font-size: 12px;
    line-height: var(--base-line-height);
    margin: 0;
  }

  #headerMobileMenu .topHeaderMobileIcons a.menuCartMobile .cart {
    right: 0 !important;
    height: 18px;
  }

  #headerMobileMenu .topHeaderMobileIcons .wishListQuantity {
    font-size: 12px;
    line-height: var(--base-line-height);
  }

  #topHiddenBar.shownBar {
    top: 0;
    min-width: unset;
    height: 60px;
  }

  .headerMobileMenuIconHiddenBar {
    margin-left: calc(3% - 7px);
    margin-top: 22px;
  }

  .currencySelectContainer::before {
    background-size: 24px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(0%) hue-rotate(43deg) brightness(88%) contrast(105%);
  }

  .pageCurrencySelect.open {
    left: 0px;
    top: -100px;
    width: 100%;
    border: 1px solid var(--lighter-base);
    z-index: 2;
  }

  .selectedOption {
    position: relative;
    left: 4px;
  }

  #header.openMenu #headerMobileIcons {
    display: none !important;
  }

  .headerLogo {
    width: 100px;
  }

  #headerLogoContainer a {
    width: fit-content;
  }

  #headerLogoContainer {
    overflow: hidden;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }

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

@media screen and (min-width: 415px) and (max-width: 768px) {
  #headerPromoText {
    font-size: 10px;
    line-height: 23px;
    text-align: center;
    line-height: 35px;
    letter-spacing: 0.5px;
  }

  .santanderLogo {
    height: 11px;
    margin-top: 7px;
    margin-left: 4px;
  }

  a.mobileMenuLink.mobileMenuSubcategoryText:hover {
    color: #fff;
  }

  #headerMobileProfile {
    height: 42px;
  }

  #cartMessageMessage {
    font-size: 19px;
  }

  .wishListProductsDiv .heart .svgHeart {
    width: 28px;
    height: 28px;
  }

  #headerMobileMenu {
    height: 100%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .menuCatContainer {
    background: #fff;
    color: #000;
  }

  .menuCatContainer .topSection.mobileElement {
    width: 100%;
    height: 43px;
    min-height: 43px;
    padding: 0 18px;
    border-bottom: 1px solid #bfbfbf;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  label.closeMenuMobile {
    width: 9px;
    height: 9px;
    margin: 0;
    position: relative;
    flex: 0 0 9px;
  }

  label.closeMenuMobile span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 10px;
    height: 1px;
    margin: 0;
    background: #000;
    border-radius: 0;
  }

  .closeMenuMobile span:nth-of-type(1) {
    transform: rotate(45deg);
  }

  .closeMenuMobile span:nth-of-type(2) {
    transform: rotate(-45deg);
  }

  .closeMenuMobile span:nth-of-type(3) {
    display: none;
  }

  .rightElemenetsMenu {
    width: calc(100% - 18px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .rightElemenetsMenu .userMobile {
    margin: 0 auto 0 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    line-height: 1;
    color: #000;
  }

  .rightElemenetsMenu .userMobile a:first-of-type,
  .rightElemenetsMenu .userMobile #logoutMobile {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    color: #000;
  }

  .profileImgMobile {
    width: 10px;
    height: 10px;
    margin: 0;
    filter: none;
  }

  .rightElemenetsMenu .wishListProductsDiv,
  .rightElemenetsMenu .menuCartMobile {
    height: 14px;
    display: flex !important;
    align-items: center;
    gap: 2px;
    margin: 0 0 0 6px;
    color: #000;
  }

  .rightElemenetsMenu .heart,
  .rightElemenetsMenu .cart {
    height: 11px;
    margin: 0;
    right: auto;
    filter: none;
  }

  .rightElemenetsMenu .wishListQuantity,
  .rightElemenetsMenu .cartAmount {
    position: static !important;
    font-size: 10px;
    line-height: 10px;
    color: #000;
    margin: 0;
  }

  .bottomSection {
    height: calc(100dvh - 43px);
    background: #fff;
  }

  .searchMobileContainer {
    width: 100%;
    margin: 0;
    background: #fff;
  }

  #mobileSearchBar {
    height: 37px;
    border-top: none;
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    background: #fff;
  }

  #mobileSearchImg {
    width: 13px;
    height: 13px;
    left: 19px;
    margin: 0;
    filter: none;
  }

  #mobileSearch {
    width: 100%;
    height: 37px;
    text-indent: 39px;
    font-size: 10px;
    line-height: 37px;
    color: #000;
  }

  #mobileSearch::placeholder {
    color: #000;
    opacity: 1;
  }

  .categoriesMobileContainer {
    height: calc(100dvh - 80px);
    margin: 0;
    padding: 0 0 28px;
    background: #fff;
    overflow-y: auto;
  }

  .menuCatContainer a.categoryOne,
  .categoryOneWithCategoryTwo.mobileElement {
    min-height: 37px;
    height: auto;
    padding: 0 19px;
    border-bottom: 1px solid #d0d0d0;
    box-sizing: border-box;
    color: #000;
    background: #fff;
    font-size: 10px;
    line-height: 37px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 400;
  }

  .categoryOneWithCategoryTwo.mobileElement {
    display: block !important;
    position: relative;
  }

  .categoryOneWithCategoryTwo.mobileElement > a {
    display: block;
    width: calc(100% - 30px);
    color: inherit;
    line-height: 37px;
  }

  .categoryOneWithCategoryTwo.mobileElement > img {
    position: absolute;
    top: 0;
    right: 13px;
    width: 32px;
    height: 37px;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
  }

  .categoryOneWithCategoryTwo.mobileElement::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 19px;
    font-size: 12px;
    line-height: 37px;
    color: #000;
  }

  .categoryOneWithCategoryTwo.mobileElement.open::after {
    content: "-";
  }

  .categoryOneWithCategoryTwo.offerCategory > a,
  .menuCatContainer a.categoryOne.offerCategory {
    color: #e10101 !important;
  }

  .categoriesTwoContainer {
    position: static;
    width: calc(100% + 38px);
    height: auto;
    margin: 0 -19px;
    background: #f4f4f4;
    display: none;
    overflow: hidden;
    transition: none;
  }

  .categoriesTwoContainer.open {
    display: block;
    right: auto;
  }

  .categoriesTwoContainer .volver,
  .categoriesThreeContainer,
  .categoryTwoWithCategoryThree > img {
    display: none !important;
  }

  .categoriesTwo {
    height: auto;
    margin: 0;
    padding: 12px 0 14px;
    background: #f4f4f4;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  a.categoryTwoContainerTitle,
  a.categoryTwoTilte,
  .categoryTwoWithCategoryThree {
    width: 100%;
    min-height: 25px;
    padding: 0 29px;
    box-sizing: border-box;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    background: #f4f4f4;
    font-size: 10px;
    line-height: 25px;
    text-transform: uppercase;
    font-weight: 400;
  }

  .categoryTwoWithCategoryThree a {
    color: #000;
    font-size: 10px;
    line-height: 25px;
    text-transform: uppercase;
  }

  .categoryTwoWithCategoryThree:nth-of-type(2) a {
    font-weight: 700;
  }

  .langaugeAndCurrencyContainerMobile {
    display: none;
  }
}

@media screen and (min-width: 1100px) {
  .btn-1:hover {
    color: var(--btn-font-hover);
    background-color: var(--btn-hover);
    border: 1px solid var(--btn-border-hover);
  }

  .btn-2:hover {
    color: var(--secondary) !important;
    background-color: transparent;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --menu-height: 98px;
  }

  #header .headerRow {
    padding: 0 5vw;
  }

  #header .right.mobileElement {
    min-width: 44px;
    right: 0;
  }

  #header .right.mobileElement .menuCartMobile {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    width: auto;
    height: 34px;
    margin-right: 0;
    padding-right: 0;
  }

  #header .right.mobileElement .menuCartMobile .cart {
    width: 22px;
    height: 22px;
  }

  #header .right.mobileElement .menuCartMobile .cartAmount {
    position: static;
    float: none;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    color: var(--base);
  }

  .headerMobileMenuIcon {
    display: block !important;
    position: fixed;
    top: calc(var(--header-promo-height) + 34px);
    left: 5vw;
    width: 20px;
    height: 15px;
    z-index: 18;
    cursor: pointer;
  }

  .headerMobileMenuIcon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 25px;
    background: var(--base);
    opacity: 1;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 8px;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 16px;
    width: 17px;
    right: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(6) {
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2),
  .headerMobileMenuIcon.open span:nth-child(5) {
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(2) {
    top: 10px;
  }

  .headerMobileMenuIcon.open span:nth-child(3),
  .headerMobileMenuIcon.open span:nth-child(4),
  .headerMobileMenuIcon.open span:nth-child(5),
  .headerMobileMenuIcon.open span:nth-child(6) {
    opacity: 0;
  }

  #headerMobileMenu {
    display: block !important;
    position: fixed;
    top: var(--menu-height);
    left: -100%;
    width: 100%;
    height: calc(100dvh - var(--menu-height));
    z-index: 17;
    overflow: hidden;
    background-color: var(--web-background);
    transition: left 0.3s ease-in-out;
  }

  #headerMobileMenu.open {
    left: 0;
  }

  #headerMobileMenu .topHeaderMobileIcons {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: 100%;
    min-height: 58px;
    padding: 17px 5vw;
    box-sizing: border-box;
    border-bottom: 1px solid var(--lighter-base);
  }

  #headerMobileMenu .userMobile {
    margin-right: auto;
    font-size: 13px;
    line-height: 20px;
  }

  #headerMobileMenu .wishListProductsDiv,
  #headerMobileMenu .menuCartMobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: auto;
    height: 24px;
    margin: 0;
    position: relative;
  }

  #headerMobileMenu .heart,
  #headerMobileMenu .cart {
    width: 19px;
    height: 19px;
  }

  #headerMobileMenu .wishListQuantity,
  #headerMobileMenu .cartAmount {
    position: static !important;
    float: none;
    min-width: auto;
    font-size: 12px;
    line-height: 1;
    padding: 0;
    white-space: nowrap;
  }

  #headerMobileMenu .searchMobileContainer {
    width: 100%;
    padding: 18px 5vw 10px;
    margin: 0;
    box-sizing: border-box;
    overflow: visible;
  }

  #headerMobileMenu #mobileSearchBar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid var(--lighter-base);
    box-sizing: border-box;
  }

  #headerMobileMenu #mobileSearchImg {
    width: 16px;
    height: 16px;
    margin-left: 13px;
    filter: var(--icons-invert);
  }

  #headerMobileMenu #mobileSearch {
    width: calc(100% - 45px);
    height: 100%;
    padding: 0 12px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--base);
    font-size: 14px;
  }

  .mobileMenuItems {
    width: 100%;
    height: calc(100dvh - var(--menu-height) - 126px);
    overflow: auto;
    box-sizing: border-box;
    padding-bottom: 80px;
  }

  .mobileMenuItem {
    position: relative;
    display: table;
    width: 100%;
    height: auto;
    margin: 0;
    color: var(--base);
    border-bottom: 1px solid var(--lighter-base);
  }

  .mobileMenuLink {
    position: relative;
    float: left;
    width: calc(100% - 78px);
    height: 58px;
    padding-left: 5vw;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--base);
    font-size: 15px;
    line-height: 58px;
    letter-spacing: 0;
    text-transform: uppercase;
    word-break: normal;
  }

  .mobileMenuItem.offerCategory > .mobileMenuLink {
    color: var(--secondary-2);
  }

  .mobileMenuSeeMore {
    position: relative;
    float: right;
    width: 44px;
    height: 58px;
    margin-right: 5vw;
    color: var(--base);
    font-size: 22px;
    line-height: 58px;
    text-align: center;
    cursor: pointer;
  }

  .mobileMenuSubcategories {
    position: relative;
    float: left;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #f4f4f4;
  }

  .mobileMenuSubcategory {
    position: relative;
    width: 100%;
    height: auto;
  }

  .mobileMenuLink.mobileMenuSubcategoryText {
    width: 100%;
    height: 44px;
    padding-left: calc(5vw + 18px);
    color: var(--base);
    font-size: 13px;
    line-height: 44px;
    font-weight: var(--base-font-weight);
    text-transform: uppercase;
  }

  .mobileMenuSubcategory:first-of-type {
    padding-top: 8px;
  }

  .mobileMenuSubcategory:last-of-type {
    padding-bottom: 8px;
  }

  .open > a.mobileMenuLink {
    text-decoration: none;
  }

}

@media screen and (max-width: 768px) {
  #headerMobileMenu {
    top: var(--header-promo-height);
    left: -100%;
    width: 100vw;
    height: calc(100dvh - var(--header-promo-height));
    background: #efefef;
    z-index: 30;
    overflow: hidden;
    transition: left 0.28s ease-in-out;
  }

  #headerMobileMenu.open {
    left: 0;
  }

  .headerMobileMenuIcon {
    top: calc(var(--header-promo-height) + 17px);
    left: 20px;
    width: 14px;
    height: 14px;
    z-index: 31;
  }

  .headerMobileMenuIcon span {
    height: 1px;
    width: 19px;
    background: var(--base);
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 6px;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 12px;
    width: 14px;
    right: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(2) {
    top: 6px;
  }

  .headerMobileMenuIcon.open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(3),
  .headerMobileMenuIcon.open span:nth-child(4),
  .headerMobileMenuIcon.open span:nth-child(5),
  .headerMobileMenuIcon.open span:nth-child(6) {
    opacity: 0;
  }

  #headerMobileMenu .topHeaderMobileIcons {
    min-height: 37px;
    height: 37px;
    padding: 0 18px 0 37px;
    gap: 9px;
    background: var(--web-background);
    border-bottom: 1px solid #cfcfcf;
  }

  #headerMobileMenu .userMobile {
    margin-right: auto;
    height: 37px;
    font-size: 9px;
    line-height: 37px;
    text-transform: none;
  }

  #headerMobileMenu .userMobile a:first-of-type,
  #headerMobileMenu .userMobile {
    display: flex;
    align-items: center;
  }

  #headerMobileMenu .profileImgMobile {
    width: 11px;
    height: 11px;
    padding-right: 4px;
  }

  #headerMobileMenu .wishListProductsDiv,
  #headerMobileMenu .menuCartMobile {
    height: 37px;
    gap: 2px;
  }

  #headerMobileMenu .heart,
  #headerMobileMenu .cart {
    width: 12px;
    height: 12px;
  }

  #headerMobileMenu .wishListQuantity,
  #headerMobileMenu .cartAmount {
    font-size: 9px;
    line-height: 12px;
  }

  #headerMobileMenu .searchMobileContainer {
    padding: 0;
    background: var(--web-background);
    border-bottom: 1px solid #cfcfcf;
  }

  #headerMobileMenu #mobileSearchBar {
    height: 43px;
    border: 0;
  }

  #headerMobileMenu #mobileSearchImg {
    width: 12px;
    height: 12px;
    margin-left: 21px;
  }

  #headerMobileMenu #mobileSearch {
    width: calc(100% - 43px);
    padding: 0 9px;
    font-size: 10px;
  }

  .mobileMenuItems {
    height: calc(100dvh - var(--header-promo-height) - 80px);
    padding-bottom: 18px;
    background: #efefef;
  }

  .mobileMenuItem {
    display: table;
    background: var(--web-background);
    border-bottom: 1px solid #cfcfcf;
  }

  .mobileMenuLink {
    width: calc(100% - 44px);
    height: 39px;
    padding-left: 21px;
    font-size: 10px;
    line-height: 39px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .mobileMenuSeeMore {
    width: 24px;
    height: 39px;
    margin-right: 18px;
    font-size: 12px;
    line-height: 39px;
    font-weight: 400;
  }

  .mobileMenuSubcategories {
    background: #f7f7f7;
  }

  .mobileMenuLink.mobileMenuSubcategoryText {
    height: 21px;
    padding-left: 30px;
    font-size: 10px;
    line-height: 21px;
    text-transform: uppercase;
  }

  .mobileMenuSubcategory:first-of-type {
    padding-top: 16px;
  }

  .mobileMenuSubcategory:last-of-type {
    padding-bottom: 17px;
  }

  .mobileMenuItem.offerCategory > .mobileMenuLink {
    color: #e10101;
  }

  #header .right.mobileElement {
    min-width: 39px;
    padding-right: 14px;
    box-sizing: border-box;
  }

  #header .right.mobileElement .menuCartMobile {
    height: 32px;
    gap: 2px;
  }

  #header .right.mobileElement .menuCartMobile .cart {
    width: 18px;
    height: 18px;
  }

  #header .right.mobileElement .menuCartMobile .cartAmount {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .headerMobileMenuIcon span:nth-child(even) {
    left: 8%;
    border-radius: 0 9px 9px 0;
  }

  .headerMobileMenuIcon span:nth-child(odd) {
    left: 0;
    border-radius: 13px 0 0 13px;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 10px;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 19px;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2),
  .headerMobileMenuIcon.open span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(1) {
    left: 2px;
    top: 10px;
  }

  .headerMobileMenuIcon.open span:nth-child(2) {
    top: 10px;
  }

  .headerMobileMenuIcon.open span:nth-child(3) {
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(4) {
    left: 100%;
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(5) {
    top: 13px;
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(6) {
    top: 8px;
    opacity: 0;
  }

  #header .right {
    position: absolute;
    right: 0px;
    display: flex !important;
    align-items: center;
  }

  .headerRow {
    display: block;
  }

  #headerLogoContainer img {
    max-width: 155px;
    width: 100%;
    margin: 10px auto;
  }

  .cart {
    display: inline-block;
    position: relative;
    height: 18px;
    vertical-align: middle;
    right: 0;
  }

  .cartAmount {
    position: static;
    float: none;
    line-height: 14px;
    font-size: 10px;
  }

  .headerMobileMenuIcon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 21px;
    background: var(--base);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .headerMobileMenuIcon span:nth-child(even) {
    border-radius: 0 0 0 0;
    float: left;
  }

  .headerMobileMenuIcon span:nth-child(odd) {
    right: 0;
    border-radius: 0 0 0 0;
    width: 6px;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
    float: right;
    width: 25px;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 8px;
    width: 25px;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 16px;
    width: 25px;
  }

  .searchMobileContainer {
    width: 100%;
    position: relative;
    margin: 70px auto 0;
    overflow: hidden;
  }

  .mobileMenuItems {
    overflow: auto;
    box-sizing: border-box;
    height: calc(94dvh - 206px);
  }

  .topHeaderMobileIcons {
    position: absolute;
    right: calc((100% - var(--web-container)) / 2);
    top: 23px;
    display: flex;
    align-items: center;
  }

  .userMobile {
    height: auto;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    line-height: 23px;
  }

  .userMobile span {
    position: relative;
    font-size: 10px;
    margin-right: 5px;
  }

  .userMobile a:first-of-type {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  #headerMobileMenu {
    position: fixed;
    height: calc(100dvh - 27px);
    width: 100%;
    left: -100%;
    background-color: var(--base-aux);
    z-index: 5;
    overflow: hidden;
    top: 28px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #headerMobileMenu.open {
    left: 0;
    z-index: 5;
  }

  .headerMobileMenuIcon {
    top: 51.5px;
    width: 28px;
    height: 23px;
    position: fixed;
    z-index: 6;
    left: calc((100% - var(--web-container)) / 2);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    -moz-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    -o-transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    transition: margin-top 0.3s ease-in-out, left 0.3s ease-in-out;
    cursor: pointer;
  }

  .mobileMenuItem {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: table;
    height: auto;
    color: var(--base);
    border-bottom: 1px solid var(--base);
  }

  .mobileMenuItem:first-of-type {
    border-top: none;
  }

  .wishListProductsDiv .heart {
    height: 14px;
  }

  .mobileMenuSubcategory:first-of-type {
    padding-top: 10px;
  }

  .open > a.mobileMenuLink {
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .mobileMenuItem:last-child {
    margin-bottom: 50px;
  }

  .mobileMenuLink {
    position: relative;
    float: left;
    width: calc(100% - 91px);
    font-size: var(--button-font-size);
    letter-spacing: var(--letter-spacing);
    height: 60px;
    line-height: 60px;
    color: var(--base);
    padding-left: 30px;
    word-break: break-all;
    overflow: hidden;
  }

  .mobileMenuSubcategory:last-of-type {
    padding-bottom: 10px;
  }

  .mobileMenuLink:not(.mobileMenuSubcategoryText) {
    text-transform: unset;
  }

  .mobileMenuSeeMore {
    position: relative;
    float: right;
    margin-right: 22px;
    line-height: 60px;
    width: 15px;
    font-size: 17px;
    text-align: center;
    font-weight: var(--secondary-font-weight);
    color: var(--base);
  }

  .mobileMenuSubcategories {
    position: relative;
    float: left;
    width: calc(100% - 0px);
    height: 0;
    overflow: hidden;
    background-color: var(--base-aux);
  }

  .mobileMenuLink.mobileMenuSubcategoryText {
    line-height: 50px;
    height: 50px;
    font-weight: var(--base-font-weight);
    text-transform: initial;
    font-size: var(--base-font-size);
  }

  .mobileMenuSubcategory {
    position: relative;
    width: 100%;
    height: auto;
    text-transform: capitalize;
    border-bottom: none;
    overflow: hidden;
    background-color: #fff;
  }

  #mobileSearchBar {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--base);
    border-bottom: 1px solid var(--lines-border-color);
    border-top: 1px solid var(--lines-border-color);
    margin: auto;
    display: flex;
    align-items: center;
    border-color: var(--base);
  }

  #mobileSearchImg {
    position: absolute;
    float: left;
    height: 16px;
    width: 16px;
    z-index: 2;
    left: calc(5% + 2px);
  }

  #mobileSearch {
    position: relative;
    float: left;
    width: calc(100% - 22px);
    height: 60px;
    padding: 0;
    border-radius: 0;
    text-indent: 50px;
    font-size: var(--base-font-size);
    background-color: transparent;
    color: var(--base);
  }

  .menuCartMobile {
    width: auto;
    position: relative;
    margin-left: 6px;
    display: block;
  }

  .wishListProductsDiv {
    position: relative;
    display: block;
    height: 18px;
    margin-right: 10px;
    margin-left: 10px;
    overflow: visible;
  }

  .wishListQuantity {
    position: absolute;
    right: -3px;
    top: 0;
    line-height: 14px;
    font-size: 10px;
  }

  .profileImgMobile {
    position: relative;
    padding-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --menu-height: 84px;
    --header-promo-height: 29px;
  }

  #header {
    height: var(--menu-height);
  }

  #headerDummy {
    height: var(--menu-height);
  }

  #header .headerRow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(var(--menu-height) - var(--header-promo-height));
    margin: 0;
    padding: 0 18px;
    box-sizing: border-box;
  }

  #header .headerCol {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #headerLogoContainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #headerLogoContainer a {
    width: auto;
    display: flex;
    align-items: center;
  }

  #headerLogoContainer img {
    display: block;
    width: auto;
    max-width: 122px;
    max-height: 34px;
    margin: 0 auto;
  }

  #header .right.mobileElement {
    position: absolute;
    right: 18px;
    top: 0;
    height: 100%;
    min-width: 42px;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
  }

  #header .right.mobileElement .menuCartMobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 32px;
    margin: 0;
    gap: 3px;
  }

  #header .right.mobileElement .menuCartMobile .cart {
    width: 18px;
    height: 18px;
  }

  #header .right.mobileElement .menuCartMobile .cartAmount {
    position: static;
    font-size: 11px;
    line-height: 16px;
  }

  .headerMobileMenuIcon {
    display: block !important;
    position: fixed;
    top: calc(var(--header-promo-height) + 29px);
    left: 18px;
    width: 15px;
    height: 15px;
    z-index: 31;
  }

  .headerMobileMenuIcon span {
    position: absolute;
    display: block;
    height: 1px;
    width: 15px;
    background: var(--base);
    border-radius: 0;
    opacity: 1;
    transition: 0.25s ease-in-out;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0;
    left: 0;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 7px;
    left: 0;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 14px;
    left: 0;
    width: 11px;
  }

  .headerMobileMenuIcon.open {
    width: 15px;
    height: 15px;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(2) {
    top: 7px;
    left: 0;
    width: 15px;
  }

  .headerMobileMenuIcon.open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(3),
  .headerMobileMenuIcon.open span:nth-child(4),
  .headerMobileMenuIcon.open span:nth-child(5),
  .headerMobileMenuIcon.open span:nth-child(6) {
    opacity: 0;
  }

  #headerMobileMenu {
    position: fixed;
    top: var(--header-promo-height);
    left: -100%;
    width: 100vw;
    height: calc(100dvh - var(--header-promo-height));
    z-index: 30;
    overflow: hidden;
    background: #efefef;
    transition: left 0.28s ease-in-out;
  }

  #headerMobileMenu.open {
    left: 0;
  }

  #headerMobileMenu .topHeaderMobileIcons {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
    height: 70px;
    min-height: 60px;
    padding: 0 18px 0 43px;
    box-sizing: border-box;
    background: var(--web-background);
    border-bottom: 1px solid #b8b8b8;
  }

  #headerMobileMenu .userMobile {
    display: flex;
    align-items: center;
    margin-right: auto;
    height: 70px;
    font-size: 12px;
    line-height: 16px;
    color: var(--base);
  }

  #headerMobileMenu .userMobile a:first-of-type {
    display: flex;
    align-items: center;
    margin-right: 0;
  }

  #headerMobileMenu .profileImgMobile,
  #headerMobileMenu .heart,
  #headerMobileMenu .cart {
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
  }

  #headerMobileMenu .profileImgMobile {
    margin-right: 7px;
  }

  #headerMobileMenu .wishListProductsDiv,
  #headerMobileMenu .menuCartMobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 70px;
    gap: 4px;
    margin: 0;
    position: relative;
  }

  #headerMobileMenu .wishListQuantity,
  #headerMobileMenu .cartAmount {
    position: static;
    float: none;
    font-size: 12px;
    line-height: 16px;
    min-width: auto;
    padding: 0;
  }

  #headerMobileMenu .searchMobileContainer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--web-background);
    border-bottom: 1px solid #b8b8b8;
  }

  #headerMobileMenu #mobileSearchBar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 58px;
    border: 0;
  }

  #headerMobileMenu #mobileSearchImg {
    position: relative;
    left: auto;
    width: 16px;
    height: 16px;
    margin-left: 50px;
    filter: var(--icons-invert);
  }

  #headerMobileMenu #mobileSearch {
    width: calc(100% - 76px);
    height: 58px;
    padding: 0 0 0 12px;
    text-indent: 0;
    font-size: 12px;
    line-height: 58px;
    color: var(--base);
    background: transparent;
  }

  .mobileMenuItems {
    width: 100%;
    height: calc(100dvh - var(--header-promo-height) - 148px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0 22px;
    box-sizing: border-box;
    background: #efefef;
  }

  .mobileMenuItem {
    display: table;
    width: 100%;
    background: var(--web-background);
    border-bottom: 1px solid #cfcfcf;
  }

  .mobileMenuLink {
    width: calc(100% - 64px);
    height: 54px;
    padding-left: 50px;
    box-sizing: border-box;
    color: var(--base);
    font-size: 13px;
    line-height: 54px;
    letter-spacing: 0;
    text-transform: uppercase;
    word-break: normal;
  }

  .mobileMenuSeeMore {
    width: 22px;
    height: 54px;
    margin-right: 34px;
    color: var(--base);
    font-size: 15px;
    line-height: 54px;
    font-weight: 400;
    text-align: center;
  }

  .mobileMenuSubcategories {
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #f7f7f7;
  }

  .mobileMenuLink.mobileMenuSubcategoryText {
    width: 100%;
    height: 30px;
    padding-left: 23px;
    color: var(--base);
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
  }

  .mobileMenuSubcategory {
    background: #f7f7f7;
  }

  .mobileMenuSubcategory:first-of-type {
    padding-top: 14px;
  }

  .mobileMenuSubcategory:last-of-type {
    padding-bottom: 16px;
  }

  .open > a.mobileMenuLink {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  #headerMobileMenu .mobileMenuItem > .mobileMenuLink:not(.mobileMenuSubcategoryText) {
    font-size: 14px;
    padding-left: 27px;
    text-transform: uppercase;
  }

  #headerMobileMenu .mobileMenuItem > .mobileMenuLink[href*="sale"],
  #headerMobileMenu .mobileMenuItem > .mobileMenuLink[href*="SALE"],
  #headerMobileMenu .mobileMenuItem.offerCategory > .mobileMenuLink {
    color: #e10101;
  }

  #headerMobileMenu .topHeaderMobileIcons {
    padding-left: 18px;
  }

  #headerMobileMenu #mobileSearchImg {
    margin-left: 18px;
  }

  #headerMobileMenu #mobileSearch {
    width: calc(100% - 44px);
  }

  #headerMobileMenu .mobileMenuLink.mobileMenuSubcategoryText {
    margin-left: 20px;
  }

  #headerMobileMenu .mobileMenuSubcategory:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 768px) {
  #header {
    border-bottom: 1px solid #d0d0d0;
  }

  .headerMobileMenuIcon {
    background: transparent !important;
    height: 15px !important;
    left: calc(((100% - var(--web-container)) / 2) + 10px) !important;
    position: fixed !important;
    top: calc(var(--header-promo-height) + ((var(--menu-height) - var(--header-promo-height) - 15px) / 2)) !important;
    width: 15px !important;
    z-index: 6;
  }

  body.openFilter .headerMobileMenuIcon {
    opacity: 0;
    pointer-events: none;
  }

  .headerMobileMenuIcon.open {
    top: calc(var(--header-promo-height) + ((70px - 15px) / 2)) !important;
    z-index: 31;
  }

  .headerMobileMenuIcon span {
    background: var(--base);
    border-radius: 0 !important;
    display: block;
    height: 1.5px !important;
    left: auto !important;
    opacity: 1;
    position: absolute;
    right: 0 !important;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    width: 15px !important;
  }

  .headerMobileMenuIcon span:nth-child(1),
  .headerMobileMenuIcon span:nth-child(2) {
    top: 0 !important;
  }

  .headerMobileMenuIcon span:nth-child(3),
  .headerMobileMenuIcon span:nth-child(4) {
    top: 7px !important;
  }

  .headerMobileMenuIcon span:nth-child(5),
  .headerMobileMenuIcon span:nth-child(6) {
    top: 14px !important;
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(6) {
    transform: rotate(45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(2),
  .headerMobileMenuIcon.open span:nth-child(5) {
    transform: rotate(-45deg);
  }

  .headerMobileMenuIcon.open span:nth-child(1),
  .headerMobileMenuIcon.open span:nth-child(2) {
    top: 7px !important;
  }

  .headerMobileMenuIcon.open span:nth-child(3),
  .headerMobileMenuIcon.open span:nth-child(4) {
    opacity: 0;
  }

  .headerMobileMenuIcon.open span:nth-child(4) {
    left: 100% !important;
    right: auto !important;
  }

  .headerMobileMenuIcon.open span:nth-child(5),
  .headerMobileMenuIcon.open span:nth-child(6) {
    top: 7px !important;
  }

  #headerMobileMenu .userMobile span {
    margin: 0 8px;
  }
}
