.container_filtros {
    width: 20%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
}

.checkbox {
    color: var(--cor-vinho-escuro);
    margin-bottom: 1rem;
}

.switch_wrapper{
    width: 100%;
    height: 150px;
    overflow-y: auto;
}

.switch {
    width: 95%;
    padding: .25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid var(--cor-border);
    gap: 1rem;
}

.switch_text {
   display: flex;
   flex-wrap: wrap;
    font-size: 14px;
    margin-left: .5rem;
}

.switch_label {
    position: relative;
    width: 1rem;
    height: 1rem;
}

.switch_input {
    width: 1rem;
    height: 1rem;
    position: absolute;
    opacity: 0;
}

.switch_label span {
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    border: 1px solid var(--cor-vinho-escuro);
    border-radius: 2px;
    cursor: pointer;
}

.switch_label 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;
}

.btn_filter {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 0.5px solid var(--escuro, #310000);
    background-color: transparent;
    color: var(--escuro);
    text-decoration: none;
    font-weight: 700;
    gap: .5rem;
}

@media screen and (max-width: 1024px) {
    .container_filtros{
        max-width: 100%;
    }
}
@media screen and (max-width: 990px) {
    .container_filtros{
        display: none;
    }
}

