/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.range-slider-track::-webkit-slider-runnable-track {
	background: linear-gradient(
		to right,
		#fdc200 0,
		#fdc200 var(--range-progress, 0%),
		#E4E4E4 var(--range-progress, 0%),
		#E4E4E4 100%
	);
	height: 6px;
	border-radius: 999px;
}

.range-slider-track::-moz-range-track {
	background: linear-gradient(
		to right,
		#fdc200 0,
		#fdc200 var(--range-progress, 0%),
		#E4E4E4 var(--range-progress, 0%),
		#E4E4E4 100%
	);
	height: 6px;
	border-radius: 999px;
}

.range-slider-track::-ms-track {
	background: linear-gradient(
		to right,
		#fdc200 0,
		#fdc200 var(--range-progress, 0%),
		#E4E4E4 var(--range-progress, 0%),
		#E4E4E4 100%
	);
	height: 6px;
	border-radius: 999px;
}

.range-slider-track {
	-webkit-appearance: none;
	appearance: none;
}

.range-slider-track::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 4px solid #ffffff;
	background: #fdc200;
	margin-top: -12.5px;
}

.range-slider-track::-moz-range-thumb {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 4px solid #ffffff;
	background: #fdc200;
}

.range-slider-track::-ms-thumb {
	width: 31px;
	height: 31px;
	border-radius: 50%;
	border: 4px solid #ffffff;
	background: #fdc200;
}
