/** Shopify CDN: Minification failed

Line 1828:0 Unexpected "}"

**/
/*carrito pagina*/
#main-cart-items > div > div > div > .cart-page-column > div > .block-accordion{
  display:none;
}

#main-cart-items > div > div > div > .aside--content > div > div > h1{
  color:#9ed683;
  font-size: 2.5em !important;
}

#main-cart-items > div > div > div > .cart-page-column > div > .card-total > div > .js-contents-subtotal > h4{
  color:#9ed683;
  font-size: 2.5em !important;
}

/*header*/
/*#shopify-section-header  ul > li:nth-child(4) > a > span{
  color:#9ed683;
}*/
#shopify-section-header > div > div > div > div.row.justify-content-between > div > div:nth-child(1) > mega-menu > ul > li:nth-child(4) > a > span{
  color: #77b8e2;
}



#shopify-section-template--23949884784913__16643761521a16538a flow-type > div > div > .swiper-slide-text{
  visibility:visible !important;
}

#shopify-section-header .hdr-content {
    background-color: white !important;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > ul > li:nth-child(4) > a > span{
  color:#77b8e2 !important;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > ul > li > a > span{
  color: #9ed683;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > ul > li > a::after{
  background-color: #9ed683;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > ul > li.mmenu-submenu-open.mmenu-submenu-active > ul > li > a > span{
  color: #9ed683;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > div{
  color: #9ed683 !important;
}

#tabMenu > div > div > div.scroll-content > slide-menu > div > div > a{
  color: #9ed683 !important;
}

/*#shopify-section-header ul>li:nth-child(4)>a>span{
  color:#9ed683;
}*/

#Sticky-header > div > div > div > div:nth-child(1) > mega-menu > ul > li:nth-child(4) > a > span{
  color:#77b8e2 !important;
}

#shopify-section-header .dropdn_account{
  display:inline-block !important;
}

#shopify-section-header > div > div > div > div.row.justify-content-between > div > div:nth-child(1) > mega-menu > ul > li:nth-child(5){
  display:none !important;
}
#Sticky-header > div > div > div > div:nth-child(1) > mega-menu > ul > li:nth-child(5){
  display:none !important;
}

#shopify-section-header div > mega-menu > ul span{
  color: #9ed683;
}

/*search*/
#predictive-search-results > div > h2, #searchModal > div > div > div > h2{
  color:#9ed683;
  font-size:3em;
}

#searchModal > div.modal-wrap-scroll.js-dropdn-content-scroll > div.scroll-content > div > div{
  font-size:1.2em;
}

/*quick view*/
.modal-quickview div.prd-block-actions.js-sticky-add-to-cart-marker > div.form-control-wrap{
  display:none;
}

.modal-quickview div.prd-block-actions.js-sticky-add-to-cart-marker > div > div{
  position:initial !important;
}

/*tabs guia*/
.tallasTab{
  display: flex;
  flex-direction: column;
  gap:10px;
}
.tallasTab br{
  display:none !important;
}

/* filtro catalogo */
#filterColumn > div > div.category-page-title > h2{
  font-size:2.5em;
  color:#9ed683;
}

#FacetFiltersForm filter-block > div.sidebar-block_title > .heading-font, #FacetFiltersForm filter-block > div.sidebar-block_title >  .sidebar-block_title_text{
  font-size:2.5em;
  color:#9ed683;
  font-family: ProximaScream !important;
}

#FacetFiltersForm .sidebar-block_title > .toggle-arrow > span{
  background-color:#9ed683 !important;
}

/*general*/
.swiper-slide{
  height:auto !important;
}

/* =====================================================================
   BUMCO-TAG — Tag de descuento (-X% OFF + Y% EXTRA)
   ---------------------------------------------------------------------
   Estructura HTML (rendea en snippets/product-card-badges.liquid):
     <div class="bumco-tag bumco-tag--with-bonus">
       <span class="bumco-tag__primary">-19% <span class="bumco-tag__off">OFF</span></span>
       <span class="bumco-tag__bonus">+ 5% EXTRA</span>
     </div>

   COMO TUNEAR:
   Cambia los valores de las CSS variables abajo. Hay 3 contextos:
     1) Default        → carrusel del home (.bumco-tag base).
     2) Grid           → colecciones / busqueda (override scopeado).
     3) Bonus active   → cuando hay segunda linea (auto via variant).
   ===================================================================== */

.bumco-tag {
  /* ---- CONFIGURACION (cambia estos valores libremente) ---- */
  --tag-bg: #FF4C69;                                  /* color de fondo */
  --tag-text: #ffffff;                                /* color del texto */
  --tag-radius: 10px;                                 /* esquinas */
  --tag-shadow: 0 4px 12px rgba(255, 76, 105, .35);   /* sombra */
  --tag-divider: rgba(255, 255, 255, .3);             /* linea entre las 2 filas */
  --tag-row-height: 50px;                             /* alto de cada fila */
  --tag-row-padding-x: 20px;                          /* aire horizontal */
  --tag-font-primary: 16px;                           /* tamaño "-X% OFF" */
  --tag-font-bonus: 13px;                             /* tamaño "+ Y% EXTRA" */
  --tag-font-weight: 800;                             /* grosor */
  --tag-letter-spacing: .3px;                         /* tracking */

  /* ---- ESTILOS BASE (mejor no tocar) ---- */
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--tag-bg);
  color: var(--tag-text);
  border-radius: var(--tag-radius);
  box-shadow: var(--tag-shadow);
  overflow: hidden;
  width: max-content;
  line-height: 1;
  text-align: center;
  height:auto !important;
}

.bumco-tag__primary,
.bumco-tag__bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 4px;
  font-weight: var(--tag-font-weight);
  letter-spacing: var(--tag-letter-spacing);
  white-space: nowrap;
  color: inherit;
}

.prd-label--sale{
  padding: 5px 10px !important;
}

.bumco-tag__primary { font-size: var(--tag-font-primary); }
.bumco-tag__bonus {
  font-size: var(--tag-font-bonus);
  border-top: 1px solid var(--tag-divider);
}

