/* Custom Range Slider */
.range-slider-wrapper,
.range-slider-wrapper * {
    box-sizing: border-box;
}

.range-slider-wrapper {
    position: relative;
}

.range-slider {
    width: 100% !important;
    height: 34px;
    -webkit-appearance: none;
    appearance: none;
    background: #f3f3f3;
    outline: none;
    border-radius: 25px;
    margin: 0;
    z-index: 2;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 48px;
    background: #2559E7;
    border: 3.5px solid #d5d5d5;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    position: relative;
}

.range-slider::-moz-range-thumb {
    width: 48px;
    height: 48px;
    background: #2559E7;
    border: 3.5px solid #d5d5d5;
    cursor: pointer;
    border-radius: 50%;
}

.range-slider-wrapper .custom-range-slider-tooltip {
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
    top: -45px;
    z-index: 1000;
    text-align: center;
    min-width: 50px;
    line-height: 1;
    padding: 6px 8px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    background: #2559e7f7;
    border-radius: 7px;
    text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 5px 0px;
}

.range-slider-wrapper .custom-range-slider-tooltip:after {
    content: '';
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    border-top: 7px solid #2559e7f7;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.range-slider-wrapper .custom-range-slider-min-max-numbers {
    font-size: 17px;
}

.range-slider-wrapper .custom-range-slider-min-max-numbers>span {
    font-weight: 900;
    color: #004DDA;
}