.sliderrange {
	min-height: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sliderrange-range {
	height: 4px;
	position: relative;
	margin: 8px 0px;
}

.sliderrange-display {
	display: flex;
	justify-content: space-around;
	margin: 0;
	font-size: 12px;
}

.sliderrange-range:before {
	display: block;
	content: '';
	height: 4px;
	border-radius: 4px;
	background: #000000;
}

.sliderrange-range-indicator {
	height: 4px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	background-color: #e21818
}

.sliderrange-button-start,
.sliderrange-button-end {
	cursor: pointer;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 12px;
	background: #e21818;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: visible;
}