.container_moda_filtro {
    display: none;
}

.checkbox-autores {
    width: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--cor-vinho-escuro);
    margin-bottom: 1rem;
}

.checkbox-autores h4 {
    width: 170px;
    text-align: center;
}

.modal-filtro {
    display: flex;
    background-color: var(--cor-amarelo-claro);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.227);
}

.modal-body-filtro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.checkbox-filtro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--cor-vinho-escuro);
    margin-bottom: 1rem;
}

.checkbox-filtro h4 {
    width: 170px;
    text-align: center;
}

.switch-text-filtro {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 12px;
    margin-left: .5rem;
}
.switch-filtro {
    width: 135px;
    padding: .25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid var(--cor-border);
}

.switch-label-filtro {
    position: relative;
    width: 1rem;
    height: 1rem;
}

.switch-input-filtro {
    width: 1rem;
    height: 1rem;
    position: absolute;
    opacity: 0;
}

.switch-label-filtro span {
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    border: 1px solid var(--cor-vinho-escuro);
    border-radius: 2px;
    cursor: pointer;
}

.switch-label-filtro span::before {
    content: "";
    position: absolute;
    left: .25rem;
    bottom: .2rem;
    width: 0px;
    height: 0px;
    border: solid;
    border-color: var(--cor-vinho-escuro);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    transition: 0.4s all ease;
    opacity: 0;
}

input:checked~span::before {
    width: 5px;
    height: 10px;
    opacity: 1;
}

.modal-footer {
    background-color: var(--cor-amarelo-claro);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.btn_modal_filter {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 0.5px solid var(--escuro, #310000);
    background-color: transparent;
    padding: .25rem 2rem;
    color: var(--escuro);
    text-decoration: none;
    font-weight: 700;
    gap: 0.5rem;
}

.modal-backdrop.show {
    display: none;
}

@media screen and (max-width: 990px) {
    .container_moda_filtro {
        display: flex;
    }

    .modal-backdrop.show {
        display: flex;
    }
}