*, *:before, *:after {
	box-sizing: border-box;
}

/* body {
	font-family: sans-serif;
	padding: 60px 20px;
} */

@media (min-width: 600px) {
	body {
		padding: 60px;
	}
}

.range-slider {
	margin: 45px 0 0 0%;
}

.range-slider {
	width: 100%;
}

.range-slider-range {
	-webkit-appearance: none;
	width: calc(100%);
	height: 15px;
	border-radius: 8px;
	background: #d7dcdf;
	outline: none;
	padding: 0;
	margin: 0;
}

.range-slider-range::-webkit-slider-thumb {
	appearance: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #2c3e50;
	cursor: pointer;
	transition: background .15s ease-in-out;
}

.range-slider-range::-webkit-slider-thumb:hover {
	background: #1abc9c;
}

.range-slider-range:active::-webkit-slider-thumb {
	background: #1abc9c;
}

.range-slider-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #2c3e50;
	cursor: pointer;
	transition: background .15s ease-in-out;
}

.range-slider-range::-moz-range-thumb:hover {
	background: #1abc9c;
}

.range-slider-range:active::-moz-range-thumb {
	background: #1abc9c;
}

.range-slider-range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}

.range-slider-value {
	display: flex;
	/* position: relative; */
	width: 60px;
	font-size:x-large;
	font-weight:bold;
	color: #333;
	line-height: 20px;
	text-align: center;
	border-radius: 3px;
	/* background: #2c3e50; */
	padding: 10px 10px;
	margin: auto;
}

/* .range-slider-value:after {
	position: absolute;
	top: 8px;
	left: -7px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-right: 7px solid #2c3e50;
	border-bottom: 7px solid transparent;
	content: '';
} */

::-moz-range-track {
	background: #d7dcdf;
	border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
	border: 0;
}