.filters {
    display: none;
    height: 11vh;
    border-top: 1px rgba(0, 0, 0, 0.2) solid;
}
.filters > .container {
    height: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(8, 1fr);
    column-gap: 20px;
}
.filters-show {
    -webkit-tap-highlight-color: transparent;
}
select, input {
    color: black;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.filter-field {
    /* border: 1px rgba(0, 0, 0, 0) solid; */
    width: 100%;
    border: none;
    outline: none;
    padding: 20px 0 10px 12px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    font-size: 1em;
}
#filter-form div {
    position: relative;
}
#filter-form label {
    color: gray;
    font-size: 0.75em;
    left: 12px;
    top: 5px;
    position: absolute;
}
#filter-submit {
    outline: none;
    height: 50px;
    border: 1px rgba(0, 0, 0, 0.2) solid;
    background-color: white;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: 300ms;
}
#filter-submit:hover {
    background-color: var(--main-color);
    color: white;
    border: 1px rgba(0, 0, 0, 0) solid;
}
.filters-show {
    text-decoration: underline;
    cursor: pointer;
}
main {
    transition: 300ms;
    margin-top: 15vh;
}

@media (max-width: 991.98px) {
    .filters {
        height: auto;
    }
    #filter-form {
        display: block;
        padding: 20px 0;
    }
    #filter-form > div {
        margin-bottom: 20px;
    }
    .filters-show.--m {
        margin-bottom: 20px;
    }
}