/* PÁGINA DE PRODUCTO */

.titulo_producto{
    font-size: 1.2rem;
}
.detalles :where(.caracteristicas, .claim, .stock, .info_gral, .masinfo>p),
.descripcion{
    font-size: .8rem;
}
.precio{
    color:#cc222d;
}
.precio .firstNum{
    font-size: 1.5rem;
}
.detalles img{
    max-width: 50%;
}
.masinfo img{
    max-width: 100%;
}
.separador{
    max-width: 25%;
}
.underline{
    text-decoration: underline;
}
.detalles .solicitarproducto{
    cursor: pointer;
}
.detalles .solicitarproducto:hover{
    background-color: lightgray;
}
.detalles .solicitarproducto.disable{
    cursor: not-allowed;
    background-color: lightgray;
}
.sujetoadisponibilidad{
    width: 45%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1rem;
    padding: 1.5%;
}
.solicitarproducto{
    width: 45%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1rem;
    border: 2px solid black;
    padding: 1.5%;
    border-radius: 45px;
    border-top-right-radius: 15px;
}
.stock, .info_gral{
    font-size: 0.8rem;
}

.relative{
    position: relative;
}
.op-50{
    opacity: 0.2;
}
svg.boton-next, svg.boton-prev{
    position: absolute;
    bottom: 60%;
    cursor: pointer;
}
svg.boton-prev{
    left: 3%;
}
svg.boton-next{
    right: 3%;
}
.photos .active{
    border: 2px solid #cc222d;
}
.boton-mas-info{
    background-color: lightgray;
    padding: 0.5% 3%;
    border-radius: 15px;
    margin-left: 2%;
    cursor: pointer;
}
.masinfo{
    overflow: scroll;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scrollbar-color: #cc222d #fff;
}
.info-bodega{
    cursor: pointer;
}

/* INFO DE BODEGAS */
.bodegas-historia .descripcion{
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}
.bodegas-historia .descripcion:hover{
    color: #cc222d;
}
.bodegas-historia .info-texto{
    font-size: 1rem;
    line-height: 1.6rem;
}


/* BRAND AMBASADORS*/
.ba-foto{
    position: relative;
}

.bas .ba-nombre{
    position: absolute;
    bottom: 3%;
    background-color: rgba(0, 0, 0, .8);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}
.ba-info{
    max-height: 30dvh;
    overflow: scroll;
    font-size: 0.8rem;
    font-style: italic;
    border-left: 1px solid black;
    margin-block:2%;
}
.ba-pagination{
    cursor: pointer;
}
.bubble{
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-bottom: 1px solid black;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}
.bubble img{
    filter: grayscale(100);
    /* transition: filter 0.5s; */
}
.bubble img:hover{
    filter: grayscale(80);
}

.foto-regalo{
    width: 75%;
}
figcaption{
    font-size: 0.8rem;
}
/* es lo de arriba pero para los ba */
.figcaption{
    position: absolute;
    bottom: -2rem;
    font-size: .8rem;
}

/* CONFIRMACION FORMULARIO */
.check_container{
    width: 3.6rem;
    border: 2px solid gray;
    border-radius: 20px;
    padding: 0.5%;
    transition: all 0.2s linear;
}
.check_container.moved{
    border: 2px solid #3597ec;
}
.burbuja{
    width: 1.5rem;
    height: 1.5rem;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s linear;
    transform: translateX(0);
}
.burbuja.moved{
    background-color: #3597ec;
    transform: translateX(100%);
}
a.disabled{
    cursor: not-allowed;
    opacity: 0.5;
}

form{
    overflow: scroll;
}

/* MODAL BODEGA*/
.modal-bodega{
    position: fixed;
    background-color:rgba(255,255,255, 0.8);
    filter: blur(50%);
    top:0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    z-index: 1201 !important;
}
.aviso-modal-bodega{
    border-radius: 30px 10px 30px 30px;
    position: relative;
    max-height: 90dvh;
    overflow: scroll;
}
.aviso-modal-bodega .info-texto{
    font-size: 0.8rem;
}


@media screen and (min-width:760px){
    .titulo_producto{
        font-size: 1.3rem;
    }
    .ba-info{
        max-height: unset;
    }
}

@media (min-width:992px) {
    /* PÁGINA DE PRODUCTO */
    .detalles :where(.caracteristicas, .claim, .stock, .info_gral, .masinfo>p),
    .descripcion{
        font-size: .8rem;
    }

    .detalles img{
        max-width: 50%;
    }

    .masinfo img{
        max-width: 100%;
    }

    .titulo_promocion{
        font-size: 2rem;
    }
    .aviso-modal-bodega .info-texto{
        font-size: 1rem;
    }
}

@media screen and (min-width:1200px){
    /* PÁGINA DE PRODUCTO */
    .detalles :where(.caracteristicas, .claim, .stock, .info_gral, .masinfo>p),
    .descripcion{
        font-size: 0.8rem;
    }
    .sujetoadisponibilidad, .solicitarproducto{
        font-size: 1rem;
    }
    .foto-regalo{
        width: 50%;
    }
}

@media screen and (min-width:1400px){
    /* PÁGINA DE PRODUCTO */
    .detalles :where(.caracteristicas, .claim, .stock, .info_gral, .masinfo>p),
    .descripcion{
        font-size: 1rem;
    }
}