/* Based on https://www.quirksmode.org/blog/archives/2015/11/styling_and_scr.html */

input[type=range]::-webkit-slider-runnable-track {
	background: #00ccff;
}

input[type=range]::-moz-range-track {
	background: #00ccff;
}

input[type=range]::-ms-track { /* should come after -webkit- */
	background: #00ccff;
}
