input[type=range] {
    background: rgba(0, 0, 0, 0);
    border: none;
    margin: 10px 0;
    width: 100%;
    -webkit-appearance: none
}

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

input[type=range]::-webkit-slider-runnable-track {
    background: var(--rui-slider-track, #eee);
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    height: 6px;
    width: 100%
}

input[type=range]::-webkit-slider-thumb {
    background: var(--rui-slider-thumb, #3878ab);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    height: 20px;
    margin-top: -8px;
    width: 20px;
    -webkit-appearance: none
}

input[type=range]:focus::-webkit-slider-thumb {
    background: var(--rui-slider-thumb-focused, #2e628c)
}

input[type=range]::-ms-track {
    background: var(--rui-slider-track, #eee);
    border-color: rgba(0, 0, 0, 0);
    border-width: 25px 0;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    height: 6px;
    width: 100%
}

input[type=range]::-ms-fill-lower {
    background: var(--rui-slider-track, #eee);
    border: none;
    border-radius: 50px;
    box-shadow: none
}

input[type=range]::-ms-fill-upper {
    background: var(--rui-slider-track, #eee);
    border: none;
    border-radius: 50px;
    box-shadow: none
}

input[type=range]::-ms-thumb {
    background: var(--rui-slider-thumb, #3878ab);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    height: 20px;
    margin-top: -2px;
    width: 20px
}

input[type=range]:focus::-ms-thumb {
    background: var(--rui-slider-thumb-focused, #2e628c)
}

input[type=range]::-moz-range-track {
    background: var(--rui-slider-track, #eee);
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    height: 6px;
    width: 100%
}

input[type=range]::-moz-range-thumb {
    background: var(--rui-slider-thumb, #3878ab);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    height: 20px;
    width: 20px
}

input[type=range]:focus::-moz-range-thumb {
    background: var(--rui-slider-thumb-focused, #2e628c)
}

@media print {
    input[type=range]::-webkit-slider-runnable-track {
        background: #eee
    }

    input[type=range]::-webkit-slider-thumb {
        background: #000
    }

    input[type=range]:focus::-webkit-slider-thumb {
        background: #000
    }

    input[type=range]::-ms-track {
        background: #eee
    }

    input[type=range]::-ms-fill-lower {
        background: #eee
    }

    input[type=range]::-ms-fill-upper {
        background: #eee
    }

    input[type=range]::-ms-thumb {
        background: #000
    }

    input[type=range]:focus::-ms-thumb {
        background: #000
    }

    input[type=range]::-moz-range-track {
        background: #eee
    }

    input[type=range]::-moz-range-thumb {
        background: #000
    }

    input[type=range]:focus::-moz-range-thumb {
        background: #000
    }
}