.error { color: red;}


.range-slider {
    
}
.rs-range {
    margin-top: 29px;
    width: 100%;
    -webkit-appearance: none;
}
.rs-range:focus {
    outline: none;
}
.rs-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    box-shadow: none;
    background: red;
    border-radius: 5px;
    border: 0px solid red;
}
.rs-range::-moz-range-track {
    width: 100%;
    height: 14px;
    cursor: pointer;
    box-shadow: none;
    background: red;
    border-radius: 5px;
    border:  0px solid red;
}

.rs-range::-webkit-slider-thumb {
    box-shadow: none;
    border: 0px solid red;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 27px;
    border-radius: 22px;
    background: #007bff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -15px;
}
.rs-range::-moz-range-thumb {
    box-shadow: none;
    border: 0px solid red;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
    height: 42px;
    width: 27px;
    border-radius: 22px;
    background:#007bff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -15px;
}
.rs-range::-moz-focus-outer {
    border: 0;
}

.rs-label {
    /* position: relative; */
    transform-origin: center center;
    display: block;
    width: 98px;
    height: 98px;
    background: transparent;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    padding-top: 22px;
    box-sizing: border-box;
    border: 2px solid #007bff;
    margin-top: 20px;
    /* margin-left: -38px; */
    margin: auto;
    left: attr(value);
    color: #007bff;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 36px;
}
.range-slider datalist {
    position:relative;
    display: flex;
    justify-content: space-between;
    height: auto;
    bottom: 10px;
    padding: 0 8px;
    /* disable text selection */
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */                
    user-select: none; /* Standard */
    /* disable click events */
    pointer-events:none;  
}
.range-slider datalist option {
    width: 10px;
    height: 10px;
    min-height: 10px;
    padding:0;
    line-height: 40px;
}