input[type=range] {
    -webkit-appearance: none;
    width: 80%;
    margin: 0 0 50px 0;
    background-color: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(65, 65, 66, 1) 0%, var(--active_buttons_background_color) 20%, var(--active_buttons_background_color) 80%, rgba(65, 65, 66, 1) 100%);
}

input[type=range]::-webkit-slider-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: var(--active_buttons_background_color);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4.1px;
}


input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    border-color: transparent;
    color: transparent;
    background: linear-gradient(90deg, rgba(65, 65, 66, 1) 0%, rgba(238, 41, 52, 1) 20%, rgba(238, 41, 52, 1) 80%, rgba(65, 65, 66, 1) 100%);
}

input[type=range]::-moz-range-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: #ee2934;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 2px;
    cursor: pointer;
    border-color: transparent;
    color: transparent;
    background: linear-gradient(90deg, rgba(65, 65, 66, 1) 0%, rgba(238, 41, 52, 1) 20%, rgba(238, 41, 52, 1) 80%, rgba(65, 65, 66, 1) 100%);
}

input[type=range]::-ms-thumb {
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background: #ee2934;
    cursor: pointer;
}
