.stepper-wrapper {
	display: flex;
	justify-content: space-between;
}

.stepper-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;

	@media (max-width: 768px) {
		font-size: 12px;
	}
}

	.stepper-item::before {
		position: absolute;
		content: "";
		border-bottom: 2px solid #ccc;
		width: 100%;
		top: 20px;
		left: -50%;
		z-index: 1;
	}

	.stepper-item::after {
		position: absolute;
		content: "";
		border-bottom: 2px solid #ccc;
		width: 100%;
		top: 20px;
		left: 50%;
		z-index: 2;
	}

	.stepper-item:first-child::before {
		content: none;
	}

	.stepper-item:last-child::after {
		content: none;
	}

	.stepper-item .step-counter {
		position: relative;
		z-index: 3;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #ccc;
		margin-bottom: 6px;
	}

	.stepper-item.step-complet .step-counter {
		color: white;
		background-color: #ff692a;
	}

	.stepper-item.step-complet::after {
		position: absolute;
		content: "";
		border-bottom: 2px solid #ff692a;
		width: 100%;
		top: 20px;
		left: 50%;
		z-index: 2;
	}

	.stepper-item.step-active .step-counter {
		font-weight: 700;
		background-color: #FFC3AA;
	}

	.stepper-item.step-finel .step-counter {
		color: white;
		background-color: #ff692a;
	}
