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

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

.filter-holder{
    margin-bottom: 34px;
}

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

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

/* country */
.modal-filters .countries-list{
    margin-top: 10px;
}

.modal-filters .keyword{
    margin: 4px 10px 8px 0;
    background-color: #ededed;
    padding: 5px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    font-size: 90%;
}

.modal-filters .remove-keyword-btn{
    filter: invert(1) brightness(0.5);
    width: 8px;
    height: 9px;
    margin-left: 10px;
    cursor: pointer;
}

/* 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;
}

.view-filter-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--black);
    font-weight: 600;
    padding: 10px 0;
    font-size: 100%;
    cursor: pointer;
}

.view-img{
    width: 15px;
    margin-right: 10px;
    transition-duration: 0.3s;
}

.advanced-filter-holder{
    display: none;
}

.more-location-header-holder{
    display: flex;
    align-items: center;
}

.clear-country, .clear-region-country, .clear-city {
    background: white;
    cursor: pointer;
    border-radius: 8px;
    padding: 4px 12px;
    border: 1px solid var(--black);
    font-size: 75%;
}

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 var(--black), 0 0 6px var(--black);
}

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

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

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

.seperator{
    text-align: center;
    border-bottom: 1px solid var(--black);
    line-height: 0.1em;
    margin: 6% 0;
}

.seperator span{
    background: white;
    color: var(--black);
    font-weight: 300;
    padding: 0 10px;
}

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