.js-range .selected,
.js-select .selected {
    color: rgba(18, 18, 18, 0.45);
    text-overflow: ellipsis;
    letter-spacing: -0.16px;
    font: 500 16px/115% Manrope, -apple-system, Roboto, Helvetica, sans-serif;
    cursor: pointer;
}

.js-range.active .selected,
.js-select.active .selected {
    color: #121212;
}

.js-range .slider-container,
.js-select .dropdown-list {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 287px;
    width: 100%;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 12px;
    gap: 12px;
    isolation: isolate;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    margin: 0;
    list-style: none;
    z-index: 100;
}

.js-range.active .slider-container,
.js-select.active .dropdown-list {
    display: flex;
}

.js-select .dropdown-list > li {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: relative;
}

.js-select .dropdown-list > li:before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #F1F1F1;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.js-select .dropdown-list > li.active:after {
    content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.3641 4.23431C13.6765 4.54673 13.6765 5.05327 13.3641 5.36569L6.96412 11.7657C6.6517 12.0781 6.14517 12.0781 5.83275 11.7657L2.63275 8.56569C2.32033 8.25327 2.32033 7.74673 2.63275 7.43431C2.94517 7.1219 3.4517 7.1219 3.76412 7.43431L6.39844 10.0686L12.2328 4.23431C12.5452 3.9219 13.0517 3.9219 13.3641 4.23431Z' fill='%23121212'/%3E%3C/svg%3E");
    display: block;
    position: absolute;
    left: 2px;
    top: 1px;
    z-index: 2;
}

.js-range .range {
    position: relative;
    padding-bottom: 15px;
}

.js-range .slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
}

.js-range .slider::-webkit-slider-thumb {
    pointer-events: auto;
}

.js-range .slider::-moz-range-thumb {
    pointer-events: auto;
}

.js-range input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 65%;
    transform: translateY(80%);
}

.js-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' fill='white'/%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='9.5' stroke='%23E7E7E7'/%3E%3Crect x='5' y='5' width='10' height='10' rx='5' fill='%231F4D39'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-top: -8px;
}

.js-range input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.js-range .track-bg,
.js-range .track {
    position: absolute;
    height: 8px;
    border-radius: 8px;
    background: #1F4D39;
    top: 45%;
    pointer-events: none;
}

.js-range .track-bg {
    width: 100%;
    background: #F1F1F1;
    border-radius: 24px;
}

.js-range .fields {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;
}

.js-range .fields .field {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    position: relative;
    padding-right: 30px;
}

.js-range .fields .field .clear {
    position: absolute;
    right: 0;
    bottom: 5px;
    cursor: pointer;
    opacity: 0;
}

.js-range .fields .field:hover .clear {
    opacity: 1;
}

.js-range .fields .field .label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: -0.01em;
    color: #8C8C8C;
}

.js-range .fields .field input {
    padding: 12px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    color: #8C8C8C;
    border-radius: 8px;
    background: #F1F1F1;
    outline: none;
    border: none;
}

.js-range .fields .field input:focus {
    color: #121212;
}