.slider {
    -webkit-appearance: none;
    float: left;
    clear: auto;
    width: 100%;
    height: 10px;
    outline: none;
    border-radius: 10px;
    border: solid 1px gray;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    background: gray;
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: gray;
    cursor: pointer;
}
.timeSlider {
    -webkit-appearance: none;
    float: left;
    clear: auto;
    width: 100%;
    height: 5px;
    outline: none;
    border-radius: 10px;
    border: solid 1px white;
}
.timeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%; 
    background: white;
    cursor: pointer;
}
.timeSlider::-moz-range-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}