@use '../variables' as *;

.#{$prefix}slider {
	position: relative;
	margin: 1rem;
	width: 100%;
	height: 20px;
	display: flex;
	align-items: center;

	&__track {
		width: 100%;
		height: 5px;
		background-color: blue;
	}

	&__range {
		width: 50%;
		height: 5px;
		background-color: red;
	}

	&__thumb {
		position: absolute;
		width: 20px;
		height: 20px;
		border-radius: 9999px;
		background-color: pink;
	}

	&__marks {
		width: 100%;
		display: flex;
		align-items: center;
	}

	&__mark {
		position: absolute;
		width: 10px;
		height: 10px;
		border-radius: 9999px;
		background-color: peru;
	}

	&__mark-label {
		position: absolute;
		top: 1.5rem;
		text-align: center;
	}
}
