/* Stretch level selector */

.stretch-indicator {
	display: flex;
	gap: 8px;
}

.stretch-item {
	width: 10px;
	height: 25px;
	background: transparent;

	border: 1px solid #fff;
}

.stretch-item-checked {
	border: 1px solid #34d399;
	background: #34d399;
}

/* Range */

.range-wrapper {
	position: relative;
	width: 100%;
}

.range {
	position: absolute;
	background: #18181b;
	width: 100%;
	height: 8px;
	border-radius: 16px;
}

.range-filled {
	position: absolute;
	background: #34d399;
	width: 40%;
	height: 8px;
	border-radius: 16px;
}

.range-thumb {
	background: #34d399;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	position: absolute;
	left: calc(40% - 10px);
	top: -5px;
}

/* Checkbox */

.checkbox-wrapper {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
}

.checkbox {
	height: 16px;
	width: 16px;
	background: #18181b;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.checkbox-checked {
	background: #34d399;
}

/* Input range */

.length-range {
	-webkit-appearance: none !important;
	height: 8px;
	background: #18181b;
	border: none;
	outline: none;
	border-radius: 16px;
}

.length-range::-webkit-slider-thumb {
	-webkit-appearance: none !important;
	width: 24px;
	height: 24px;
	background: #34d399;
	border: 2px solid #18181b;
	border-radius: 50%;
	cursor: pointer;
}

.length-range::-moz-range-progress {
	background: #34d399;
}
