.range-slider {
	padding: 7px 50px 10px 0px;
	margin: 0 0 0px;
	position: relative;
}

.range-slider input[type="range"] {
	background: #D110A5;
	border: 1px solid #D110A5;
	width: 100%;
	height: 10px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
	background: linear-gradient(#222,#666);
	width: 20px;
	height: 20px;
	border-radius: 25%/50%;
	box-shadow: 0 0 0 4px #fff;
	cursor: move;
	transition: all 0.15s ease-in-out 0s;
	-webkit-appearance: none;
	appearance: none;
}

.range-slider input[type="range"]:active::-webkit-slider-thumb,
.range-slider input[type="range"]::-webkit-slider-thumb:hover {
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.range-slider input[type="range"]::-moz-range-thumb {
	background: linear-gradient(#222,#666);
	width: 20px;
	height: 20px;
	border-radius: 25%/50%;
	box-shadow: 0 0 0 4px #fff;
	border: none;
	cursor: move;
	transition: all 0.15s ease-in-out 0s;
}

.range-slider input[type="range"]:active::-moz-range-thumb,
.range-slider input[type="range"]::-moz-range-thumb:hover {
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.range-slider .range-value {
	color: #fff;
	background: #D110A5;
	outline: none;
	font-size: 18px;
	font-weight: 600;
	text-align: center !important;
	width: 43px;
	padding: 2px 0;
	transform: translateY(50%);
	position: absolute;
	bottom: 47%;
	right: 0;
}

::-moz-range-track {
	background: transparent;
	border: 0;
}