/* La palabra "OFF" un poco mas chica que el porcentaje */
.bumco-tag__off {
  font-size: .78em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 2px;
}

/* Desktop: tag un toque mas grande */
@media (min-width: 768px) {
  .bumco-tag {
  
    --tag-row-padding-x: 24px;
    --tag-font-primary: 18px;
    --tag-font-bonus: 14px;
  }
}

/* ---- Override en GRID (colecciones / busqueda): mas compacto ---- */
#product-grid .bumco-tag,
.prd-grid .bumco-tag,
.collection-grid-section .bumco-tag {
  --tag-radius: 8px;
  --tag-shadow: 0 3px 10px rgba(255, 76, 105, .3);
  --tag-row-height: 36px;
  --tag-row-padding-x: 14px;
  --tag-font-primary: 14px;
  --tag-font-bonus: 11px;
}
@media (min-width: 768px) {
  #product-grid .bumco-tag,
  .prd-grid .bumco-tag,
  .collection-grid-section .bumco-tag {
    --tag-row-height: 40px;
    --tag-font-primary: 15px;
    --tag-font-bonus: 12px;
  }
}

/* ---- Cuando esta el "+ EXTRA" activo, sumar 4px de alto por fila ---- */
.bumco-tag--with-bonus {
  --tag-row-height: 46px;
}
@media (min-width: 768px) {
  .bumco-tag--with-bonus { --tag-row-height: 52px; }
}
#product-grid .bumco-tag--with-bonus,
.prd-grid .bumco-tag--with-bonus,
.collection-grid-section .bumco-tag--with-bonus {
  --tag-row-height: 40px;
}
@media (min-width: 768px) {
  #product-grid .bumco-tag--with-bonus,
  .prd-grid .bumco-tag--with-bonus,
  .collection-grid-section .bumco-tag--with-bonus {
    --tag-row-height: 44px;
  }
}

/* Carrusel de productos: sin padding en el slide; el margin lo controla
   Swiper via spaceBetween (no tocar margin aqui o se rompe el gap). */
.carruselProductos .swiper-wrapper > .swiper-slide,
.carruselProductos .swiper-slide {
  padding: 0 !important;
  /* margin: SE RESPETA el inline que pone Swiper para spaceBetween */
}
.carruselProductos .swiper-slide > product-card,
.carruselProductos .swiper-slide .prd {
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}
.carruselProductos .swiper-slide .prd-bot,
.carruselProductos .swiper-slide .prd-hover {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

@media only screen and (min-width: 900px){
.swiper-slide product-card .prd-name a{
  font-size:22px !important;
  line-height: 1.2;
}
  .swiper-slide product-card .prd-rating .rating{
    font-size:16px !important;
  }

  #product-grid product-card .prd-name a{
    font-size:22px !important;
  }

  #product-grid > div > div > div > product-card > div > .prd-rating .rating{
    font-size:16px !important;
  }
}

/*home*/
#tab-panales .toggle-arrow::after, #tab-toallitas .toggle-arrow::after, div > div > div > .prd-block-info form > .tab-accordion-item > label > span::after, #shopify-section-template--23949884784913__custom_liquid_gmwzT4 > div > div > span::after{
  content: "+";
    color: white;
    border-radius: 100px;
    display: inline-block;
    width: 12px;
    height: 12px;
    top: -11px;
    position: relative;
    left: -6.5px;
  font-family: 'Arial', monospace;
}

#tab-panales .block-accordion div>input:checked~label .toggle-arrow::after, #tab-toallitas .block-accordion div>input:checked~label .toggle-arrow::after,.prd-block-info .block-accordion form > .tab-accordion-item > input:checked~label > span::after{
  content: "-";
  top: -14px;
  left: -4.5px;
}


/*carrusel lados*/
#swiper-wrapper-1d74b956f42ab7de{
  padding-inline-start:50px;
  padding-inline-end:50px;
}

#tab-panales > div > form > .tab-accordion-item > label > .toggle-arrow, #tab-toallitas > div > form > .tab-accordion-item > label > .toggle-arrow, div > div > div > .prd-block-info form > .tab-accordion-item > label > span {
  background-color: #77b8e2 !important;
  padding: 20px !important;
  top: 12px !important;
  right: 20px !important;
  border-radius:100px;
}

input {
  border-radius: 500px;
  border: 0;
  background-color: #efa059;
  color: white;
  font-size: 1.5em;
  font-weight: 700;
  padding: 15px 50px;
}

faq-section > div > div > div > div:nth-child(1){
  display: flex;
    flex-direction: column;
    justify-content: center;
}

.prd-icon{
    padding: 10px;
    border-radius: 100px;
  border:0 !important;
}

.prd quickview-popup{
  opacity: 1;
  transform: translateY(0);
}

.prd-icon{
  background-color: white;
}
@media only screen and (min-width: 600px){
  #category-image-container > div{
  padding-bottom: 64vh;
}
}


.swiper-slide:nth-child(1) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(1) #primary{
  fill:#42AD6A;
}

product-card.swiper-slide:nth-child(1) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(1) .lumia-icon path, .swiper-slide:nth-child(1) .prd-icons > form > button > svg > path{
  fill:#42AD6A !important;
}
#product-grid .prd-grid>div:nth-child(1)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(1) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#42AD6A !important;
}

.prd-grid.swiper-slide:nth-child(2) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(2) .lumia-icon path,.swiper-slide:nth-child(2) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(2) #primary{
  fill:#B21E6F ;
}
#product-grid .prd-grid>div:nth-child(2)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(2) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#B21E6F !important;
}

.prd-grid.swiper-slide:nth-child(3) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(3) .lumia-icon path,.swiper-slide:nth-child(3) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(3) #primary{
  fill:#77B8E2 ;
}
#product-grid .prd-grid>div:nth-child(3)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(3) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#77B8E2 !important;
}

.prd-grid.swiper-slide:nth-child(4) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(4) .lumia-icon path,.swiper-slide:nth-child(4) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(4) #primary{
  fill:#FCC857 ;
}
#product-grid .prd-grid>div:nth-child(4)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(4) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#FCC857 !important;
}

