
.Filtros{
    color: var(--Secundario);
    font-size: var(--TamNormalGrande);
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-bottom: var(--MargenDefault);;
}


.TituloFiltros{
    margin-top: 15px;
    border: none;
    font-size: var(--TamGrande);
    background-color: transparent;
    width: 90vw;
    text-align: start;
    color: var(--Secundario);
    cursor: pointer;
}



.Opciones.expandida{
    width: 80vw;
    margin-left: 0;
    max-height: 10000px;
    list-style: none;
    

}

.Opciones.colapsada{
    
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    
}

.Opcion{
    margin-top: 2px;
    font-size: var(--TamNormal);
    user-select: none;

}

.Opcion input {
    cursor: pointer;
}
.Opcion label {
    cursor: pointer;
}

.Divisor{
    width: 90vw;
    margin-left: 5vw;
    margin-top: 15px;
    margin-bottom: 15px;
    min-height: 0px;
    background-color: var(--Secundario);
}


.BotonFiltrar{
    border: none;
    border-radius: 15px;
    background-color: var(--Secundario);
    font-size: var(--TamNormal);
    color: white;
    margin-top: 10px;
    margin-left: 1vw;
    width: 17.8vw;
    height: 15px;
}






.ResultadoFiltro{
    /*
    max-width: 680px;
    max-height: 680px;
    */
    width: 227px;
    height: 228px;
    background-color: white;
    display: flex;
    flex-direction: column ;
    justify-content: space-between;
    margin: auto;
    border-radius: 10px;
    box-shadow: var(--Secundario) 0px 10px 20px;
}


.ImgContainer{
    overflow: hidden;
    display: flex;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    
    height:180px;
    justify-content: center;
}


.ImgContainer img{
    object-fit: contain;
    width: 120px;
}

.NombreProducto{
    font-size: 8pt;
    margin-left: 6%;
    
    margin-top: 15px;
}

.DescripcionProducto{
    font-size: 4pt;
    margin-left: 6%;
}

.ContBoton{
    display: flex;
    width: 100%;
    justify-content: end;
}

.ContBoton a{
    display: flex;
    justify-content: center;  /* horizontal */
    align-items: center;      /* vertical */
    border-radius:50px;
    border-width: 1px;
    border-style: solid;
    font-size: 4pt;
    width: 64px;
    height: 16px;
    margin-top: auto;
    margin-bottom: auto ;
    margin-right: 5%;
    text-decoration: none;
    margin-bottom: 15px;
    border-color: var(--Secundario);
    cursor : pointer;
    color: black;
}
.ContBoton a:hover{
    background-color: rgb(232, 230, 230);
}

.ContResultados{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px , 1fr));
    gap: 20px;
    padding: 20px;
}