#filters {
    display: grid;
    width: 75%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 350px));
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 42px;
    margin: 2rem auto;
    float: none;
}
.filterName {
    width: 80px;
}

.centeredContent{
  width: 90% !important;
  max-width: unset;
  margin-top: 0;
}
.sliderContainer {
    width: 100%;
}
.filter {
    border: 1px solid #0000004d;
    border-radius: 40px;
    height: 42px;
    display: flex;
}

.filterSelect {
    position: relative;
    width: 100%;
    height: auto;
    text-align: left;
    font-family: var(--font-family-2) !important;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #801a2e;
    text-indent: 10px;
    background-image: url(../../files/orderByDropdown.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 2px) center;
    background-size: 15px;
}
select#orderBy {
    width: 75%;
}
.filterContainer {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    font-size: 15px;
    position: relative;
}
@media screen and (max-width: 1100px){
    #filters {
    height: auto;
    }
}
@media screen and (max-width: 768px){
    .groupsContainer {
    display: block;
    margin: auto;
    margin-top: 4rem;
    width: 95%;
    }
    .sliderGroupContainer {
    width: 100%;
}
    .sectionTitle {
    font-size: 23px;
    margin-top: 40px;
    margin-bottom: 20px !important;
    }
    #filters {
        width: 95%;
        gap: 0;
        height: auto;
        margin: 40px auto 50px;
    }
    .filter {
    height: 48px;
    margin: 10px 0;
    }
}