.prd-grid.swiper-slide:nth-child(5) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(5) .lumia-icon path,.swiper-slide:nth-child(5) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(5) #primary{
  fill:#3bbfbc;
}
#product-grid .prd-grid>div:nth-child(5)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(5) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#3bbfbc !important;
}

.prd-grid.swiper-slide:nth-child(6) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(6) .lumia-icon path,.swiper-slide:nth-child(6) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(6) #primary{
  fill:#F18092 ;
}
#product-grid .prd-grid>div:nth-child(6)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(6) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#F18092 !important;
}

.prd-grid.swiper-slide:nth-child(7) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(7) .lumia-icon path,.swiper-slide:nth-child(7) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(7) #primary{
  fill:#AAACD9 ;
}
#product-grid .prd-grid>div:nth-child(7)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(7) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#AAACD9 !important;
}
.prd-grid.swiper-slide:nth-child(8) div.prd-icons > wishlist-button > a > svg > path, .swiper-slide:nth-child(8) .lumia-icon path,.swiper-slide:nth-child(8) .prd-icons > form > button > svg > path, .swiper-slide:nth-child(8) #primary{
  fill:#0C4C96 ;
}
#product-grid .prd-grid>div:nth-child(8)  product-card  button  svg  path, #product-grid > div > div > div:nth-child(8) > product-card > .prd-image-wrap div.prd-icons svg > path{
  fill:#0C4C96 !important;
}

swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-prev::before{
  background-color:#efa059 !important;
}

swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-next::before{
  background-color:#efa059 !important;
}

swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-prev::after{
  color:white !important;
}

swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-next::after{
  color:white !important;
}

swiper-carousel > div > div.swiper-arrows-carousel.container{
  max-width:95% !important;
}

swiper-carousel > div > .swiper-pagination-bullets{
  display:none;
}

#shopify-section-template--23949884784913__index_product_carousel_MzqrX3 > div > div > div.row.gy-4.flex-row > div > div > a{
  font-size: 1.4em;
    min-height: 45px;
    line-height: 18px;
    padding-left: 40px;
    padding-right: 40px;
  margin-top:25px;
}

#shopify-section-template--23949884784913__index_testimonials_cd4dfe > div > div > div.row.border-radius-md.gx-0.bg-alt{
  background-color: transparent !important;
}

div.review-item-rating > div > span::before{
  background-color:#ebb339;
}

.disclaimerTesti{
  text-align: center;
    font-size: 0.85em;
    color: #6b6b6b;
}


#shopify-section-template--23949884784913__index_blog_posts_6DxccQ > div > .container{
  margin-top:-4%;
}

.flechabread{
    font-size: 1.3em;
    line-height: 0.1em;
    margin: 0 10px;
  }

.containerSelectC{
  position:relative;
}

.containerSelectC > .toggle-arrow{
      position: absolute;
  background-color: #efa059 !important;
    padding: 26px !important;
    top: 12px !important;
    right: 20px !important;
    border-radius: 100px;
    width: 10px;
    height: 10px;
  font-weight: 700;
    font-size: 1.5em;
  pointer-events: none; 
}

@media (hover: hover), (hover: none) and (min-width: 1025px) {
    .image-hover-scale>.prd-image:hover>img {
      transform:none !important;
    }
  .prd.hovered .prd-image>img+img{
    transform:none !important;
  }
}

/*footer*/

#Footer-footer > div.footer-content.py-2.py-lg-8 > div > div > div:nth-child(1) > div > a{
  --logo-max-width: 80% !important;
}

.enlacesFooter{
  margin-top:20px;
  text-decoration:underline;
  display: flex;
  justify-content: space-between;
}

.footer-social li{
      background-color: white;
    border-radius: 50px;
}

.footer-social li a{
  color:#8fb9fa !important;
  padding: 10px;
}

.footer-social li svg {
    width: 20px;
    height: 20px;
}

.footer-list-title{
  font-family: Laussane !important;
  text-transform: none !important;
  font-size: 1.8em !important;
}

/*Tallas*/
.tallacont{
  background-position: center;
    background-size: contain;
}

.filaTallas:nth-child(1) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA1RN.webp?v=1741805399");
}

.filaTallas:nth-child(1) > div:nth-child(2){
  background-image:url("/cdn/shop/files/2TALLA2CH.webp?v=1741805399");
}

.filaTallas:nth-child(1) > div:nth-child(3){
  background-image:url("/cdn/shop/files/2TALLA3M.webp?v=1741805399");
}

.filaTallas:nth-child(1) > div:nth-child(4){
  background-image:url("/cdn/shop/files/2TALLA4G_de338662-3352-4e7c-8c54-b05b2f3955a1.webp?v=1747410034");
}

.filaTallas:nth-child(2) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA5XG_5de53814-c982-444d-9060-b6c51b2abba0.webp?v=1747410034");
}

.filaTallas:nth-child(2) > div:nth-child(2){
  background-image:url("/cdn/shop/files/2TALLA6XG_b1671dfa-4585-40a3-9861-6c5a3e30c849.webp?v=1747410034");
}

.filaTallas:nth-child(2) > div:nth-child(3){
  background-image:url("/cdn/shop/files/2TALLA7XG.webp?v=1741805399");
}

.botonTalla{
     background-color: #ee9f59;
    color: #fff;
    padding: 6px 60px;
    border-radius: 50px;
    font-size: 1.5em;
}

.botonTalla:hover{
  background-color: white;
  color: #ee9f59;
}

.columnaTip{
  display: flex;
    flex-direction: column;
    justify-content: center;
  align-items:center;
}

.columnaTip img{
  width:600px;
}

.tituloTip{
  font-size: 6em;
    text-transform: uppercase;
    text-align: left;
    color: #9ed683;
}

.tituloTip span{
  font-size: 1.8em;
  color: #77b8e2;
}

.tip p{
  font-size: 1.6em;
    line-height: 1.4;
}

