.price-display {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.price-display input {
	font: 400 16px 'Ubuntu', sans-serif;
	color: #2F2E2F;
	width: 92px;
	padding: 8px 10px;
	border: 1px solid #a6b1b8;
	border-radius: 4px;
	text-align: left;
}
.price-display .input-wrapper {
	position: relative;
}
.price-display .divider {
	color: #2F2E2F;
	margin: 0 20px;
}
#price-slider {
	position: relative;
	margin: 30px 10px;
	height: 4px;
}
#price-slider .noUi-connects {
	background: #f4f6f9;
}
#price-slider .noUi-connect {
	background: #e8441f;
}
#price-slider .noUi-handle {
	width: 16px;
	height: 16px;
	top: -6px;
	right: -8px;
	border-radius: 50%;
	background: #FFF;
	border: 2px solid #e8441f;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#price-slider .noUi-handle::after,
#price-slider .noUi-handle::before {
	display: none;
}
#price-slider.noUi-target {
	background: #f4f6f9;
	border-radius: 4px;
	border: none;
	box-shadow: none;
}
.price-labels {
	font-size: 10px;
	color: #2F2E2F;
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	top: -25px;
}
.price-labels span {
	position: absolute;
	top: 3px	;
}
.price-labels #label-min {
	left: -5px;
}
.price-labels #label-max {
	right: -10px;
}