.simplesearch_hideme {
    display: none !important;
}

.search_filter {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: .5em;
    max-width: 20vw;
    max-height: 4rem;
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
    padding-bottom: 1.5rem;

}

.search_filter select {
    width: 100%;
    height: 1.8rem;
    background-color: white;
    color: var(--text-color);
    font-size: 1rem;
}

.search_field {
    width: 100%;
    height: 1.8rem;
    border: 1px solid ;
    border-radius: 4px;
    padding-left: 0.5em;
    transition: .1s;
    font-size: 1rem;
}

@media (max-width: 850px) {
    .search_filter {
        max-width: 60vw;
    }

    .search_field {
        font-size: .85rem;
    }

    .search_filter select {
        font-size: .85rem;
    }
}