.columnaTipB{
  display: flex;
    flex-direction: column;
    justify-content: center;    
  position: relative;
}

.columnaTipB img{
  width:350px !important;
}

.columnaTipB:nth-child(2){
  background-color: #0c4b95;
  border-radius: 30px;
  padding: 50px 0px;
}

.tituloTipB{
  font-size: 8em;
    text-transform: uppercase;
    text-align: left;
    color: #9ed683;
  line-height:1em;
}

@media only screen and (max-width: 600px) {
  .columnaTip img{
  width:350px;
}
  .tituloTip{
  font-size: 3em;
    text-transform: uppercase;
    text-align: center;
    color: #9ed683;
}
  .tituloTipB{
    font-size: 4em;
    text-align:center;
  }
  .tituloTipB span{
    color:#77b8e2;
  }
  .tituloTipB br:nth-child(1){
    display:none;
  }
  .columnaTipB:nth-child(2){
    width:85%;
    padding:40px 0;
    display: flex;
    align-items: center;
  }
}

/*contacto*/

#select_location {
  margin-bottom: 20px;
  font-size: 1.5em;
  border: 0;
  background-color: #e8f4f9;
  color: #6b6b6b;
  padding: 15px 80px 15px 30px;
  font-weight: 700;
  border-radius: 30px;
  -webkit-appearance: none;
}

.contact-form label {
  font-size:1.5em;
  color: #9ed683;
}

.contact-form input, .contact-form textarea {
  border-bottom:1px solid #EFA059;
  color:black;
}

.col-12:nth-child(1) .containerbotonM{
     display: none;
  }

/*categorico*/

#product-grid > div > div > div:nth-child(1) > product-card{
  background-color: #42AD6A !important;
}

#product-grid > div > div > div:nth-child(2) > product-card{
  background-color: #B21E6F !important;
}

#product-grid > div > div > div:nth-child(3) > product-card{
  background-color: #77B8E2 !important;
}

#product-grid > div > div > div:nth-child(4) > product-card{
  background-color: #FCC857 !important;
}

#product-grid > div > div > div:nth-child(5) > product-card{
  background-color: #3bbfbc !important;
}

#product-grid > div > div > div:nth-child(6) > product-card{
  background-color: #F18092 !important;
}

#product-grid > div > div > div:nth-child(7) > product-card{
  background-color: #AAACD9 !important;
}

#product-grid > div > div > div:nth-child(8) > product-card{
  background-color: #0C4C96 !important;
}

#product-grid > div > div > div > product-card{
    border-radius: 25px;
}

#product-grid > div > div > div > product-card .prd-name a{
  color:white;
}

#product-grid > div > div > div > product-card .prd-rating .rating-star:before{
  background-color:white;
}

.iconosToallitas{
  position: absolute;
    top: 20px;
    right: 30px;
}
.iconosToallitas form{
    margin-bottom: 25px;
}

.iconosToallitas svg, .iconosToallitas path{
  color: #0c4b95 !important;
  fill:#0c4b95 !important;
}

.iconosToallitas form .prd-icon{
  padding: 12px 17px;
}

.iconosToallitas quickview-popup .prd-icon{
  padding: 15px;
}

#shopify-section-template--23949884752145__custom_liquid_E7mfxw{
  margin-top:-100px;
  margin-bottom:-95px;
}

#shopify-section-template--24148915978513__index_product_carousel_azddQ3{
  margin-top:-100px !important;
}

/*producto*/
 
div > div.container > div > .prd-block-info >  .mt-product-global:nth-child(10){
  display:none !important;
}

#shopify-section-template--24171861606673__main > div > .container > div > div.prd-block-info > div:nth-child(10){
  display:block !important;
}

.product-section .prd-options .form-group .form-control{
    font-weight: 700;
    font-size: 1em;
    color: #6b6b6b;
    padding: 5px 40px 5px 15px;
  height:50px;
  border-radius:60px;
}

variant-selects .form-control-wrap--select:after{
  -webkit-mask: none;
  content: "˅" ;
    color: white;
    border-radius: 100px;
    display: inline-block t;
    width: 16px ;
    height: 16px ;
    position: absolute;
    right: 16.5px ;
    font-family: monospace;
    background-color: #efa059;
    padding: 12px 22px 23px 15px;
    z-index: 999;
    top: calc(50% - 18px);
}   

.product-section .prd-block-info .prd-block-row{
  margin-top:0;
}

.breadcrumb-item a{
  color:#77b8e2;
}

.breadcrumb-item.active{
  color:#666666;
}

.breadcrumb-item::before{
  background-color:#77b8e2 !important;
}

#prdMainImage{
  border: 1px solid #ccc;
}

.prd-block-desc{
  margin-top:5px !important;
  font-size: 1.4em;
    line-height: 2em;
}

div.container.show-on-scroll.is-visible > div > div.prd-block-info > div:nth-child(6){
  width:75%;
}

div.prd-block-actions.js-sticky-add-to-cart-marker > div > div:nth-child(1){
  position: block;
    top: 220px;
    right: 0;
  height: 50px;
  border:1px solid #e1e2ea;
  border-radius:100px;
}

div.prd-block-actions.js-sticky-add-to-cart-marker > div > div:nth-child(1) input{
  color:#6b6b6b;
  font-weight:700;
}

div.prd-block-actions.js-sticky-add-to-cart-marker > div > div:nth-child(1)>div{
  height:50px !important;
}

div.prd-block-actions.js-sticky-add-to-cart-marker > div > div:nth-child(1)>div button{
  color:#efa059;
}

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

.block-accordion label {
  font-size: 1.4em !important;
  color: #6B6B6B !important;
  background-color: #e8f4f9 !important;
  border-radius: 50px !important;
  margin-bottom: 20px !important;
  padding: 20px 50px !important;
  text-transform: none !important;
}

div > .container > div > .prd-block-info > div > form > div > div > div > div > p{
  color: #6B6B6B !important;
}
div > .container > div > .prd-block-info > div > form > div > div > div > div > div > ul{
  color: #6B6B6B !important;
}

