.slider-container {
    padding: 5% 5% 0 5%;
    width: 100%;
}
.slider_hour {
    
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}
.slider_hour::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #61afff;
    cursor: pointer;
}
.slider_hour::-moz-range-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #61afff;
    cursor: pointer;
}

.slider_minute {
    
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}
.slider_minute::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
}
.slider_minute::-moz-range-thumb {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
}