#leftaside {
    display: flex;
    width: 18em;
}

#l-btn {
    visibility: collapse;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: flex;
    align-items: center;
    
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#menubox {
    border-radius: .3em;
}

#cmenu {
    margin-bottom: 1em;
}

.menu-bar {
    padding: 0;
    width: 18em;
    height: max-content
}

.menutitle {
    font-size: 1.5em;
    font-weight: 900;
    padding: .5em 1em .5em .8em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menutitle-clickable:hover {
    background-color: var(--hover);
    cursor: pointer;
    border-radius: inherit;
}

#limpar-filtros {
    font-size: .7em;
    font-weight: 400;
    color: var(--grey);
    transition: .3s;
}
#limpar-filtros:hover {
    color: var(--darkgrey);
    text-decoration: underline;
}

.menutitle img {
    height: 1.45em;
    /* margin-right: .6em; */
}

.menu-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-bar li, .filterheader {
    padding: 1.5em;
    color: var(--black);
    border-radius: .3em;
    transition: .3s;
    display: flex;
    align-items: center;
}

.filterheader {
    font-weight: 900;
}

.menu-bar li:hover, .filterheader:hover {
    background-color: var(--hover);
    cursor: pointer;
}

.menu-bar li p {
    display: block;
    margin-left: .6em;
}

#buttontofilter {
    color: var(--white);
    font-weight: 900;
    font-size: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;

    background-color: var(--bred);

    margin: 1em auto;
    border-radius: .3em;
    border: none;

    padding: 1em;
    transition: .3s;
}
#buttontofilter:hover {
    cursor: pointer;
    background-color: var(--hover-bred);
}

#filterbox {
    display: flex;
    flex-direction: column;
}

#filterbox label {
    display: inline;
}

.ft { /* filter title */
    font-weight: 600;
}

.fo-btn { /* filter option button */
    padding: .3em 1.3em;
    color: var(--black);
    border-radius: .3em;
    border: none;
    width: 100%;
    transition: .3s;

    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.fo-btn:hover {
    background-color: var(--hover);
    cursor: pointer;
}

.fo-btn img {
    height: 2em;
}

.fo-btn-title {
    user-select: none;
}

.fo-list-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: .5em;
    
}

.fo-ckb { /* filter opbtion checkbox */
    width: 14em;
    margin-top: .3em;
}

.fo-ckb label {
    display: inline;
    color: var(--hard);
}

.expands {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:1000px) {
    .fo-list-inner {
        max-height: 14em;
        overflow-y: scroll;
    }
}