.tab-accordion-item {
  border-bottom: none !important;
}

/*swiper-carousel > div > div > div:nth-child(1) > product-card{
  background-color: #42AD6A !important;
}

swiper-carousel > div > div > div:nth-child(2) > product-card{
  background-color: #B21E6F !important;
}

swiper-carousel > div > div > div:nth-child(3) > product-card{
  background-color: #77B8E2 !important;
}

swiper-carousel > div > div > div:nth-child(4) > product-card{
  background-color: #FCC857 !important;
}

swiper-carousel > div > div > div:nth-child(5) > product-card{
  background-color: #0C4C96 !important;
}

swiper-carousel > div > div > div:nth-child(6) > product-card{
  background-color: #F18092 !important;
}

swiper-carousel > div > div > div:nth-child(7) > product-card{
  background-color: #AAACD9 !important;
}*/

.carruselProductos > div > div > div:nth-child(1) {
  background-color: #3bbfbc !important;
}

.carruselProductos > div > div > div:nth-child(1) div.prd-icons svg > path{
  fill: #3bbfbc !important;
}

.carruselProductos > div > div > div:nth-child(2) {
  background-color: #f18192 !important;
}

.carruselProductos > div > div > div:nth-child(2) div.prd-icons svg > path{
  fill: #f18192 !important;
}

.carruselProductos > div > div > div:nth-child(3) {
  background-color: #a8a9d6 !important;
}

.carruselProductos > div > div > div:nth-child(3) div.prd-icons svg > path{
  fill: #a8a9d6 !important;
}

.carruselProductos > div > div > div:nth-child(4) {
  background-color: #0c4b95 !important;
}

.carruselProductos > div > div > div:nth-child(4) div.prd-icons svg > path{
  fill: #0c4b95 !important;
}

.carruselProductos > div > div > div:nth-child(5){
  background-color: #43ae6a !important;
}

.carruselProductos > div > div > div:nth-child(5) div.prd-icons svg > path{
  fill: #43ae6a !important;
}

.carruselProductos > div > div > div:nth-child(6) {
  background-color: #b21e70 !important;
}

.carruselProductos > div > div > div:nth-child(6) div.prd-icons svg > path{
  fill: #b21e70 !important;
}

.carruselProductos > div > div > div:nth-child(7) {
  background-color: #77b5de !important;
}

.carruselProductos > div > div > div:nth-child(7) div.prd-icons svg > path{
  fill: #77b5de !important;
}

.carruselProductos > div > div > div:nth-child(8) {
  background-color: #fcc858 !important;
}

.carruselProductos > div > div > div:nth-child(8) div.prd-icons svg > path{
  fill: #fcc858 !important;
}

.carruselProductos > div > div > div:nth-child(9) {
  background-color: #3bbfbc !important;
}

.carruselProductos > div > div > div:nth-child(9) div.prd-icons svg > path{
  fill: #3bbfbc !important;
}

.carruselProductos > div > div > div:nth-child(10) {
  background-color: #f18192 !important;
}

.carruselProductos > div > div > div:nth-child(10) div.prd-icons svg > path{
  fill: #f18192 !important;
}

.carruselProductos > div > div > div:nth-child(11) {
  background-color: #a8a9d6 !important;
}

.carruselProductos > div > div > div:nth-child(11) div.prd-icons svg > path{
  fill: #a8a9d6 !important;
}

.carruselProductos > div > div > div:nth-child(12) {
  background-color: #0c4b95 !important;
}

.carruselProductos > div > div > div:nth-child(12) div.prd-icons svg > path{
  fill: #0c4b95 !important;
}

.carruselProductos > div > div > div:nth-child(13){
  background-color: #43ae6a !important;
}

.carruselProductos > div > div > div:nth-child(13) div.prd-icons svg > path{
  fill: #43ae6a !important;
}

.carruselProductos > div > div > div:nth-child(14){
  background-color: #b21e70 !important;
}

.carruselProductos > div > div > div:nth-child(14) div.prd-icons svg > path{
  fill: #b21e70 !important;
}

.carruselProductos > div > div > div:nth-child(15){
  background-color: #77b5de !important;
}

.carruselProductos > div > div > div:nth-child(15) div.prd-icons svg > path{
  fill: #77b5de !important;
}

.carruselProductos > div > div > div:nth-child(16){
  background-color: #fcc858 !important;
}

.carruselProductos > div > div > div:nth-child(16) div.prd-icons svg > path{
  fill: #fcc858 !important;
}

swiper-carousel > div > div > div > product-card{
    border-radius: 25px;
}

swiper-carousel > div > div > div > product-card .prd-name a{
  color:white;
}

swiper-carousel > div > div > div > product-card .prd-rating .rating-star:before{
  background-color:white;
}

.promo-section {
    text-align: center;
    padding: 20px;
}

.promo-section h2 {
    font-size: 24px;
  color:#9ed683;
  font-size: 4em;
    text-align: start;
      line-height: 1em;
}

.promo-section h2 span {
  font-family: ProximaScream !important;
    color: #77b8e2;
  font-size: 1.5em;
  line-height:1em;
}

/*#shopify-section-template--24171861606673__custom_liquid_rHAWLF > div > section > div > div.info > div:nth-child(4) > div > h3{
  border: none !important;
  margin:0 !important;
  padding:0 !important;
}*/

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: auto;
    flex-wrap: wrap;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.info-item img {
    width: 50px;
    height: 50px;
}

.text {
    text-align: left;
    display: block;
}

.video-container {
    width: 50%;
}

.video-container iframe {
    width: 100%;
    height: 323px;
}

@media (max-width: 768px) {

    .promo-section h2 {
  font-size: 2.7em;
      line-height: 1em;
}

.promo-section h2 span {
  font-size: 1.7em;
  line-height:1em;
}

  .video-container iframe {
    width: 100%;
    height: 198px;
}
  
    .content {
        flex-direction: column;
    }

    .video-container {
        width: 100%;
    }

    .info {
      display: flex;
    align-items: center;
        width: 100%;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }
  .info-text{
    width: 90%;
  }

    .text {
        display: none;
    }

    .text.show {
        display: block;
    }
}

