
.range__title {
    margin-bottom: 60px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: var(--fw-bold);
}


.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #D9D9D9;
    margin-bottom: 30px;
}

.slider-track {
    height: 100%;
    position: absolute;
    background-color: #000;
}


.range-slider input {
    position: absolute;
    width: 100%;
    background: none;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #000;
    background-color: #fff;
    pointer-events: auto;
    appearance: none;
    cursor: pointer;
}


input[type="range"]::-moz-range-thumb {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 3px solid #000;
    background-color: #fff;
    pointer-events: auto;
    appearance: none;
    cursor: pointer;
}


.tooltip {
    padding: .25rem .5rem;
    border: none;
    background-color: #D9D9D9;
    color: #000;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 2px;
    font-weight: var(--fw-bold);
    bottom: 120%;
    display: block;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.min-tooltip {
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 5;
}

.max-tooltip {
    right: 50%;
    transform: translateX(50%) translateY(-100%);
}


.input-box {
    display: flex;
}

.min-box,
.max-box {
    width: 50%;
}

.min-box {
    padding-right: .5rem;
    margin-right: .5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-addon {
    display: flex;
    align-items: center;
    height: 35px;
    padding: .625rem 1rem;
    font-size: 14px;
    font-weight: var(--fw-medium);
    line-height: 1.5;
    color: #000;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}

.input-field {
    padding: .425rem .75rem;
    height: 35px;
    font-size: 14px;
    border-radius: 3px;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #000;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: var(--fw-medium);

}

.input-field:focus {
    outline: none;
}