// Generated with:
// http://danielstern.ca/range.css

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 11px;
    cursor: pointer;
    background: #5800AC;
    border-radius: 30px;
}
input[type=range]::-webkit-slider-thumb {
    border: 2px solid #ffffff;
    height: 20px;
    width: 20px;
    border-radius: 16px;
    background: #D52A2D;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -4px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #5800AC;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 11px;
    cursor: pointer;
    background: #5800AC;
    border-radius: 30px;
}
input[type=range]::-moz-range-thumb {
    border: 2px solid #ffffff;
    height: 16px;
    width: 16px;
    border-radius: 18px;
    background: #D52A2D;
    cursor: pointer;
    margin-top: -2px;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 11px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
    border-radius: 30px;
}
input[type=range]::-ms-fill-lower {
    background: #5800AC;
    border: 0px solid rgba(0, 0, 0, 0);
}
input[type=range]::-ms-fill-upper {
    background: #5800AC;
    border: 0px solid rgba(0, 0, 0, 0);
}
input[type=range]::-ms-thumb {
    border: 2px solid #ffffff;
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #D52A2D;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #5800AC;
}
input[type=range]:focus::-ms-fill-upper {
    background: #5800AC;
}
input[type=range]::-ms-tooltip {
    display: none;
}
