@charset "utf-8";

/*----------------------------------------------------------------------> ▼ general <----------*/

.step {
	display: flex;
	border: 1px solid #eee;
	border-radius: var(--border_radius);
	overflow: hidden;
}

.step li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	width: calc(100% / 3);
	height: var(--form_height);
	background: #f0f0f0;
	z-index: ;
}

.step li::before,
.step li::after {
	position: absolute;
	top: 0;
	right: calc(var(--form_height) * -0.75);
	border: calc(var(--form_height) * 0.5) solid transparent;
	content: '';
	z-index: ;
}

.step li::before {
	right: calc(var(--form_height) * -0.75 - 3px);
	border-left: calc(var(--form_height) * 0.25) solid #fff;
	z-index: 10;
}

.step li::after {
	border-left: calc(var(--form_height) * 0.25) solid #f0f0f0;
	z-index: 20;
}

.step li.active {
	background: var(--blue);
	z-index: ;
}

.step li:first-of-type::before {
	display: none;
}

.step li.active::before {
	display: none;
}

.step li.active::after {
	border: calc(var(--form_height) * 0.5) solid transparent;
	border-left: calc(var(--form_height) * 0.25) solid var(--blue);
	z-index: ;
}

.step li div {
	width: 100%;
	color: #aaa;
	font-weight: bold;
	line-height: 1em;
	text-align: center;
}

.step li.active div {
	color: #fff;
}

.step li.active {
	background: var(--blue);
	z-index: 1;
}

.step li span {
	position: absolute;
	top: 0;
	right: -3px;
	width: 3px;
	height: var(--form_height);
	background: #fff;
	z-index: 10;
}

.step li:first-of-type span {
	display: none;
}

.si_active {
	border: 3px solid #337;
	background: ;
}

.si_complete {
	position: relative;
	border: none;
}

.step_number {
	margin-bottom: 5px;
	font-size: 10px;
}

.step_title {
}

.si_active .step_title {
	color: ;
}

@media (1024px <= width) {
	.step_title {
		font-size: 18px;
	}

	.global .step_title {
		font-size: 16px;
	}
}

@media (width <= 1023px) {

}