/* Dual-handle price range used by the search form. */
.als .als-field--price {
	min-width: 0;
}

.als .als-field--price > .als-field__label {
	left: 50%;
	width: max-content;
	text-align: center;
	transform: translateX(-50%);
}

.als .als-price-range {
	box-sizing: border-box;
	padding-top: 25px;
	width: 100%;
}

.als .als-price-range__values,
.als .als-price-range__limits {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.als .als-price-range__values > span:last-child {
	text-align: right;
}

.als .als-price-range__values output {
	display: block;
	color: #222;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.als .als-price-range__sliders {
	position: relative;
	height: 28px;
	margin: 7px 0 2px;
}

.als .als-price-range__track,
.als .als-price-range__fill {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	height: 4px;
	border-radius: 999px;
	transform: translateY(-50%);
}

.als .als-price-range__track {
	background: #d8d8d8;
}

.als .als-price-range__fill {
	background: #f15b4d;
}

.als .als-price-range input[type="range"] {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 28px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.als .als-price-range input[type="range"]::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
}

.als .als-price-range input[type="range"]::-webkit-slider-thumb {
	width: 18px;
	height: 18px;
	margin-top: -7px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #f15b4d;
	box-shadow: 0 0 0 1px #f15b4d, 0 2px 5px rgba(0, 0, 0, .2);
	cursor: grab;
	pointer-events: auto;
	-webkit-appearance: none;
}

.als .als-price-range input[type="range"]::-moz-range-track {
	height: 4px;
	border: 0;
	background: transparent;
}

.als .als-price-range input[type="range"]::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #f15b4d;
	box-shadow: 0 0 0 1px #f15b4d, 0 2px 5px rgba(0, 0, 0, .2);
	cursor: grab;
	pointer-events: auto;
}

.als .als-price-range input[type="range"]:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px rgba(241, 91, 77, .3), 0 0 0 1px #f15b4d;
}

.als .als-price-range input[type="range"]:focus-visible::-moz-range-thumb {
	box-shadow: 0 0 0 3px rgba(241, 91, 77, .3), 0 0 0 1px #f15b4d;
}

.als .als-price-range__limits {
	color: #777;
	font-size: 11px;
	line-height: 1.35;
}
