/* Ugh, styling sliders is a pain! but I like how this looks
 *
 * code from http://danielstern.ca/range.css/
 */

input[type=range] {
    width: calc(100% + 2px);
    margin: 13.8px -1px;
    background-color: transparent;
    z-index: 1;
    -webkit-appearance: none;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    background: hsl(0, 50%, 75%);
    border-top: 0.2px solid #000000;
    border-bottom: 0.2px solid #000000;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
}
input[type=range]::-moz-range-track {
    background: hsl(0, 50%, 75%);
    border-top: 0.2px solid #000000;
    border-bottom: 0.2px solid #000000;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
    margin-top: -15px;
    width: 16px;
    height: 36px;
    background: hsl(0, 100%, 75%);
    border: 1px solid #000000;
    cursor: grab;
    -webkit-appearance: none;
}
input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 40px;
    background: hsl(0, 100%, 75%);
    border: 1px solid #000000;
    border-radius: 0;
    cursor: grab;
}
