.range__slider {
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}


.slider {
    -webkit-appearance: none;
    /* width: calc(100% - (70px)); */
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.314);
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d4d4d4;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 0 4px 1px rgba(53, 71, 90, .2);
}

.slider::-webkit-slider-thumb:hover {
    background: #d4d4d4;
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.slider::-moz-range-thumb:hover {
    background: #d4d4d4;
}

.input-txt {
    border: 1px solid #ccc !important;
    text-align: center;
    border-radius: 5px !important;
    border-color: rgba(53, 71, 90, .2) !important;
    height: 25px;
    width: 40px !important;
    font-size: 13px !important;
}