﻿.filter-toggle-btn {
    /*position: absolute;*/
    position: fixed;
    top: 10px;
    right: 10px;
    background: #1e1e2f;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: left 0.3s;
    background-color: #1990ea;
    z-index: 2;
}

.filter-sidebar {
    width: 0px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 20px;
    transition: width 0.3s;
    overflow: hidden;
    background-color: #1990ea;
    z-index: 2;
}

.formFiltro {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.btnFiltroUno {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
}

.btnFiltro-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

    .btnFiltro-container .btnFiltroDos {
        width: 48%;
        background-color: #ffffff;
        color: #000000;
        border: 0px;
    }