.flex {
  display: flex;
}

.inline {
  display: inline-flex;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.y-flex-start {
  align-items: flex-start;
}

.y-flex-end {
  align-items: flex-end;
}

.y-flex-center {
  align-items: center;
}

.y-flex-baseline {
  align-items: baseline;
}

.y-flex-stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.gap-70 {
  gap: 70px;
}

.gap-80 {
  gap: 80px;
}

.gap-90 {
  gap: 90px;
}

.gap-100 {
  gap: 100px;
}

.col-m-1 {
  flex: 1 1 100%;
}

@media only screen and (min-width: 767px) {
  .col-d-1 {
    flex: 1 1 100%;
  }
}

.col-m-2 {
  flex: 1 1 calc(100% / 2 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-2 {
    flex: 1 1 calc(100% / 2 - 3%);
  }
}

.col-m-3 {
  flex: 1 1 calc(100% / 3 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-3 {
    flex: 1 1 calc(100% / 3 - 3%);
  }
}

.col-m-4 {
  flex: 1 1 calc(100% / 4 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-4 {
    flex: 1 1 calc(100% / 4 - 3%);
  }
}

.col-m-5 {
  flex: 1 1 calc(100% / 5 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-5 {
    flex: 1 1 calc(100% / 5 - 3%);
  }
}

.col-m-6 {
  flex: 1 1 calc(100% / 6 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-6 {
    flex: 1 1 calc(100% / 6 - 3%);
  }
}

.col-m-7 {
  flex: 1 1 calc(100% / 7 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-7 {
    flex: 1 1 calc(100% / 7 - 3%);
  }
}

.col-m-8 {
  flex: 1 1 calc(100% / 8 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-8 {
    flex: 1 1 calc(100% / 8 - 3%);
  }
}

.col-m-9 {
  flex: 1 1 calc(100% / 9 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-9 {
    flex: 1 1 calc(100% / 9 - 3%);
  }
}

.col-m-10 {
  flex: 1 1 calc(100% / 10 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-10 {
    flex: 1 1 calc(100% / 10 - 3%);
  }
}

.col-m-11 {
  flex: 1 1 calc(100% / 11 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-11 {
    flex: 1 1 calc(100% / 11 - 3%);
  }
}

.col-m-12 {
  flex: 1 1 calc(100% / 12 - 4%);
}

@media only screen and (min-width: 767px) {
  .col-d-12 {
    flex: 1 1 calc(100% / 12 - 3%);
  }
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.t-center {
  text-align: center;
}

.t-justify {
  text-align: justify;
}

.fw-m-1 {
  font-weight: 100;
}

@media only screen and (min-width: 767px) {
  .fw-d-1 {
    font-weight: 100;
  }
}

.fw-m-2 {
  font-weight: 200;
}

@media only screen and (min-width: 767px) {
  .fw-d-2 {
    font-weight: 200;
  }
}

.fw-m-3 {
  font-weight: 300;
}

@media only screen and (min-width: 767px) {
  .fw-d-3 {
    font-weight: 300;
  }
}

.fw-m-4 {
  font-weight: 400;
}

@media only screen and (min-width: 767px) {
  .fw-d-4 {
    font-weight: 400;
  }
}

.fw-m-5 {
  font-weight: 500;
}

@media only screen and (min-width: 767px) {
  .fw-d-5 {
    font-weight: 500;
  }
}

.fw-m-6 {
  font-weight: 600;
}

@media only screen and (min-width: 767px) {
  .fw-d-6 {
    font-weight: 600;
  }
}

.fw-m-7 {
  font-weight: 700;
}

@media only screen and (min-width: 767px) {
  .fw-d-7 {
    font-weight: 700;
  }
}

.fw-m-8 {
  font-weight: 800;
}

@media only screen and (min-width: 767px) {
  .fw-d-8 {
    font-weight: 800;
  }
}

.fw-m-9 {
  font-weight: 900;
}

@media only screen and (min-width: 767px) {
  .fw-d-9 {
    font-weight: 900;
  }
}

.fw-m-10 {
  font-weight: 1000;
}

@media only screen and (min-width: 767px) {
  .fw-d-10 {
    font-weight: 1000;
  }
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.lowercase {
  text-transform: lowercase;
}

.none {
  text-transform: none;
}

.container-esferas {
  font-family: Lato;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: #3f3e3f;
  padding: 0 15px;
  height: max-content !important;
}
@media only screen and (min-width: 767px) {
  .container-esferas {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-esferas {
    font-size: 18px;
  }
}
.container-esferas.imageHeader {
  max-width: 1020px;
  margin-top: 0 !important;
}
@media only screen and (min-width: 1020px) {
  .container-esferas {
    padding: 0;
  }
}
.container-esferas .icono {
  width: 40px;
}
.container-esferas .headerImage {
  margin: 0 -15px;
}
@media only screen and (min-width: 1020px) {
  .container-esferas .headerImage {
    margin: 0;
  }
}
.container-esferas .imagen {
  width: 100%;
  position: relative;
}
.container-esferas .imagen img {
  width: 100%;
}
.container-esferas .imagen .sello {
  position: absolute;
}
.container-esferas .imagen .sello.b-r {
  bottom: 10px;
  right: 10px;
  width: 80px;
}
.container-esferas.container-carousell {
  max-width: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .container-esferas.container-carousell {
    max-width: max-content;
  }
  .container-esferas.container-carousell.nuevasCategorias {
    width: 100%;
    max-width: none;
  }
}
.container-esferas.container-carousell .carousellTutete {
  width: 100%;
}
.container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell {
  height: max-content !important;
}
.container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item {
  flex: 0 0 100px;
}
@media only screen and (min-width: 992px) {
  .container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item {
    flex: 0 0 120.8px;
  }
}
.container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item .producto {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item .producto {
    margin-top: 20px;
  }
}
.container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item picture {
  aspect-ratio: 1/1;
  background: #F7F7F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-esferas.container-carousell .carousellTutete .carousellWrapper .productosCarousell .item img {
  height: 100%;
  width: 100%;
  background: #F7F7F7;
  border-radius: 50%;
}
.container-esferas.container-carousell .carousellTutete .arrowCarousell {
  top: calc(50% + 15px);
}
.container-esferas .titlePrincipal {
  font-family: Principal;
  font-size: 40px;
  text-transform: uppercase;
}
.container-esferas .titlePrincipal a {
  color: #e59eaf;
}
.container-esferas .headerTitle {
  max-width: 850px;
  flex-direction: column;
  align-items: left;
  font-size: 14px;
}
@media only screen and (min-width: 767px) {
  .container-esferas .headerTitle {
    font-size: 18px;
    text-align: center;
  }
}
@media only screen and (min-width: 1020px) {
  .container-esferas .headerTitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 413px) {
  .container-esferas .headerTitle {
    width: 100%;
  }
}
.container-esferas .headerTitle p {
  text-align: center;
}
.container-esferas h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
}
.container-esferas h4 {
  font-size: 18px;
  font-weight: 400;
}
.container-esferas p {
  font-size: 14px;
}
@media only screen and (min-width: 767px) {
  .container-esferas p {
    font-size: 18px;
  }
}
.container-esferas .headerText {
  width: 100%;
  max-width: 620px;
}
@media only screen and (min-width: 1020px) {
  .container-esferas .headerText {
    max-width: 760px;
  }
}
.container-esferas .headerText .titulos {
  font-size: 14px;
}
@media only screen and (min-width: 767px) {
  .container-esferas .headerText .titulos {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-esferas .headerText .titulos {
    font-size: 22px;
  }
}
.container-esferas .headerText .titulos .mayusculas {
  text-transform: uppercase;
}
.container-esferas .headerText p {
  width: 100%;
  text-align: center;
  max-width: 850px;
}
.container-esferas .titulos {
  font-size: 14px;
}
@media only screen and (min-width: 767px) {
  .container-esferas .titulos {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-esferas .titulos {
    font-size: 28px;
  }
}
.container-esferas p {
  font-size: 14px;
}
@media only screen and (min-width: 767px) {
  .container-esferas p {
    font-size: 18px;
  }
}
.container-esferas p .novedad {
  color: white;
  background: #e59eaf;
  padding: 1px 5px;
  border-radius: 5px;
}
@media only screen and (min-width: 1020px) {
  .container-esferas p {
    font-size: 18px;
  }
}
.container-esferas .columnas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  width: 100%;
}
.container-esferas .columnas .card.unaColumnaMovil {
  flex: 0 0 100%;
}
@media only screen and (min-width: 500px) {
  .container-esferas .columnas .card.unaColumnaMovil {
    flex: 0 0 48%;
  }
}
.container-esferas .columnas .card.dosColumnas {
  flex: 0 0 48%;
}
.container-esferas .columnas .card.tresColumnas {
  flex: 0 0 48%;
}
@media only screen and (min-width: 767px) {
  .container-esferas .columnas .card.tresColumnas {
    flex: 0 0 30%;
  }
}
.container-esferas .columnas .card .imagen {
  width: 100%;
  padding-bottom: 25px;
  padding-top: 25px;
}
.container-esferas .columnas .card .imagen img {
  width: 100%;
}
.container-esferas .columnas .card .tituloCard {
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1020px) {
  .container-esferas .columnas .card .tituloCard {
    margin-bottom: 10px;
  }
}
.container-esferas .columnas .card .tituloCard .novedad {
  color: white;
  background: #e59eaf;
  padding: 1px 5px;
  border-radius: 5px;
}
.container-esferas .columnas .card .textos .novedad {
  color: white;
  background: #e59eaf;
  padding: 1px 5px;
  border-radius: 5px;
}
.container-esferas .columnas .card .textos h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 400;
}
@media only screen and (min-width: 767px) {
  .container-esferas .columnas .card .textos h3 {
    font-size: 18px;
  }
}
.container-esferas .columnas .card .textos p {
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .container-esferas .columnas .card .textos p {
    width: 60%;
  }
}
.container-esferas.registrate {
  background-color: #f6f6f6;
  padding: 50px 15px;
  margin-top: 30px;
  max-width: 100vw;
  margin-bottom: -15px;
}
@media only screen and (min-width: 767px) {
  .container-esferas.registrate {
    padding: 100px 15px;
  }
}
.container-esferas.registrate .contenido {
  position: relative;
  width: 100%;
  max-width: 850px;
}
.container-esferas.registrate .contenido p {
  text-align: left;
}
.container-esferas.registrate .contenido .boton {
  width: 100%;
  text-align: right;
}
.container-esferas.registrate .contenido .boton a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  background: #e59eaf;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.container-carousell-2025 {
  font-family: Lato;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: #3f3e3f;
  padding: 0 15px;
  height: max-content !important;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-carousell-2025 {
    font-size: 18px;
  }
}
.container-carousell-2025.imageHeader {
  max-width: 1020px;
  margin-top: 0 !important;
}
@media only screen and (min-width: 1020px) {
  .container-carousell-2025 {
    padding: 0;
  }
}
.container-carousell-2025 .titulares {
  text-align: left;
}
.container-carousell-2025 .titulares .subtitulo {
  font-size: 18px;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 .titulares {
    text-align: center;
  }
}
.container-carousell-2025 .titulares .texto {
  font-size: 14px;
  font-weight: 400;
}
.container-carousell-2025 .titulares .titulos {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 50px;
}
.container-carousell-2025 .carousellTutete {
  position: relative;
  width: 100%;
  height: max-content;
}
.container-carousell-2025 .carousellTutete .arrowCarousell {
  position: absolute;
  z-index: 10;
  top: calc(50% - 15px);
  width: 20px !important;
  height: 20px;
  display: block;
  cursor: pointer;
  border-right: 2px solid #3f3e3f;
  border-top: 2px solid #3f3e3f;
}
.container-carousell-2025 .carousellTutete .arrowCarousell.arrowCarousell-right {
  transform: rotate(45deg);
}
.container-carousell-2025 .carousellTutete .arrowCarousell.arrowCarousell-left {
  transform: rotate(-135deg);
}
.container-carousell-2025 .carousellTutete .arrowCarousell svg {
  display: none;
}
.container-carousell-2025 .carousellTutete .arrowCarousell-left {
  left: 0;
  transform: rotate(180deg);
}
.container-carousell-2025 .carousellTutete .arrowCarousell-right {
  right: 0;
}
.container-carousell-2025 .carousellTutete .carousellWrapper {
  overflow: hidden;
  position: relative;
  margin: 0 25px;
  height: max-content;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 .carousellTutete .carousellWrapper {
    margin: 0 40px;
  }
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell {
  display: flex;
  position: relative;
  left: 0;
  transition: left 1s;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item {
  flex: 0 0 150px;
  margin-right: 20px;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item {
    flex: 0 0 120.8px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item {
    flex: 0 0 173.6px;
  }
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent {
  text-align: left;
  padding-bottom: 6px;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .marca {
  font-weight: 700;
  font-size: 14px;
  margin-top: 17px;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .producto {
  font-size: 16px;
  line-height: 1.2;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .colecciones {
  display: flex;
  gap: 4px;
  margin: 8px 0;
  font-size: 12px;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .colecciones .coleccion {
  width: 16px;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .colecciones .coleccion img {
  width: 100%;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .botonera {
  margin: 20px 0;
}
.container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .botonera .botonCompra {
  background: #e5e5e5;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 12px;
  box-shadow: 0 1px 0 #b0aeaf;
  white-space: nowrap;
}
@media only screen and (min-width: 992px) {
  .container-carousell-2025 .carousellTutete .carousellWrapper .productosCarousell .item .itemContent .botonera .botonCompra {
    font-size: 14px;
  }
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item {
  flex: 0 0 150px;
  margin-right: 20px;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item {
    flex: 0 0 156px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item {
    flex: 0 0 222px;
  }
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent {
  text-align: center;
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent img {
  margin-bottom: 15px;
  border-radius: 50%;
  border: #ed93b1 1px solid;
}
@media only screen and (min-width: 767px) {
  .container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent img {
    width: 156px;
  }
}
@media only screen and (min-width: 1020px) {
  .container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent img {
    width: 222px;
  }
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent .precioProducto {
  display: flex;
  justify-content: center;
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent .precioProducto .precio-oferta {
  margin-right: 10px;
}
.container-carousell-2025 .carousellTutete.redondeado .carousellWrapper .productosCarousell .item .itemContent .precioProducto .precio-lista.tachado {
  text-decoration: line-through;
}

@media only screen and (min-width: 767px) {
  .especifico-bluemonday {
    margin-top: 0 !important;
  }
}

.display-none {
  display: none !important;
}

.text-left-left {
  text-align: left;
}
@media only screen and (min-width: 767px) {
  .text-left-left {
    text-align: left;
  }
}

.text-left-center {
  text-align: left;
}
@media only screen and (min-width: 767px) {
  .text-left-center {
    text-align: center;
  }
}

.text-left-right {
  text-align: left;
}
@media only screen and (min-width: 767px) {
  .text-left-right {
    text-align: right;
  }
}

.text-center-left {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .text-center-left {
    text-align: left;
  }
}

.text-center-center {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .text-center-center {
    text-align: center;
  }
}

.text-center-right {
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .text-center-right {
    text-align: right;
  }
}

.text-right-left {
  text-align: right;
}
@media only screen and (min-width: 767px) {
  .text-right-left {
    text-align: left;
  }
}

.text-right-center {
  text-align: right;
}
@media only screen and (min-width: 767px) {
  .text-right-center {
    text-align: center;
  }
}

.text-right-right {
  text-align: right;
}
@media only screen and (min-width: 767px) {
  .text-right-right {
    text-align: right;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-5 {
    top: 5% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-10 {
    top: 10% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-15 {
    top: 15% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-20 {
    top: 20% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-25 {
    top: 25% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-30 {
    top: 30% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-35 {
    top: 35% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-40 {
    top: 40% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-45 {
    top: 45% !important;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1450px) {
  .top-medio-50 {
    top: 50% !important;
  }
}

#recomendaciones {
  display: none !important;
}

.carousellTutete.my-10 {
  margin: unset;
}
.carousellTutete .carousellWrapper .productosCarousell {
  width: max-content;
}
.carousellTutete .carousellWrapper .productosCarousell .item {
  height: max-content;
}

.commentCarousel-container {
  margin: 0 15px !important;
}
.commentCarousel-container .productosCarousell .item {
  flex: 0 0 308px;
  box-sizing: border-box;
  background: #eaced3;
  border-radius: 14px;
  padding: 15px 30px;
  height: 300px !important;
  line-height: 1.2;
}
.commentCarousel-container .productosCarousell .item .commentBox-starvacia {
  display: none;
}
.commentCarousel-container .productosCarousell .item .commentBox-text {
  font-size: 18px;
  margin: 15px 0;
  max-height: 130px;
  overflow: hidden;
}
.commentCarousel-container .productosCarousell .item .commentBox-authorName {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}
.commentCarousel-container .productosCarousell .item .commentBox-authorDate {
  font-size: 14px;
}

.container section.container-carousell-2025 {
  color: #1C1B1F;
  box-sizing: border-box;
}
.container section.container-carousell-2025 .carousellTutete#carousellreviews .carousellWrapper {
  margin: 0 15px !important;
}
.container section.container-carousell-2025 .carousellTutete#carousellreviews .arrowCarousell {
  width: 48px !important;
  height: 48px !important;
  background: #e59eaf;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none !important;
}
.container section.container-carousell-2025 .carousellTutete#carousellreviews .arrowCarousell img {
  position: absolute;
  top: 18px;
  left: 18px;
}
.container section.container-carousell-2025 .carousellTutete#carousellreviews .arrowCarousell-left {
  left: -10px;
  transform: rotate(180deg) !important;
}
.container section.container-carousell-2025 .carousellTutete#carousellreviews .arrowCarousell-right {
  right: -10px;
  transform: rotate(0deg) !important;
}

.services-section {
  background: #eaced3;
  padding: 42px 0 36px;
  margin: 40px 0;
}
.services-section__title {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #1C1B1F;
  margin: 0 auto 28px;
  max-width: 900px;
  padding: 0 20px;
}
@media only screen and (min-width: 767px) {
  .services-section__title {
    font-size: 26px;
    margin-bottom: 36px;
    padding: 0;
  }
}
.services-section .services {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media only screen and (min-width: 767px) {
  .services-section .services {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
  }
}
.services-section .services .serviceIconText-container {
  flex: 1 1 auto;
  color: #1C1B1F;
  padding: 20px 12px 22px;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container {
    flex: 1 1 0;
    max-width: 360px;
    min-width: 0;
    padding: 0 34px;
    margin-top: 0;
  }
}
.services-section .services .serviceIconText-container:not(:last-child) {
  border-bottom: 1px solid rgba(28, 27, 31, 0.18);
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container:not(:last-child) {
    border-bottom: none;
  }
  .services-section .services .serviceIconText-container:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(28, 27, 31, 0.2);
  }
}
.services-section .services .serviceIconText-container .serviceIconText-icon {
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container .serviceIconText-icon {
    min-height: 66px;
    margin-bottom: 18px;
  }
}
.services-section .services .serviceIconText-container .serviceIconText-icon img {
  max-height: 40px;
  width: auto;
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container .serviceIconText-icon img {
    max-height: 52px;
  }
}
.services-section .services .serviceIconText-container .serviceIconText-text {
  text-align: center;
  margin-top: 0;
}
.services-section .services .serviceIconText-container .serviceIconText-text .serviceIconText-supBoldText {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  padding-bottom: 4px;
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container .serviceIconText-text .serviceIconText-supBoldText {
    font-size: 17px;
    line-height: 1.3;
  }
}
.services-section .services .serviceIconText-container .serviceIconText-text .serviceIconText-subText {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}
@media only screen and (min-width: 767px) {
  .services-section .services .serviceIconText-container .serviceIconText-text .serviceIconText-subText {
    font-size: 17px;
    line-height: 1.3;
  }
}
.services-section .services .serviceIconText-container--invert-bold .serviceIconText-supBoldText {
  font-weight: 400;
}
.services-section .services .serviceIconText-container--invert-bold .serviceIconText-subText {
  font-weight: 700;
}

.tutete-family-section {
  margin: 34px 0 40px;
  padding: 0 20px;
}
.tutete-family-section .container {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 1220px;
}
.tutete-family-section .tutete-family-card {
  background: #f9f9f9;
  border-radius: 12px;
  border-top: 4px solid #e59eaf;
  padding: 24px 20px 20px;
  color: #1C1B1F;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card {
    padding: 36px 40px 32px;
  }
}
.tutete-family-section .tutete-family-card__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }
}
.tutete-family-section .tutete-family-card__intro {
  padding-bottom: 20px;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__intro {
    flex: 0 0 28%;
    max-width: 300px;
    padding: 0 16px 0 0;
    align-self: center;
  }
}
.tutete-family-section .tutete-family-card__eyebrow {
  text-transform: uppercase;
  color: #e59eaf;
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tutete-family-section .tutete-family-card__title {
  font-size: 30px;
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
  max-width: 280px;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__title {
    font-size: 36px;
    max-width: 300px;
  }
}
.tutete-family-section .tutete-family-card__benefits {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__benefits {
    flex: 1;
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
  }
}
.tutete-family-section .tutete-family-card__cta-col {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__cta-col {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-top: calc(116px + 54px);
    padding-left: 8px;
  }
}
.tutete-family-section .tutete-family-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: #e59eaf;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-card__cta {
    min-height: 32px;
    padding: 7px 18px;
  }
}
.tutete-family-section .tutete-family-benefit {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 18px 0;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-benefit {
    flex: 1;
    min-width: 0;
    padding: 0 16px;
  }
}
.tutete-family-section .tutete-family-benefit:not(:last-child) {
  border-bottom: 1px solid rgba(28, 27, 31, 0.18);
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-benefit:not(:last-child) {
    border-bottom: none;
  }
}
.tutete-family-section .tutete-family-benefit__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  margin-bottom: 14px;
  margin-left: 21px;
  width: calc(100% - 21px);
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-benefit__icon {
    min-height: 44px;
    margin-bottom: 16px;
  }
}
.tutete-family-section .tutete-family-benefit__icon img {
  width: auto;
  height: auto;
  max-width: 36px;
  max-height: 40px;
  object-fit: contain;
}
.tutete-family-section .tutete-family-benefit__text {
  margin: 0;
}
@media only screen and (min-width: 767px) {
  .tutete-family-section .tutete-family-benefit__text {
    border-left: 1px solid rgba(28, 27, 31, 0.25);
    padding-left: 20px;
  }
}
.tutete-family-section .tutete-family-benefit__copy {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}
.tutete-family-section .tutete-family-benefit__title {
  font-weight: 700;
}
.tutete-family-section .tutete-family-benefit__sub {
  font-weight: 400;
  color: #1C1B1F;
}

.container.container-juguetes, .container.mt-5 {
  margin: 0 auto;
}

.container.burbujas.activa {
  max-width: 1028px !important;
}

@media only screen and (max-width: 767px) {
  main {
    overflow-x: clip;
    max-width: 100%;
  }
}
@media only screen and (min-width: 767px) {
  main .movil {
    display: none !important;
  }
}
main .desktop {
  display: none;
}
@media only screen and (min-width: 767px) {
  main .desktop {
    display: block;
  }
}
main .desktop-medio {
  display: none;
}
@media only screen and (min-width: 767px) and (max-width: 1450px) {
  main .desktop-medio {
    display: block;
  }
}
main .container {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  position: relative;
}
@media only screen and (min-width: 767px) {
  main .container {
    max-width: 744px;
  }
}
@media only screen and (min-width: 1020px) {
  main .container {
    max-width: 980px;
  }
}
@media only screen and (min-width: 1450px) {
  main .container {
    max-width: 1400px;
  }
}
main .container section {
  width: 100%;
  height: 300px;
}
main .container section.container-esferas {
  margin: 0 auto;
  color: #1C1B1F;
  padding: 0;
}
@media only screen and (min-width: 1020px) {
  main .container section.container-esferas {
    max-width: 1400px;
  }
}
main .container section.container-3-esferas {
  height: max-content;
}
main .container section.container-3-esferas .carousell3Esferas {
  height: max-content;
}
main .container section.container-3-esferas .carousell3Esferas .esferas {
  height: max-content !important;
}
main .container .container-bannerTextoFlotante {
  position: relative;
  display: grid;
  height: max-content;
}
@media only screen and (max-width: 767px) {
  main .container .container-bannerTextoFlotante {
    max-width: 100%;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  main .container .container-bannerTextoFlotante.desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante.desktop {
    display: grid;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante.movil {
    display: none !important;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante {
    min-height: 100px;
  }
}
main .container .container-bannerTextoFlotante picture {
  width: 100%;
}
main .container .container-bannerTextoFlotante picture img {
  width: 100% !important;
  object-fit: cover;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante {
  width: 319px;
  height: max-content;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante {
    box-sizing: border-box;
  }
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante:not(.segundoTextoFlotante) {
    width: 100% !important;
    top: 34px !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
  }
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante:not(.segundoTextoFlotante).forzar-m-top-55 {
    top: 55% !important;
  }
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.segundoTextoFlotante {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-0 {
    top: 0px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-0 {
    top: 0px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-0 {
    right: 0px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-0 {
    right: 0px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-0 {
    bottom: 0px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-0 {
    bottom: 0px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-0 {
    left: 0px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-0 {
    left: 0px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-10 {
    top: 10px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-10 {
    top: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-10 {
    right: 10px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-10 {
    right: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-10 {
    bottom: 10px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-10 {
    bottom: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-10 {
    left: 10px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-10 {
    left: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-20 {
    top: 20px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-20 {
    top: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-20 {
    right: 20px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-20 {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-20 {
    bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-20 {
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-20 {
    left: 20px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-20 {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-30 {
    top: 30px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-30 {
    top: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-30 {
    right: 30px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-30 {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-30 {
    bottom: 30px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-30 {
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-30 {
    left: 30px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-30 {
    left: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-40 {
    top: 40px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-40 {
    top: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-40 {
    right: 40px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-40 {
    right: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-40 {
    bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-40 {
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-40 {
    left: 40px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-40 {
    left: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-50 {
    top: 50px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-50 {
    top: 50px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-50 {
    right: 50px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-50 {
    right: 50px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-50 {
    bottom: 50px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-50 {
    bottom: 50px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-50 {
    left: 50px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-50 {
    left: 50px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-60 {
    top: 60px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-60 {
    top: 60px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-60 {
    right: 60px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-60 {
    right: 60px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-60 {
    bottom: 60px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-60 {
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-60 {
    left: 60px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-60 {
    left: 60px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-70 {
    top: 70px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-70 {
    top: 70px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-70 {
    right: 70px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-70 {
    right: 70px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-70 {
    bottom: 70px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-70 {
    bottom: 70px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-70 {
    left: 70px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-70 {
    left: 70px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-80 {
    top: 80px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-80 {
    top: 80px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-80 {
    right: 80px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-80 {
    right: 80px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-80 {
    bottom: 80px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-80 {
    bottom: 80px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-80 {
    left: 80px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-80 {
    left: 80px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-movil-90 {
    top: 90px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.top-desktop-90 {
    top: 90px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-movil-90 {
    right: 90px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.right-desktop-90 {
    right: 90px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-movil-90 {
    bottom: 90px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.bottom-desktop-90 {
    bottom: 90px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-movil-90 {
    left: 90px !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.left-desktop-90 {
    left: 90px;
  }
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.con-sombra-texto {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.con-sombra-texto .floatingTextFooter-bannerTextoFlotante {
  text-shadow: none;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.text-black {
  color: #1C1B1F;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.text-white {
  color: white;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante.text-primary {
  color: #e59eaf !important;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante {
  color: #1C1B1F;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante.text-black {
  color: #1C1B1F;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante.text-white {
  color: white;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante.text-primary {
  color: #e59eaf !important;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante h3 {
  line-height: 1.2;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante h4 {
  font-size: 19px;
  line-height: 1.2;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante h2 {
  font-size: 36px;
  line-height: 1.2;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextHeader-bannerTextoFlotante h5 {
  font-size: 19px;
  line-height: 1.2;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextBody-bannerTextoFlotante {
  color: #1C1B1F;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextBody-bannerTextoFlotante.text-black {
  color: #1C1B1F;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextBody-bannerTextoFlotante.text-white {
  color: white;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextBody-bannerTextoFlotante.text-primary {
  color: #e59eaf !important;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextBody-bannerTextoFlotante p {
  font-size: 16px;
  line-height: 1.2;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante {
  background: white;
  padding: 9px 19px 11px;
  text-align: center;
  border-radius: 20px;
  width: max-content;
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-center-center {
  margin-left: auto;
  margin-right: auto;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-center-left {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-center-left {
    margin-left: 0;
    margin-right: auto;
  }
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-center-right {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-center-right {
    margin-left: auto;
    margin-right: 0;
  }
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-left-left {
  margin-left: 0;
  margin-right: 0;
}
main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-left-right {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante .floatingText-bannerTextoFlotante .floatingTextFooter-bannerTextoFlotante.text-left-right {
    margin-left: auto;
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container-bannerTextoFlotante.col-d-2 {
    flex: 1 1 45%;
  }
}
main .container .container_banner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  color: #1C1B1F;
  font-family: Lato;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main .container .container_banner {
    padding: 0 20px;
    box-sizing: border-box;
  }
  main .container .container_banner.banner-buscador-mochilas {
    padding: 0;
  }
  main .container .container_banner.banner-funtastic-summer-movil {
    padding: 0 !important;
  }
}
main .container .container_banner .titulos {
  font-size: 32px;
  font-weight: 500;
  flex: 0 0 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 767px) {
  main .container .container_banner .titulos {
    margin-bottom: 50px;
  }
}
main .container .container_banner .subtitulo {
  font-size: 14px;
  font-weight: 400;
  flex: 0 0 100%;
  margin-bottom: 0;
  font-size: 18px;
}
main .container .container_banner .texto {
  font-size: 14px;
  font-weight: 400;
}
main .container .container_banner .botonera {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 30px;
  overflow: hidden;
}
main .container .container_banner .boton {
  border: 1px solid #7e7c7d;
  padding: 5px;
  text-align: center;
}
main .container .container_banner a .boton.btn {
  color: #1C1B1F;
}
main .container .container_banner .imagenes_banner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex;
  width: 100%;
  gap: 24px;
}
main .container .container_banner .imagenes_banner.desktop {
  display: none;
}
@media only screen and (min-width: 767px) {
  main .container .container_banner .imagenes_banner.desktop {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  main .container .container_banner .imagenes_banner.movil {
    max-width: 100%;
    overflow: hidden;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container_banner .imagenes_banner.movil {
    display: none !important;
  }
}
@media only screen and (min-width: 767px) {
  main .container .container_banner .imagenes_banner {
    margin: 0 auto 24px auto;
    justify-content: space-between;
  }
}
main .container .container_banner .imagenes_banner .imagen_banner {
  display: flex;
  align-items: center;
  width: 48%;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 767px) {
  main .container .container_banner .imagenes_banner .imagen_banner {
    flex: 1 1 45%;
    font-weight: bold;
  }
  main .container .container_banner .imagenes_banner .imagen_banner.col-d-3 {
    flex: 1 1 30%;
  }
  main .container .container_banner .imagenes_banner .imagen_banner .textoImagen {
    color: #1C1B1F;
    font-weight: lighter;
  }
}
main .container .container_banner .imagenes_banner .imagen_banner a {
  width: 100%;
}
main .container .container_banner .imagenes_banner .imagen_banner a img {
  width: 100%;
}
main .container .container_banner .imagenes_banner .imagen_banner a img.movil {
  border-radius: 10px;
}
main .container .container_banner .imagenes_banner .imagen_banner .textoImagen {
  position: absolute;
  border-radius: 20px;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  font-weight: bold;
  background: white;
  padding: 10px 19px;
}
main .container .container_banner .imagenes_banner .imagen_banner .textoIncluido p {
  font-size: 14px;
}
main .container .container_banner .imagenes_banner .imagen_banner .textoIncluido .boton-imagen {
  position: absolute;
  border-radius: 20px;
  right: 10px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  background: white;
  padding: 10px 19px;
}
main .container .container_banner .imagenes_banner .imagen_banner .tituloAbajo {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 800;
}
main .container .container_banner .imagenes_banner .imagen_banner .textoAbajo {
  font-size: 14px;
  font-weight: 400;
}
main .container .container_banner #banner-buscador .container-bannerBuscador {
  position: relative;
}
main .container .container_banner #banner-buscador .container-bannerBuscador img {
  width: 100%;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador.abajo-centro {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
  }
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextHeader-bannerBuscador {
  position: relative;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador {
  background: white;
  height: 70px;
  border-radius: 35px;
  padding: 0 20px 0 35px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador.movil {
    width: 80%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro {
  border-left: 1px solid #e5e5e5;
  padding-left: 10px;
  text-align: left;
  height: calc(100% - 10px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro:first-child {
  border-left: none;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro p {
  margin-bottom: 0 !important;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro input[type=text] {
  border: none;
  padding: 5px 0 0;
  font-style: normal;
  font-size: 14px;
  color: #1C1B1F;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro .boton-buscador {
  background: #e5e5e5;
  border-radius: 20px;
  width: 97px;
  height: 30px;
  padding: 10px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  cursor: pointer;
}
main .container .container_banner #banner-buscador .container-bannerBuscador .floatingText-bannerBuscador .floatingTextFiltros-bannerBuscador .botonera-filtros .filtro .boton-buscador .flecha {
  margin-left: 15px;
}
main .services.services--legacy {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
main .services.services--legacy .serviceIconText-container {
  flex: 0 0 100%;
  color: #1C1B1F;
}
@media only screen and (min-width: 767px) {
  main .services.services--legacy .serviceIconText-container {
    flex: 0 0 180px;
    margin-top: 60px;
    font-size: 16px;
  }
}
main .services.services--legacy .serviceIconText-container .serviceIconText-icon {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main .services.services--legacy .serviceIconText-container .serviceIconText-icon {
    margin-top: 30px;
  }
}
main .services.services--legacy .serviceIconText-container .serviceIconText-text {
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  main .services.services--legacy .serviceIconText-container .serviceIconText-text {
    margin-bottom: 30px;
  }
}
main .services.services--legacy .serviceIconText-container .serviceIconText-text .serviceIconText-subText,
main .services.services--legacy .serviceIconText-container .serviceIconText-text .serviceIconText-supBoldText {
  padding-bottom: 5px;
}
main .container_botonesBurbuja {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
@media only screen and (min-width: 767px) {
  main .container_botonesBurbuja {
    gap: 130px;
    flex-direction: row;
    margin-top: 40px;
  }
}
main .container_botonesBurbuja a {
  flex: 0 0 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .container_botonesBurbuja a .imagen_botonesBurbuja {
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  main .container_botonesBurbuja a .imagen_botonesBurbuja {
    display: none;
  }
}
main .container_botonesBurbuja a .textoBotonBurbuja {
  text-align: center;
  background: #F8F8F8;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-top: 24px;
  padding: 10px 20px;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  main .container_botonesBurbuja a .textoBotonBurbuja {
    padding: 15px 30px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 40px);
  }
  main .container_botonesBurbuja a .textoBotonBurbuja::after {
    content: "";
    width: 10px;
    height: 10px;
    transform: rotate(135deg);
    border-top: 2px solid #1C1B1F;
    border-left: 2px solid #1C1B1F;
  }
}

/* =========================================================
   Posiciones flotantes + variantes responsive (tus breakpoints)
   Requiere: $xlg, $lgplus, $lg, $md, $sm, $xsm y mixin media_min()
   Uso: <div class="floatingText-bannerTextoFlotante sm:center-center lg:top-right">
   ========================================================= */
.floatingText-bannerTextoFlotante {
  position: absolute;
}

/* 1) Mapas de posiciones */
/* 2) Map de prefijos -> tus variables de ancho (min-width) */
/* 3) Mixin generador de las 9 combinaciones (base y con prefijo) */
/* 4) Clases base (sin prefijo) */
.top-left {
  top: 0;
  left: 0;
  transform: translateY(0) translateX(0);
}

.top-center {
  top: 0;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}

.top-right {
  top: 0;
  right: 0;
  transform: translateY(0) translateX(0);
}

.center-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0);
}

.center-center {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.center-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(0);
}

.bottom-left {
  bottom: 0;
  left: 0;
  transform: translateY(0) translateX(0);
}

.bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}

.bottom-right {
  bottom: 0;
  right: 0;
  transform: translateY(0) translateX(0);
}

/* 5) Variantes responsive por min-width usando tu mixin media_min() */
@media only screen and (min-width: 413px) {
  .xsm\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .xsm\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .xsm\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .xsm\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .xsm\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .xsm\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .xsm\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .xsm\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .xsm\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
@media only screen and (min-width: 767px) {
  .sm\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .sm\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .sm\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .sm\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .sm\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .sm\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .sm\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .sm\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .sm\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
@media only screen and (min-width: 992px) {
  .md\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .md\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .md\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .md\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .md\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .md\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .md\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .md\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .md\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
@media only screen and (min-width: 1020px) {
  .lg\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .lg\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .lg\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .lg\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .lg\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .lg\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .lg\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .lg\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .lg\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
@media only screen and (min-width: 1450px) {
  .lgplus\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .lgplus\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .lgplus\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .lgplus\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .lgplus\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .lgplus\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .lgplus\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .lgplus\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .lgplus\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
@media only screen and (min-width: 1920px) {
  .xlg\:top-left {
    top: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .xlg\:top-center {
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .xlg\:top-right {
    top: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
  .xlg\:center-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(0);
  }
  .xlg\:center-center {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .xlg\:center-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
  }
  .xlg\:bottom-left {
    bottom: 0;
    left: 0;
    transform: translateY(0) translateX(0);
  }
  .xlg\:bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
  .xlg\:bottom-right {
    bottom: 0;
    right: 0;
    transform: translateY(0) translateX(0);
  }
}
.width-max-content {
  width: max-content !important;
}

.uppercase {
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .width-m-10 {
    width: 10px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-10 {
    width: 10px !important;
  }
}

.min-height-m-100 {
  min-height: 100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-100 {
    min-height: 100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-20 {
    width: 20px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-20 {
    width: 20px !important;
  }
}

.min-height-m-200 {
  min-height: 200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-200 {
    min-height: 200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-30 {
    width: 30px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-30 {
    width: 30px !important;
  }
}

.min-height-m-300 {
  min-height: 300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-300 {
    min-height: 300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-40 {
    width: 40px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-40 {
    width: 40px !important;
  }
}

.min-height-m-400 {
  min-height: 400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-400 {
    min-height: 400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-50 {
    width: 50px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-50 {
    width: 50px !important;
  }
}

.min-height-m-500 {
  min-height: 500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-500 {
    min-height: 500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-60 {
    width: 60px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-60 {
    width: 60px !important;
  }
}

.min-height-m-600 {
  min-height: 600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-600 {
    min-height: 600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-70 {
    width: 70px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-70 {
    width: 70px !important;
  }
}

.min-height-m-700 {
  min-height: 700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-700 {
    min-height: 700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-80 {
    width: 80px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-80 {
    width: 80px !important;
  }
}

.min-height-m-800 {
  min-height: 800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-800 {
    min-height: 800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-90 {
    width: 90px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-90 {
    width: 90px !important;
  }
}

.min-height-m-900 {
  min-height: 900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-900 {
    min-height: 900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-100 {
    width: 100px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-100 {
    width: 100px !important;
  }
}

.min-height-m-1000 {
  min-height: 1000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1000 {
    min-height: 1000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-110 {
    width: 110px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-110 {
    width: 110px !important;
  }
}

.min-height-m-1100 {
  min-height: 1100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1100 {
    min-height: 1100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-120 {
    width: 120px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-120 {
    width: 120px !important;
  }
}

.min-height-m-1200 {
  min-height: 1200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1200 {
    min-height: 1200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-130 {
    width: 130px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-130 {
    width: 130px !important;
  }
}

.min-height-m-1300 {
  min-height: 1300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1300 {
    min-height: 1300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-140 {
    width: 140px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-140 {
    width: 140px !important;
  }
}

.min-height-m-1400 {
  min-height: 1400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1400 {
    min-height: 1400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-150 {
    width: 150px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-150 {
    width: 150px !important;
  }
}

.min-height-m-1500 {
  min-height: 1500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1500 {
    min-height: 1500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-160 {
    width: 160px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-160 {
    width: 160px !important;
  }
}

.min-height-m-1600 {
  min-height: 1600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1600 {
    min-height: 1600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-170 {
    width: 170px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-170 {
    width: 170px !important;
  }
}

.min-height-m-1700 {
  min-height: 1700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1700 {
    min-height: 1700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-180 {
    width: 180px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-180 {
    width: 180px !important;
  }
}

.min-height-m-1800 {
  min-height: 1800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1800 {
    min-height: 1800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-190 {
    width: 190px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-190 {
    width: 190px !important;
  }
}

.min-height-m-1900 {
  min-height: 1900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-1900 {
    min-height: 1900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-200 {
    width: 200px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-200 {
    width: 200px !important;
  }
}

.min-height-m-2000 {
  min-height: 2000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2000 {
    min-height: 2000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-210 {
    width: 210px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-210 {
    width: 210px !important;
  }
}

.min-height-m-2100 {
  min-height: 2100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2100 {
    min-height: 2100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-220 {
    width: 220px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-220 {
    width: 220px !important;
  }
}

.min-height-m-2200 {
  min-height: 2200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2200 {
    min-height: 2200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-230 {
    width: 230px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-230 {
    width: 230px !important;
  }
}

.min-height-m-2300 {
  min-height: 2300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2300 {
    min-height: 2300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-240 {
    width: 240px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-240 {
    width: 240px !important;
  }
}

.min-height-m-2400 {
  min-height: 2400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2400 {
    min-height: 2400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-250 {
    width: 250px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-250 {
    width: 250px !important;
  }
}

.min-height-m-2500 {
  min-height: 2500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2500 {
    min-height: 2500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-260 {
    width: 260px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-260 {
    width: 260px !important;
  }
}

.min-height-m-2600 {
  min-height: 2600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2600 {
    min-height: 2600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-270 {
    width: 270px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-270 {
    width: 270px !important;
  }
}

.min-height-m-2700 {
  min-height: 2700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2700 {
    min-height: 2700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-280 {
    width: 280px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-280 {
    width: 280px !important;
  }
}

.min-height-m-2800 {
  min-height: 2800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2800 {
    min-height: 2800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-290 {
    width: 290px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-290 {
    width: 290px !important;
  }
}

.min-height-m-2900 {
  min-height: 2900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-2900 {
    min-height: 2900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-300 {
    width: 300px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-300 {
    width: 300px !important;
  }
}

.min-height-m-3000 {
  min-height: 3000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3000 {
    min-height: 3000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-310 {
    width: 310px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-310 {
    width: 310px !important;
  }
}

.min-height-m-3100 {
  min-height: 3100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3100 {
    min-height: 3100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-320 {
    width: 320px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-320 {
    width: 320px !important;
  }
}

.min-height-m-3200 {
  min-height: 3200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3200 {
    min-height: 3200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-330 {
    width: 330px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-330 {
    width: 330px !important;
  }
}

.min-height-m-3300 {
  min-height: 3300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3300 {
    min-height: 3300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-340 {
    width: 340px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-340 {
    width: 340px !important;
  }
}

.min-height-m-3400 {
  min-height: 3400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3400 {
    min-height: 3400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-350 {
    width: 350px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-350 {
    width: 350px !important;
  }
}

.min-height-m-3500 {
  min-height: 3500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3500 {
    min-height: 3500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-360 {
    width: 360px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-360 {
    width: 360px !important;
  }
}

.min-height-m-3600 {
  min-height: 3600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3600 {
    min-height: 3600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-370 {
    width: 370px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-370 {
    width: 370px !important;
  }
}

.min-height-m-3700 {
  min-height: 3700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3700 {
    min-height: 3700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-380 {
    width: 380px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-380 {
    width: 380px !important;
  }
}

.min-height-m-3800 {
  min-height: 3800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3800 {
    min-height: 3800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-390 {
    width: 390px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-390 {
    width: 390px !important;
  }
}

.min-height-m-3900 {
  min-height: 3900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-3900 {
    min-height: 3900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-400 {
    width: 400px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-400 {
    width: 400px !important;
  }
}

.min-height-m-4000 {
  min-height: 4000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4000 {
    min-height: 4000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-410 {
    width: 410px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-410 {
    width: 410px !important;
  }
}

.min-height-m-4100 {
  min-height: 4100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4100 {
    min-height: 4100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-420 {
    width: 420px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-420 {
    width: 420px !important;
  }
}

.min-height-m-4200 {
  min-height: 4200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4200 {
    min-height: 4200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-430 {
    width: 430px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-430 {
    width: 430px !important;
  }
}

.min-height-m-4300 {
  min-height: 4300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4300 {
    min-height: 4300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-440 {
    width: 440px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-440 {
    width: 440px !important;
  }
}

.min-height-m-4400 {
  min-height: 4400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4400 {
    min-height: 4400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-450 {
    width: 450px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-450 {
    width: 450px !important;
  }
}

.min-height-m-4500 {
  min-height: 4500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4500 {
    min-height: 4500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-460 {
    width: 460px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-460 {
    width: 460px !important;
  }
}

.min-height-m-4600 {
  min-height: 4600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4600 {
    min-height: 4600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-470 {
    width: 470px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-470 {
    width: 470px !important;
  }
}

.min-height-m-4700 {
  min-height: 4700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4700 {
    min-height: 4700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-480 {
    width: 480px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-480 {
    width: 480px !important;
  }
}

.min-height-m-4800 {
  min-height: 4800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4800 {
    min-height: 4800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-490 {
    width: 490px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-490 {
    width: 490px !important;
  }
}

.min-height-m-4900 {
  min-height: 4900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-4900 {
    min-height: 4900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-500 {
    width: 500px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-500 {
    width: 500px !important;
  }
}

.min-height-m-5000 {
  min-height: 5000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5000 {
    min-height: 5000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-510 {
    width: 510px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-510 {
    width: 510px !important;
  }
}

.min-height-m-5100 {
  min-height: 5100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5100 {
    min-height: 5100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-520 {
    width: 520px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-520 {
    width: 520px !important;
  }
}

.min-height-m-5200 {
  min-height: 5200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5200 {
    min-height: 5200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-530 {
    width: 530px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-530 {
    width: 530px !important;
  }
}

.min-height-m-5300 {
  min-height: 5300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5300 {
    min-height: 5300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-540 {
    width: 540px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-540 {
    width: 540px !important;
  }
}

.min-height-m-5400 {
  min-height: 5400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5400 {
    min-height: 5400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-550 {
    width: 550px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-550 {
    width: 550px !important;
  }
}

.min-height-m-5500 {
  min-height: 5500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5500 {
    min-height: 5500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-560 {
    width: 560px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-560 {
    width: 560px !important;
  }
}

.min-height-m-5600 {
  min-height: 5600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5600 {
    min-height: 5600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-570 {
    width: 570px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-570 {
    width: 570px !important;
  }
}

.min-height-m-5700 {
  min-height: 5700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5700 {
    min-height: 5700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-580 {
    width: 580px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-580 {
    width: 580px !important;
  }
}

.min-height-m-5800 {
  min-height: 5800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5800 {
    min-height: 5800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-590 {
    width: 590px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-590 {
    width: 590px !important;
  }
}

.min-height-m-5900 {
  min-height: 5900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-5900 {
    min-height: 5900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-600 {
    width: 600px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-600 {
    width: 600px !important;
  }
}

.min-height-m-6000 {
  min-height: 6000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6000 {
    min-height: 6000px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-610 {
    width: 610px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-610 {
    width: 610px !important;
  }
}

.min-height-m-6100 {
  min-height: 6100px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6100 {
    min-height: 6100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-620 {
    width: 620px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-620 {
    width: 620px !important;
  }
}

.min-height-m-6200 {
  min-height: 6200px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6200 {
    min-height: 6200px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-630 {
    width: 630px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-630 {
    width: 630px !important;
  }
}

.min-height-m-6300 {
  min-height: 6300px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6300 {
    min-height: 6300px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-640 {
    width: 640px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-640 {
    width: 640px !important;
  }
}

.min-height-m-6400 {
  min-height: 6400px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6400 {
    min-height: 6400px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-650 {
    width: 650px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-650 {
    width: 650px !important;
  }
}

.min-height-m-6500 {
  min-height: 6500px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6500 {
    min-height: 6500px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-660 {
    width: 660px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-660 {
    width: 660px !important;
  }
}

.min-height-m-6600 {
  min-height: 6600px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6600 {
    min-height: 6600px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-670 {
    width: 670px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-670 {
    width: 670px !important;
  }
}

.min-height-m-6700 {
  min-height: 6700px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6700 {
    min-height: 6700px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-680 {
    width: 680px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-680 {
    width: 680px !important;
  }
}

.min-height-m-6800 {
  min-height: 6800px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6800 {
    min-height: 6800px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-690 {
    width: 690px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-690 {
    width: 690px !important;
  }
}

.min-height-m-6900 {
  min-height: 6900px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-6900 {
    min-height: 6900px !important;
  }
}

@media only screen and (max-width: 767px) {
  .width-m-700 {
    width: 700px !important;
  }
}

@media only screen and (min-width: 767px) {
  .width-d-700 {
    width: 700px !important;
  }
}

.min-height-m-7000 {
  min-height: 7000px !important;
}

@media only screen and (min-width: 767px) {
  .min-height-d-7000 {
    min-height: 7000px !important;
  }
}

.texto-legal {
  font-size: 14px !important;
}

.guia-banner-leer-mas {
  color: #fff !important;
  text-decoration: underline;
}
.guia-banner-leer-mas:hover, .guia-banner-leer-mas:focus, .guia-banner-leer-mas:visited {
  color: #fff !important;
  text-decoration: underline;
}

.caja-filtro {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 15px 0;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9;
}
.caja-filtro.movil.active {
  display: block !important;
}
@media only screen and (min-width: 767px) {
  .caja-filtro {
    width: max-content;
    position: absolute;
    top: 68px;
    left: unset;
    transform: unset;
  }
}
.caja-filtro .headerBuscador {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.caja-filtro .headerBuscador .text {
  text-transform: uppercase;
  color: #b0aeaf;
  font-size: 14px;
}
.caja-filtro .headerBuscador .cerrarBuscador {
  width: 15px;
  height: 15px;
}
.caja-filtro .headerBuscador .cerrarBuscador img {
  width: 100%;
}
.caja-filtro .titleBuscador {
  font-size: 18px;
  margin-bottom: 30px;
}
.caja-filtro .footerBuscador {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
.caja-filtro .footerBuscador .btn-continuar, .caja-filtro .footerBuscador .btn-buscar, .caja-filtro .footerBuscador .btn-volver {
  background: #e59eaf;
  width: 120px;
  padding: 10px;
  border-radius: 20px;
  font-size: 14px;
}
.caja-filtro .footerBuscador .btn-volver {
  background: #e5e5e5;
}
.caja-filtro .columna {
  display: flex;
  flex-direction: column;
  width: 125px;
  text-align: center;
  flex: 1;
}
.caja-filtro.cajaEdad {
  background: #fff;
  border-radius: 8px;
  display: inline-block;
  font-family: inherit;
}
.caja-filtro.cajaEdad .edades {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.caja-filtro.cajaEdad .edades::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  background: #ddd;
  transform: translateX(-50%);
}
.caja-filtro.cajaEdad .edades .edad {
  padding: 4px 0;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.caja-filtro.cajaEdad .edades .edad:hover {
  color: #000;
  background: #f2f2f2;
}
.caja-filtro.cajaEdad .edades .edad.active {
  background: #f2f2f2;
  position: relative;
}
.caja-filtro.cajaEdad .edades .edad.active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 10px;
  height: 5px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  transform: rotate(-45deg);
}
.caja-filtro.cajaPrecio {
  padding: 15px;
}
.caja-filtro.cajaPrecio .columna {
  width: max-content;
}
.caja-filtro.cajaPrecio .precios {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 4px;
}
.caja-filtro.cajaPrecio .precios input[type=checkbox] {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 1px solid #000; /* borde negro externo */
  border-radius: 20px;
  margin-right: 5px;
  cursor: pointer;
}
.caja-filtro.cajaPrecio .precios input[type=checkbox]:checked {
  background: #ecd0d7; /* rosa */
  box-shadow: 0 0 0 2px #fff inset; /* borde blanco interno de 2px */
}
@media only screen and (max-width: 767px) {
  .caja-filtro.cajaPrecio .precios {
    width: 100px;
    margin: 0 auto;
  }
}
.caja-filtro.cajaPrecio .precios .precio {
  margin-bottom: 4px;
  text-align: left;
  margin-top: 1px;
  color: #1C1B1F;
  font-size: 14px;
  font-weight: 400;
}
.caja-filtro.cajaTipo {
  padding: 12px;
  font-size: 14px;
}
.caja-filtro.cajaTipo ul.listadoTipo {
  height: 300px;
  overflow: auto;
}
.caja-filtro.cajaTipo ul li.tipo .tipoHeader {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.caja-filtro.cajaTipo ul li.tipo .tipoHeader.selected {
  background: #e5e5e5;
}
.caja-filtro.cajaTipo ul li.tipo .tipoHeader .imagen {
  flex: 0 0 60px;
  text-align: left;
  margin: 0 5px 0 0;
  background-color: #e5e5e5;
  border-radius: 20px;
}
.caja-filtro.cajaTipo ul li.tipo .tipoHeader .tipoNombre {
  font-size: 14px;
  font-weight: 600;
}
.caja-filtro.cajaTipo ul li.tipo ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-left: 15px;
  margin-bottom: 0;
  padding-left: 0;
}
.caja-filtro.cajaTipo ul li.tipo.active ul {
  max-height: 500px;
  margin-bottom: 5px;
}
.caja-filtro.cajaTipo ul li.tipo li.subTipo {
  font-size: 14px;
  padding: 10px;
  position: relative;
  text-align: left;
}
.caja-filtro.cajaTipo ul li.tipo li.subTipo:last-child {
  margin-bottom: 20px;
}
.caja-filtro.cajaTipo ul li.tipo li.subTipo input {
  appearance: none;
}
.caja-filtro.cajaTipo ul li.tipo li.subTipo.active {
  background: #e5e5e5;
}
.caja-filtro.cajaTipo ul li.tipo li.subTipo.active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 10px;
  height: 5px;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
  transform: rotate(-45deg);
}

/* PRUEBA DESPLIEGUE */
.home-cuenta-atras-curso {
  padding: 15px 20px;
  background: #FFE9E9;
  text-align: right;
  color: #1C1B1F;
  font-size: 18px;
  font-weight: 400;
}
.home-cuenta-atras-curso strong {
  font-weight: 700;
}

.container-rebajas-bloque .container-bannerTextoFlotante.desktop {
  margin-bottom: 0;
}
.container-rebajas-bloque .container_banner.banner-rebajas-movil {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .container-rebajas-bloque .container_banner.banner-rebajas-movil {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 767px) {
  .container-rebajas-bloque .container_banner.banner-rebajas-movil {
    display: none;
  }
}
.container-rebajas-bloque .container_banner.banner-rebajas-movil .imagenes_banner.movil {
  margin-bottom: 0;
  gap: 0;
}
.container-rebajas-bloque .container_banner.banner-rebajas-movil .container-bannerTextoFlotante {
  margin-bottom: 0;
}
.container-rebajas-bloque .container_banner.banner-rebajas-movil .container-bannerTextoFlotante picture img {
  display: block;
}
@media only screen and (max-width: 767px) {
  .container-rebajas-bloque .container_banner.banner-rebajas-movil .floatingText-bannerTextoFlotante.segundoTextoFlotante {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: 10px !important;
    width: max-content !important;
    max-width: calc(100% - 20px);
  }
  .container-rebajas-bloque .container_banner.banner-rebajas-movil .floatingText-bannerTextoFlotante.segundoTextoFlotante .floatingTextHeader-bannerTextoFlotante,
  .container-rebajas-bloque .container_banner.banner-rebajas-movil .floatingText-bannerTextoFlotante.segundoTextoFlotante .floatingTextFooter-bannerTextoFlotante {
    text-align: center;
  }
  .container-rebajas-bloque .container_banner.banner-rebajas-movil .floatingText-bannerTextoFlotante.segundoTextoFlotante .floatingTextFooter-bannerTextoFlotante {
    margin-left: auto;
    margin-right: auto;
  }
}

.container-vac-bloque .container-bannerTextoFlotante.desktop {
  margin-bottom: 0;
}
.container-vac-bloque .container_banner.banner-funtastic-summer-movil {
  margin-bottom: 0;
}
@media only screen and (min-width: 767px) {
  .container-vac-bloque .container_banner.banner-funtastic-summer-movil {
    display: none;
  }
}
.container-vac-bloque .container_banner.banner-funtastic-summer-movil .imagenes_banner.movil {
  margin-bottom: 0;
  gap: 0;
}
.container-vac-bloque .container_banner.banner-funtastic-summer-movil .container-bannerTextoFlotante {
  margin-bottom: 0;
}
.container-vac-bloque .container_banner.banner-funtastic-summer-movil .container-bannerTextoFlotante picture img {
  display: block;
}
.container-vac-bloque .home-cuenta-atras-curso {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .container-vac-bloque .home-cuenta-atras-curso {
    font-size: 16px;
  }
}

/*# sourceMappingURL=home2025.css.map */
