.slidecontainer {
    width: 200px;
    position: absolute;
    bottom: 25px;
    right: 5px;
    background-color: white;
    padding: 5px;
    cursor: auto;
}
.slidecontainer p {
    font-size: smaller;
}
.slidecontainer label {
    font-size: x-small;
}
#slidecontainer[disabled=disabled] {
    cursor: not-allowed;
    background-color: gray;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: lightgray;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    cursor: auto;
}

.slider:disabled, .slider:disabled::-webkit-slider-thumb, .slider:disabled::-moz-range-thumb {
    cursor: not-allowed;
    background-color: gray;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: white;
    border-color: #1050FF;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    border-color: #1050FF;
    cursor: pointer;
}