.range-slider {
	width: 100%;
}

.range-slider__range {
	-webkit-appearance: none;
	max-width: calc(100% - (55px));
	height: 6px;
	border-radius: 3px;
	height: 6px;
	background: #d6d6d6;
	outline: none;
	padding: 0;
	margin: 0;
}

.range-slider__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #a9a9a9;
	cursor: pointer;
	-webkit-transition: background .15s ease-in-out;
	transition: background .15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
	background: #a9a9a9;
}

.range-slider__range:active::-webkit-slider-thumb {
	background: #a9a9a9;
}

.range-slider__range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #a9a9a9;
	cursor: pointer;
	-webkit-transition: background .15s ease-in-out;
	transition: background .15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
	background: #a9a9a9;
}

.range-slider__range:active::-moz-range-thumb {
	background: #a9a9a9;
}

.range-slider__value {
	display: inline-block;
	position: relative;
	width: 34px;
	color: #fff;
	height: 20px;
	text-align: center;
	border-radius: 17px;
	background: #909090;
	padding: 7px 0;
	margin-left: 17px;
}

::-moz-range-track {
	background: #d6d6d6;
	border: 0;
}

input::-moz-focus-inner, input::-moz-focus-outer {
	border: 0;
}