
:root {
    --range-slider-bg: #3264fe;
}

.rangeslider .rs_wrapper {
    position: relative;
    width: 95vmin;
    background-color: #ffffff;
    padding: 0;
    border-radius: 10px;
}

.rangeslider .rs_container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.rangeslider input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.rangeslider .slider-track {
    width: 100%;
    height: 8px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background: #eee;
}

.rangeslider input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

.rangeslider input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}

.rangeslider input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}

.rangeslider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    background-color: var(--range-slider-bg);
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
    border-color: transparent;
}

.rangeslider input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--range-slider-bg);
    pointer-events: auto;
    border-color: transparent;
}

.rangeslider input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1em;
    width: 1em;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--range-slider-bg);
    pointer-events: auto;
    border-color: transparent;
}

.rangeslider input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 3px solid var(--range-slider-bg);
}

.rangeslider .rs_values {
    width: 100%;
    position: relative;
    margin-bottom: 5px;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.rangeslider .rs_input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}