.rangeSlider {
    display: block;
    width: 100%;
    max-width: 690px;
	height: 4px;
	background: #c0c0c0;
    margin: auto;
}

.rangeSlider {
    position: relative;
}

.rangeSlider--disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
}

.rangeSlider__fill {
    background: #df0c36;
    position: absolute;
    top: 0;
    z-index: 2;
    height: 100%;
}

.rangeSlider__handle {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: -8px;
    z-index: 3;
    width: 20px;
	height: 20px;
	background: #df0c36;
	-webkit-border-radius: 27px;
	-moz-border-radius: 27px;
	border-radius: 27px;
}

.rangeSlider__handle:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.rangeSlider__handle:active {
    
}

input[type="range"]:focus + .rangeSlider .rangeSlider__handle {
    
}

.rangeSlider__buffer {
    z-index: 1;
    position: absolute;
    top: 3px;
    height: 14px;
    background: #2c3e50;
    border-radius: 10px;
}
