.step-container {
	text-align: center;
	display: flex;
	list-style: none;
	justify-content: center;
	padding: 0;
}

.step {
	--color: var(--color-white);
	display: inline-flex;
	align-items: center;
}

.step a {
	display: inline-flex;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 1px solid var(--color);
	color: var(--color);
	justify-content: center;
	align-items: center;
}

.step-previous {
	--color: var(--color-carbone);
}

.step-current {
	--color: var(--color-white);
}

.step-current a {
	background-color: var(--color-raspberry);
	border: none;
}

.step-after {
	--color: var(--color-caramel);
	pointer-events: none;
}

.step-skipped {
	--color: var(--color-caramel);
	pointer-events: none;
}

.step-skipped a {
	border-style: dashed;
	opacity: 0.45;
}

.step-previous:after,
.step-skipped:after,
.step-after:before {
	display: block;
	content: "";
	height: 1px;
	width: 40px;
	background-color: var(--color);
	margin: 0 8px;
}

@media screen and (max-width: 480px) {
	.step a {
		font-size: 14px;
		height: 28px;
		line-height: 20px;
		width: 28px;
	}

	.step-previous:after,
	.step-skipped:after,
	.step-after:before {
		margin: 0 6px;
		width: 20px;
	}
}