/*contactanos*/
#contact_form > div.mt-5{
  margin-top:20px !important;
}

#shopify-section-template--23949884883217__main-contact{
  margin-bottom:-100px !important;
}

.contact-info-title{
  font-size:1.4em !important;
}

.contact-info-text span{
  font-size:1.4em !important;
}

#telefonosvg path:nth-child(1){
  fill:#9ed683;
}
#telefonosvg path:nth-child(2){
  fill:white;
}
#telefonosvg path:nth-child(3){
  fill:white;
}
#telefonosvg path:nth-child(4){
  fill:white;
}
#whatsappsvg path:nth-child(1){
  fill:#9ed683;
}
#whatsappsvg path:nth-child(2){
  fill:white;
}
#correosvg path:nth-child(1){
  fill:#9ed683;
}
#correosvg path:nth-child(2){
  fill:white;
}

/*prueba gratis*/
@media only screen and (min-width: 600px){
#surecust-AZlVoNTJQSWZkbVpER__surecust_forms_lock_custom_form_7n3kr4 > div > div.onst-custom-form-box.SureCust-App > div > form > div.onst-register-form-fields.SureCust-App > div:nth-child(1) > label > br{
  display:none !important;
}}

.onst-backtologin{
  display:none;
}

.onst-field label{
  font-size: 1.2em !important;
  color: #8c8c8c;
}

.onst-field input, .onst-field select{
  background-color: transparent;
    border-color: #9ed683 !important;
    border-radius: 50px !important;
  color:#8c8c8c !important;
}

.onst-custom-form button{
  background-color: #efa059 !important;
    width: 100% !important;
    border-radius: 50px !important;
    text-transform: none !important;
    font-size: 1.3em !important;
}
#surecust-AZlVoNTJQSWZkbVpER__surecust_forms_lock_custom_form_7n3kr4 > div > div.onst-custom-form-box.SureCust-App > div > form > div.onst-register-form-fields.SureCust-App > div:nth-child(1) > div{
  justify-content: center !important;
}

div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-backtologin{
  display:none !important;
}

div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-field-roptions-item{
  border: 1px solid #9ed683;
    padding: 10px;
    border-radius: 30px;
  
}
div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-field-roption-value{
  color:#9ed683
}

div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-field-roptions-item input{
  display:none !important;
}

div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-field-roptions-item:has(input:checked) {
    background-color:#efa059;
  color:white !important;
  border-color:#efa059;
}

div.onst-register-form-fields.SureCust-App > div:nth-child(1) .onst-field-roptions-item:has(input:checked) .onst-field-roption-value {
    color:white;
}

