.more-filter-select {
    width: 100%;
}

#location-input {
    width: calc(100% - 10px);
}

.more-filter-holder {
    margin: 2% 0 5% 0;
}

.more-filter-title {
    margin-bottom: 6px;
}

/* price slider */

.range-container {
    display: flex;
    flex-direction: column;
    width: 92%;
    margin: 35px auto 0 auto;
}

.sliders-holder {
    position: relative;
    min-height: 35px;
}

.ranges-holder {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.range-title {
    font-size: 90%;
}

.range-num {
    font-size: 150%;
    margin-top: 5px;
    font-weight: 600;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 20px;
    height: 20px;
    background-color: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #c6c6c6;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #c6c6c6;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:active,
input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: inset 0 0 2px #222, 0 0 6px #222;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    width: 100%;
    position: absolute;
    background-color: #c6c6c6;
    pointer-events: none;
}

#fromSlider,
#followersFromSlider {
    height: 0;
    z-index: 1;
}

#toSlider,
#followersToSlider {
    margin-top: 1px;
}

@media only screen and (max-width: 800px) {
    .more-filter-holder {
        margin: 3% 0 7% 0;
    }
}
