.filters{
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
}
.filters option{
    padding: 16px;
    background: var(--light-grey-color);
}
.filters select{
    max-width: 150px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 16px 30px 16px 16px;
    background: var(--light-grey-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.filters-items #id_price{
    max-width: 350px;
}
.filters-reset{
    cursor: pointer;
}
.filters.hidden{
    display: block;
    opacity: 1;
}
.filters-buttons{
    padding: 5px 15px 10px 15px;

}

@media (max-width: 430px) {
    .filters{
        font-size: 14px;
    }
    .filters-items{
        flex-direction: column;
        gap: 12px;
    }
    .filters select{
        max-width: 100%;
        padding: 8px 15px 15px 15px;
    }
    .filters option{
        padding: 8px;
    }
    .ilters-buttons{
        gap: 12px;
        padding: 8px;
    }
}