.slider-container {
    position: relative;
    direction: ltr;
    width: inherit;
    text-align: right;

    .slider-label {
        color: #414141;
        vertical-align: sub;
        margin: 0 10px;
        font-weight: 700;
        font-size: 13px;
    }

    .slider-value {
        color: #414141;
        vertical-align: text-bottom;
        font-size: 10px;
        font-weight: 100;
        margin: 0 0 0 10px;
    }

    input[type=range] {
        -webkit-appearance: none;
        width: 20%;
    }

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

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, #888888 var(--input-range-lower), #dfdfdf var(--input-range-upper));
        cursor: pointer;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: linear-gradient(to right, #888888 var(--input-range-lower), #dfdfdf var(--input-range-upper));
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        height: 20px;
        width: 40px;
        margin-top: -10px;
        background: #ebebeb;
        border: 1px solid #c8c8c8;
        border-radius: 50px;
        box-shadow: 0px .3px 0px #c8c8c8, 0px 0px 0px #c8c8c8;
        cursor: pointer;
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 1px;
        background: #dfdfdf;
        cursor: pointer;
    }

    input[type=range]::-moz-range-thumb {
        -webkit-appearance: none;
        appearance: none;
        height: 20px;
        width: 35px;
        margin-top: -10px;
        background: #ebebeb;
        border: 1px solid #c8c8c8;
        border-radius: 50px;
        box-shadow: 0px .3px 0px #c8c8c8, 0px 0px 0px #c8c8c8;
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 1px;
        background: #dfdfdf;
        cursor: pointer;
    }

    input[type=range]::-ms-thumb {
        -webkit-appearance: none;
        appearance: none;
        height: 20px;
        width: 35px;
        margin-top: -10px;
        background: #ebebeb;
        border: 1px solid #c8c8c8;
        border-radius: 50px;
        box-shadow: 0px .3px 0px #c8c8c8, 0px 0px 0px #c8c8c8;
        cursor: pointer;
    }

    input[type=range]::-ms-fill-lower {
        background: #ebebeb;
        border: 1px solid #c8c8c8;
        border-radius: 50px;
        box-shadow: 0px .3px 0px #c8c8c8, 0px 0px 0px #c8c8c8;
    }

    input[type=range]::-ms-fill-upper {
        background: #ebebeb;
        border: 1px solid #c8c8c8;
        border-radius: 50px;
        box-shadow: 0px .3px 0px #c8c8c8, 0px 0px 0px #c8c8c8;
    }

    input[type=range]::-ms-fill-lower {
        background: red;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: #dfdfdf;
    }

    input[type=range]:focus::-ms-fill-upper {
        background: #dfdfdf;
    }

    .slider-input {
        width: 500px;
        position: relative;
    }

    .range-value {
        position: absolute;
        top: 7px;
        pointer-events: none;
    }

    .range-value span {
        color: #000000;
        font-size: 9.5px;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
    }
}
