.scroll-filtros {
    overflow-y: auto;
    transition: max-height 0.3s;
}
.invisible-filtros {
    width: 100%;
    max-height: 0px;
}
.scroll-filtros::-webkit-scrollbar {
    width: 10px;
}
.scroll-filtros::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.scroll-filtros::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.scroll-filtros::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.visible-filtros {
    max-height: 400px;   
}