[v-cloak] {
			display: none;
		}

		.range-slider {
			width: 100%;
		}

		.range-slider__range {
			-webkit-appearance: none;
			width: 100%;
			height: 10px;
			border-radius: 5px;
			background: #d7dcdf;
			outline: none;
			padding: 0;
			margin: 0;
		}
		.range-slider__range::-webkit-slider-thumb {
			-webkit-appearance: none;
			appearance: none;
			width: 24px;
			height: 24px;
			border-radius: 50%;
			background: #4a5568;
			cursor: pointer;
			-webkit-transition: background .15s ease-in-out;
			transition: background .15s ease-in-out;
		}
		.range-slider__range::-webkit-slider-thumb:hover {
			background: #68d391;
		}
		.range-slider__range:active::-webkit-slider-thumb {
			background: #68d391;
		}
		.range-slider__range::-moz-range-thumb {
			width: 24px;
			height: 24px;
			border: 0;
			border-radius: 50%;
			background: #4a5568;
			cursor: pointer;
			-moz-transition: background .15s ease-in-out;
			transition: background .15s ease-in-out;
		}
		.range-slider__range::-moz-range-thumb:hover {
			background: #68d391;
		}
		.range-slider__range:active::-moz-range-thumb {
			background: #68d391;
		}
		.range-slider__range:focus::-webkit-slider-thumb {
			box-shadow: 0 0 0 3px #fff, 0 0 0 6px #68d391;
		}

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

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

		.active {
			background: #4a5568;	
			color: #fff;	
		}

		/* Chrome, Safari, Edge, Opera */
		input::-webkit-outer-spin-button,
		input::-webkit-inner-spin-button {
			-webkit-appearance: none;
			margin: 0;
		}

		/* Firefox */
		input[type=number] {
			-moz-appearance: textfield;
		}