/*
Utilizado somente no filter-menu.html - pode remover
*/
.compressed{
    max-width: 250px;
}

/*
Utilizado somente no filter-menu.html - pode remover
*/
.expanded{
    max-width: 600px;
} 

.filters.compressed{
    background-color: white;
    padding: 10px 0px;
    border-radius: 3px;
}

.filters.compressed .option-check{
    margin: 5px;
}

.filters.compressed .option-radio{
    margin: 5px;
}

.filters.compressed .options ul{
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
}

/*
Grid Expanded
*/
.filters.expanded .options ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px;
}

.filters.expanded .option-check{
    margin: 10px;
}

.filters.expanded .option-radio{
    margin: 10px;
}

.filters.expanded.modal{
    margin: 10px;
    max-width: 600px;
    box-shadow: 0 0px 0px 0 rgba(32, 33, 36, .08);
}

@media (max-width: 750px) {
    .container > h1, h2, h3, h4, h5{
        font-family: var(--body-font-family);
        color: var(--color-dark);
    }

    .filters:not(.modal){
        width: 100%;
        border-radius: 0px;
    }

    .filters:not(.modal) > ul > li{
        display: none;
    }

    .filters:not(.modal) > ul > li:nth-child(-n+2), .filters > ul > li:last-child{
        display: inline-block;
        line-height: 25PX;
    }

    .filters:not(.modal) > ul{
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .filters:not(.modal) > ul > li h3{
        padding: 0px;
        line-height: 0px;
    }

    .filters:not(.modal) > ul > li:hover{
        border: 1px solid var(--color-dark-opacity-50);
    }

    .filters:not(.modal) > ul > li{
        font-size: 12px;
        font-weight: lighter;
        border-radius: 30px;
        border: 1px solid var(--color-gray);
        margin: 3px;
        padding-left: 15px;
        padding-right: 15px;
        width: auto;
        cursor: pointer;
    }

    .container{
        max-width: 100%;
    }

    .compressed{
        max-width: 100%;
    }

    .filters:not(.modal) > ul > li > .filter > .container-options {
        display: none;
    }

    .filters:not(.modal) > ul > li > .filter > .container-name > .description{
        display: none;
    }

    .filters:not(.modal) .filter{
        margin: 0px 0px;
        padding-bottom: 0px;
        border-bottom: 0px solid var(--color-gray);
    }

    .filter-box{
        display: none;
    }
}

.filters.modal .filter-box{
    display: none;
}

.filter-modal > .content{
    background-color: white;
    opacity: 1;
    border-radius: 5px;
    max-width: 800px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "header" "main" "footer";
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter-modal > .content > header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.filter-modal > .content > header > h3{
    padding-top: 30px 0px;
}

.filter-modal > .content > main {
    grid-area: main;
    height: 80vh;
}
.filter-modal > .content > footer > button:hover{
    background-color: rgb(27, 26, 26);
}
.filter-modal > .content > footer > button{
    background-color: var(--color-dark);
    width: 90%;
    height: 50px;
    border: 0px;
    padding: 10px;
    border-radius: 10px;
    color: whitesmoke;
    font-weight: bolder;
    font-size: 16px;
}

.filter-modal > .content > footer {
    grid-area: footer;
    display: flex;
    align-content: center;
    justify-content: center;
}

.filter-modal > .content > .inner{
    height: 90%;
    overflow: scroll;
}

.inner{
    height: 90%;
    overflow: scroll;
}

.filter-modal{
    position: fixed;
    display: flex;
    background-color: var(--color-dark-opacity-50);
    top: 0px;
    width: 100vw;
    height: 100vh;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
}