/*mobile*/
@media only screen and (max-width: 600px) {
#shopify-section-header a{
  color:white !important;
}
  .hdr-logo{
    margin-left:36% !important;
  }
  .social-bar{
    display:none !important;
  }
  /*.swiper-slide{
    width: 80vw !important;
  }*/

  .swiper-slide product-card .prd-icons > form > button{
    display: inline-block !important;
  }
  .swiper-arrows-carousel{
    display:block !important;
  }
  #shopify-section-template--23949884784913__index_testimonials_cd4dfe > .holder{
    background-position: center 36% !important;
  }
  #select_location {
  margin-bottom: 20px !important;
  font-size: 1.5em !important;
  padding: 18px 70px 18px 30px !important;
  border-radius: 300px !important;
}
#botoncomprardescubre{
  padding: 12px 50px !important;
  font-size:1.5em !important;
}
  .footer-logo{
    margin-bottom:0 !important;
  }
  .footer-block{
    padding-top: 0 !important;
    margin-top: 5px !important;
  }
  .footer-payment-wrap{
    display:none !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg div{
    color: white !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg > .holder{
    min-height:auto !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg h2{
    font-size: 2.8em !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .review-inside{
    background-color:transparent !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .swiper-arrows-carousel.container .swiper-button-next{
    right: 110px;
    top: 120px;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .swiper-arrows-carousel.container .swiper-button-prev{
    left: 110px;
    top: 120px;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .rating-star:before{
    background-color:#f4e862 !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .rating{
    position: absolute !important;
    top: 35px !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .title-wrap{
    margin-bottom:0 !important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .review-text{
    margin-top:40px !important;
    line-height:1em;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .holder > .container{
    padding:80px 0!important;
  }
  #shopify-section-template--23949884752145__index_testimonials_e7CTxg .reviews-author-name{
    margin-top:0 !important;
  }
  #shopify-section-template--23949884752145__custom_liquid_E7mfxw{
    margin-top:0 !important;
  }
  .columnaTipB img{
    width:300px !important;
  }
  #shopify-section-template--23949884752145__custom_liquid_E7mfxw p{
    font-size: 1.2em !important;
  }
  #shopify-section-template--23949884752145__custom_liquid_E7mfxw{
    margin-bottom:0 !important;
  }
  body > mobile-bottom-sticky > .hdr-mobile-bottom{
    display:none !important;
  }
  #shopify-section-template--23949884883217__main-contact{
    margin-bottom:0px !important;
  }
  .filaTallas:nth-child(1) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA1RN_21f7098c-a580-42e3-a629-9b73e1d7be83.webp?v=1742935463");
}

.filaTallas:nth-child(1) > div:nth-child(2){
  background-image:url("/cdn/shop/files/2TALLA2CH_4d1f80e2-61d8-4894-a3ad-fd419eff2754.webp?v=1742935463");
}

.filaTallas:nth-child(2) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA3M_61430235-ef10-49a7-8883-6855095d546e.webp?v=1742935463");
}

.filaTallas:nth-child(2) > div:nth-child(2){
  background-image:url("/cdn/shop/files/2TALLA4G_1.webp?v=1747410850");
}

.filaTallas:nth-child(3) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA5XG_1.webp?v=1747410849");
}

.filaTallas:nth-child(3) > div:nth-child(2){
  background-image:url("/cdn/shop/files/2TALLA6XG_1.webp?v=1747410850");
}

.filaTallas:nth-child(4) > div:nth-child(1){
  background-image:url("/cdn/shop/files/2TALLA7XG_e168c295-2dad-4629-843c-91ddde1e2b44.webp?v=1742935463");
  width:200px !important;
}
  .botonTalla{
    padding: 2px 30px !important;
    font-size: 1.2em;
  }
  .tallacont{
    width: 370px !important;
    aspect-ratio: 0.609 !important;
    padding-bottom: 7px !important;
  }
  #shopify-section-template--24095901810961__custom_liquid_HMcCFn .tip img{
    width:150px !important;
  }
  .tip p{
    font-size: 1.3em;
  }
  #shopify-section-template--24095901810961__custom_liquid_4Pfb3Y p{
    font-size:1.1em !important;
  }
  #shopify-section-template--24095901810961__custom_liquid_4Pfb3Y .containerTip{
    gap:10px !important;
  }
  .prd-block .prd-block-name{
    font-size: 1.6em !important;
    line-height: 1.2em !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg div{
    color: white !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg > .holder{
    min-height:auto !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg h2{
    font-size: 2.8em !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .review-inside{
    background-color:transparent !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .swiper-arrows-carousel.container .swiper-button-next{
    right: 110px;
    top: 120px;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .swiper-arrows-carousel.container .swiper-button-prev{
    left: 110px;
    top: 120px;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .rating-star:before{
    background-color:#f4e862 !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .rating{
    position: absolute !important;
    top: 35px !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .title-wrap{
    margin-bottom:0 !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .review-text{
    margin-top:40px !important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .holder > .container{
    padding:80px 0!important;
  }
  #shopify-section-template--24148915978513__index_testimonials_e7CTxg .reviews-author-name{
    margin-top:0 !important;
  }
  #shopify-section-template--24148915978513__index_product_carousel_azddQ3{
  margin-top:0px !important;
}
  .disclaimerTesti{
    font-size:0.7em !important;
    margin:10px 0 10px !important;
  }
  /*productos mobile*/
  .prd-block-info > .prd-block-desc > p{
    font-size: 0.9em !important;
    line-height:1.5em !important;
  }
  .loox-rating-label{
    font-size:16px !important;
  }
  
  div.prd-block-actions.js-sticky-add-to-cart-marker>div>div:nth-child(1){
    position: block !important;
        height: 42px !important;
        width: 118px !important;
        margin-top: 37px;
            right: 15px;
  }
  .product-section .prd-options .form-group .form-control{
    height: 42px !important;
  }
  variant-selects > div > div > .form-control-wrap{
    width:85% !important;
  }
  variant-selects .form-control-wrap--select:after{
  -webkit-mask: none;
    content: "˅";
    color: white;
    border-radius: 100px;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 7.5px;
    font-family: monospace;
    background-color: #efa059;
    padding: 11px 22px 22px 13px;
    z-index: 999;
    top: calc(51% - 18px);
    font-size: 20px;
} 
  .promo-section{
    padding:0 !important;
  }
  .promo-section video{
    width: 100vw !important;
    margin-top: 20px !important;
  }
  .promo-section h2{
    text-align:center !important;
    padding: 0 25px;
  }

  #prdMainImage > .prd-labels{
    display: none !important;
  }

  /*ultimos ajustes*/
  /*home*/

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-prev{
    background-color:transparent !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-prev:before{
    background-color:#efa059 !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-prev:after{
    color:white !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-next{
    background-color:transparent !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-next:before{
    background-color:#efa059 !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-next:after{
    color:white !important;
  }

  #shopify-section-template--23949884784913__index_banner_grid_UzbUgf > div > div > main-slider > div > .swiper-arrows-carousel > div.swiper-button-next > svg > circle{
    stroke:white !important;
  }

  
  div.prd-block-actions.js-sticky-add-to-cart-marker > div > div:nth-child(1){
    top: 198px;
}
  .faq-list{
    flex-direction: row !important;
    justify-content: center !important;
  }
  .faq-list li{
    width: 47% !important;
    text-align: center !important;
  }
  #shopify-section-template--23949884784913__index_faq_YyMVG7 > faq-section > div > div > div > div > .my-3{
    margin-top: 0px !important;
    margin-bottom: 40px !important;
  }
  #shopify-section-template--23949884784913__index_faq_YyMVG7 > faq-section > div > div > div > div > .title-wrap{
    display:none !important;
  }
  .review-item-author-photo{
    width:40px !important;
    height:auto !important;
  }
  #swiper-wrapper-1f22e1098af17930e > div.swiper-slide.swiper-slide-active{
    width:40px !important;
  }
  #shopify-section-template--23949884784913__index_blog_posts_Gwfgkp > div > div > swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-next{
    right: 120px !important;
    top: 245px !important;
  }
  #shopify-section-template--23949884784913__index_blog_posts_Gwfgkp > div > div > swiper-carousel > div > div.swiper-arrows-carousel.container > div.swiper-button-prev{
    left: 120px !important;
    top: 245px !important;
  }
  #shopify-section-template--23949884784913__index_blog_posts_Gwfgkp > div > div > swiper-carousel > div{
    padding-bottom:80px !important;
  }
  #shopify-section-template--23949884784913__custom_liquid_gmwzT4 > .holder--select:after{
    
  }
  #shopify-section-template--23949884784913__custom_liquid_gmwzT4 > .holder--select:after{
    -webkit-mask: none;
    content: "\2c5";
    color: #fff;
    border-radius: 100px;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 16.5px;
    font-family: 'Arial', monospace;
    background-color: #efa059;
    padding: 12px 22px 23px 15px;
    z-index: 999;
    top: calc(50% - 18px);
  }
  .prd-grid .prd-icon{
    padding:7px !important;
  }
  #shopify-section-template--23949884883217__main-contact > div > div > div > div.col.col-contact-form > div.title-wrap > h1{
    font-family: ProximaScream !important;
    color:#9ed683 !important;
    text-align: center;
  }
  .dropdn-modal-slide-title{
    color:#9ed683 !important;
  }
  .mobilemenu-social{
    background-color:#9ed683 !important;
  }
  
  #shopify-section-template--23949884621073__main > div > div > div > div > div > div > div > div > div.post-prw-teaser > p{
    font-size:1.25em !important;
  }
  #shopify-section-template--23949884784913__index_blog_posts_Gwfgkp > div > div > div > h2{
    font-size:4.5em !important;
  }
  .post-prw.post-prw--vert>.row>.post-prw-text{
    padding: 15px 25px !important;
  }
  .col-12:nth-child(2) .containerbotonM{
    display:none !important;
  }
  .col-12:nth-child(1) .containerbotonM{
     display: flex !important;
    justify-content: center;
    margin-top:30px !important;
  }
  .botonM{
     text-align: center;
  }
  #shopify-section-template--23949884784913__index_faq_YyMVG7 > faq-section > div > div > div > div.col-12.col-md-4.col-xl-5.pe-xl-8.order-1.order-md-0.mt-5.mt-md-0{
    padding-left:0 !important;
  }
  .block-accordion label{
    padding: 20px 60px 20px 30px !important;
  }
  #shopify-section-template--23949884784913__index_faq_YyMVG7 > faq-section > div > div > div > div.col-12.col-md-4.col-xl-5.pe-xl-8.order-1.order-md-0.mt-5.mt-md-0{
    margin-top: 15px !important;
  }
  .containerSelectC>.toggle-arrow{
    padding: 20px !important;
    top: 9px !important;
    right: 10px !important;
    font-size: 1.2em;
  }
  .onst-registration-form {
    padding: 0 !important;
  }
  
