.value-adjuster {
	position: relative;
	display: block;
	width: 100%;
	height: 1em;
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
}

.value-adjuster-track {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background: #f0f0f0;
	border: 1px solid #cccccc;
	border-radius: 0.3em;
	overflow: hidden;
	user-select: none;
	touch-action: none;
}

.value-adjuster-track.style-color {
	cursor: ew-resize;
}

.value-adjuster-fill {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 0;
	background: rgba(70, 130, 246, 0.22);
	pointer-events: none;
}

.value-adjuster-display {
	position: relative;
	z-index: 1;
	flex: 1;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	pointer-events: none;
}

.value-adjuster-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.5em;
	height: 0.5em;
	margin: -0.25em 0 0 -0.25em;
	border-radius: 50%;
	background: #4682f6;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.value-adjuster-handle {
	position: absolute;
	top: 8%;
	bottom: 8%;
	left: 50%;
	width: 1em;
	margin-left: -0.5em;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.15em;
	background: #f2c05e;
	border-radius: 0.25em;
	cursor: ew-resize;
	touch-action: none;
}

.value-adjuster-handle:focus-visible {
	outline: 2px solid #4682f6;
	outline-offset: 2px;
}

.value-adjuster-handle span {
	width: 0.1em;
	height: 40%;
	border-radius: 0.1em;
	background: #ffffff;
	opacity: 0.85;
}

.value-adjuster-controls {
	display: flex;
	align-items: center;
	gap: 0.6em;
	margin-top: 0.4em;
	font-size: 0.85em;
}

.value-adjuster-controls label {
	color: #666666;
}

.value-adjuster-controls select,
.value-adjuster-controls button {
	font: inherit;
}

.value-adjuster-reset {
	margin-left: auto;
}
