.range-slider-wrapper-container.disabled {
	filter: grayscale(1);
	pointer-events: none;
	color:#666;
}

.range-slider-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	gap: 10px;
}

.range-slider {
	position: relative;
	width: 100%;
	height: 3px;
	background: #ddd;
	border-radius: 4px;
	min-width: 110px;
}

.range-selected {
	height: 100%;
	position: absolute;
	background: #4a90e2;
	border-radius: 2px;
}

.range-point {
	width: 14px;
	height: 14px;
	background: #4a90e2;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	transition: transform 0.1s;
}

.range-point:hover {
	transform: translate(-50%, -50%) scale(1.2);
}

.value-above {
	text-align: center;
	margin-bottom: 5px;
}
.value-below {
	text-align: center;
	margin-top: 5px;
}
.value-right {
	flex: 1 1 0%;
 	white-space: nowrap;
}

.min-max-labels {
    position: absolute;
    width: 100%;
    top: 10px;
    font-size: 12px;
    color: #666;
    display: none;
}

.min-max-labels.show {
    display: block;
}

.min-label {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}

.max-label {
    position: absolute;
    right: 0;
    transform: translateX(50%);
}

body:is(.dark *) {
    .min-label, .max-label{
        color: #fff;
    }
}