.slider-container {
    position: relative;
    width: 100%;
    padding-top: 40px;
}

.slider {
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #475569;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #475569;
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
}

.slider::-webkit-slider-thumb:hover,
.slider::-moz-range-thumb:hover {
    background: #334155;
}