/*panales banner*/
  #shopify-section-template--23949884752145__index_banner_grid_PT6Try > div > div > div > .col{
    padding:0 !important;
  }
  #shopify-section-template--23949884752145__index_banner_grid_PT6Try > div > div > .row{
    max-width:100vw !important;
  }
  #shopify-section-template--23949884752145__index_banner_grid_PT6Try > div > div{
    padding:0px 10px !important;
  }
  /*toallitas banner*/
  #shopify-section-template--24148915978513__index_banner_grid_PT6Try > div > div > div > .col{
    padding:0 !important;
  }
  #shopify-section-template--24148915978513__index_banner_grid_PT6Try > div > div > .row{
    max-width:100vw !important;
  }
  #shopify-section-template--24148915978513__index_banner_grid_PT6Try > div > div{
    padding:0px 10px !important;
  }
  /*search*/
  #predictive-search-results > div > h2, #searchModal > div > div > div > h2{
  color:#9ed683;
  font-size:2em;
}

#searchModal > div.modal-wrap-scroll.js-dropdn-content-scroll > div.scroll-content > div > div{
  font-size:1.2em;
}
}

/*last*/
.regresar{
  color:#afafaf;
  font-weight: 700;
  text-align: center;
    display: block;
  text-decoration:underline;
}
.condiciones{
  color:#929292;
  font-weight: 700;
}

#shopify-section-template--24225186840849__main > div > .container > div > .prd-block-info > p:nth-child(2){
  color:#929292;
  font-weight: 700;
}

#shopify-section-template--24225186840849__main > div > .container > div > .prd-block-info > p:nth-child(1){
    color: #77b8e2;
    font-weight: 600;
    font-size: 1.8em;
    line-height: 1.2;
}

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

.easyorder-main_fields{
  padding-top:30px !important;
}

#easyorder-popup > form > div > div > .easyorder-body_field > .easyorder-popup-continue{
  display: none !important;
}

#easyorder-popup > form > div > div > div.easyorder-body_field > .easyorder-popup-submit{
  max-width: 100% !important;
  width: 100% !important;
}
#easyorder-popup > form > div:nth-child(2) > div > div:nth-child(15){
  display: none !important;
}
#easyorder-popup > form > div:nth-child(2) > div > div:nth-child(17){
  display: none !important;
}

.easyorder-popup-content .easyorder-field-holder .easyorder-head_field{
  color:#777 !important;
}

html {
  padding-bottom: 0!important;
}

#PBarNextFrame {
  display: none!important;
}

.contenedorMuestra{
  display: flex;
  gap:50px;
  justify-content: center;
}

#easyorder-field-101068 > div{
  text-transform: none !important;
}

.review-item-text{
  font-size:25px !important;
  color:white !important;
}
.textoPrueba{
      display: flex;
    justify-content: center;
  gap:80px;
}
.containerPruebas > img{
  width: 100px;
}
.containerPruebas{
      display: flex;
    flex-direction: column;
    align-items: center;
}
  #shopify-section-template--24095901810961__index_banner_grid_7CQJ49 > div > div > div > .col{
    padding:0 !important;
  }
  #shopify-section-template--24095901810961__index_banner_grid_7CQJ49 > div > div > .row{
    max-width:100vw !important;
  }
  #shopify-section-template--24095901810961__index_banner_grid_7CQJ49 > div > div{
    padding:0px 10px !important;
  }
  
  #shopify-section-template--24168461664529__index_banner_grid_VHJjXR > div > div > div > .col{
    padding:0 !important;
  }
  #shopify-section-template--24168461664529__index_banner_grid_VHJjXR > div > div > .row{
    max-width:100vw !important;
  }
  #shopify-section-template--24168461664529__index_banner_grid_VHJjXR > div > div{
    padding:0px 10px !important;
  }

  #shopify-section-template--23949884883217__index_banner_grid_VHJjXR > div > div > div > .col{
    padding:0 !important;
  }
  #shopify-section-template--23949884883217__index_banner_grid_VHJjXR > div > div > .row{
    max-width:100vw !important;
  }
  #shopify-section-template--23949884883217__index_banner_grid_VHJjXR > div > div{
    padding:0px 10px !important;
  }
}

/*#tabMenu > div > div > div.scroll-content > slide-menu > div > div > a{
  display: none !important;
}*/

.login-card__content > div > div > div > h2{
  color: #9ed683 !important;
}