.filtro{
    position: relative;
    width: 100vw;
}
.bg-blur{
    position: absolute;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}
.img-filtro{
    width: 80%;
    margin: auto;
    cursor: pointer;
    border-radius: 50%;
}
.img-filtro img{
    max-width: 1.8rem;
    margin-right: 1.5rem;
}

.botones-filtro{
    margin: auto;
    position: absolute;
    top: 100%;
    /* background-color: rgba(255, 255, 255, 0.8);  */
}
.botones-filtro form{
    width: 100%;
}

input[type=checkbox]{
    display: none;
}

label, .botones-filtro a{
    background-color: rgb(238, 238, 238);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    margin: 1%;
    cursor: pointer;
    text-decoration: none;
    color:black;
}


label.selected{
    background-color: #cc222d;
    color: white;
}

input[type=submit]{
    border: none;
    background-color: #cc222d;
    color: white;
    font-size: 1.5rem;
    border-radius: 10px;
    text-decoration: 2px underline;
}

@media screen and (min-width:768px){
    .botones-filtro form{
        width: 75%;
        margin: auto;
    }
}
@media screen and (min-width:1200px){
    .botones-filtro form{
        width: 50%;
        margin: auto;
    }
}