.range {
	width: 300px;
	height: 24px;
	background: transparent;
	position: relative;
}

.range .button {
	width: 24px;
	height: 24px;
	background: rgba(21,133,219,0.5);
	position: absolute;
	top: 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.range .button:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: rgba(21,133,219,1);
}





.range .begin {
	left: 0;
}


.range .end {
	right: 0;
}

.range .value {
	left: 0;
}





.range .line {
	height: 4px;
	background-color: #ccc;
	position: absolute;
	left: 12px;
	right: 12px;
	top: 10px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
}



.range .line > div {
	display: block;
	height: 4px;
	background-color: rgba(21,133,219,1);
	width: 0;
}

.range .line > div {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}



