.component-steps .steps-wrap {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 0;
	padding: 0;
	margin-bottom: 0;
	background-color: #fff;
	border-radius: 5px;
}

.component-steps .steps-wrap .step {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #231F20;
	opacity: 0.5;
	transition: all 0.2s ease-in-out;
	padding: 32px 40px;
	flex: 1 1 auto;
	border-bottom: 2px solid #EBEBEB;
}

.component-steps .steps-wrap .step.completed {
	border-bottom: 2px solid #EBEBEB;
	opacity: 1;
}

.component-steps .steps-wrap .step.active {
	font-weight: 500;
	color: #231F20;
	border-bottom: 2px solid var(--color-primary);
	opacity: 1;
}

.component-steps .steps-wrap .step .step-number {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 1px solid #231F20;
	border-radius: 50%;
	text-align: center;
	padding: 3px;
	font-weight: 400;
	margin-bottom: 5px;
	flex-shrink: 0;
}


.component-steps .steps-wrap .step.completed .step-number {
	font-size: 0;
	border-color: var(--color-primary);
	background-image: url('../../../images/check.svg');
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
}