.wrapper {
	position: relative;
	/* background-color: #ffffff; */
	padding: 0 11px;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100px;
	/* padding: 0 11px; */
}

.slider-container>input[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	outline: none;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	background-color: transparent;
	pointer-events: none;
	border: none;
	padding: 0;
}

.slider-track {
	width: 100%;
	height: 5px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	border-radius: 5px;
}

.slider-container>input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	height: auto;

}

.slider-container:has(> .mobile)>input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	height: auto;
}

.slider-container>input[type="range"]::-moz-range-track {
	-moz-appearance: none;
	height: 5px;
}

.slider-container>input[type="range"]::-ms-track {
	appearance: none;
	height: 5px;
}

.slider-container>input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 20px;
	width: 20px;
	background-color: #ffffff;
	cursor: pointer;
	pointer-events: auto;
	border-radius: 50px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	transition: all 0.1s;
}

.slider-container:has(> .mobile)>input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 25px;
	width: 25px;
	background-color: #ffffff;
	cursor: pointer;
	pointer-events: auto;
	border-radius: 50px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	transition: all 0.1s;
}

.slider-container>input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;
	width: 20px;
	width: 20px;
	cursor: pointer;
	border-radius: 50%;
	background-color: #ffffff;
	pointer-events: auto;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.slider-container>input[type="range"]::-ms-thumb {
	appearance: none;
	width: 20px;
	width: 20px;
	cursor: pointer;
	border-radius: 50%;
	background-color: #ffffff;
	pointer-events: auto;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.slider-container>input[type="range"]:hover::-webkit-slider-thumb {
	background-color: #f0f0f0;
}

.slider-container>input[type="range"]:active::-webkit-slider-thumb {
	background-color: #ffffff;
	border: 3px solid var(--primary-dark);
	scale: 1.2;
	z-index: 2;
}

.slider-values>span {
	user-select: none;
	color: white;
}

.slider-values {
	background-color: #2b3e51;
	position: absolute;
	bottom: 75%;
	transform: translateX(-50%);
	box-shadow: 0 0 3px white;
	padding: 3px 11px;
	border-radius: 5px;
	text-align: center;
	font-weight: 500;
	font-size: 12px;
	color: #ffffff;
}

.slider-values:before {
	content: "";
	position: absolute;
	height: 0;
	width: 0;
	border-top: 10px solid #2b3e51;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	margin: auto;
	bottom: -10px;
	left: 0;
	right: 0;
}

.below {
	top: 75%;
	bottom: unset;
}

.below:before {
	top: -10px;
	bottom: unset;
	border-bottom: 10px solid #2b3e51;
	border-top: none;
}

@media only screen and (max-width: 1024px) {
	.slider-container {
		width: 100%;
	}
}