#step-container {
	--circle-size: 20px;
	--line-border-fill: #6491DF;
	--line-border-empty: #bdc3c7;
	--bar-height: 4px;
	--icon-size: calc(var(--circle-size) * 3);
	display: none;
	text-align: center;
	--mt: calc(var(--circle-size) * 2);
	--mb: calc(var(--circle-size) / 2);
	margin: var(--mt) auto var(--mb);
	width: 90%;
	height: var(--circle-size);
	position: relative;
}

@media screen and (min-width: 601px) {
	#step-container {
		--circle-size: 20px;
		--bar-height: 4px;
	}
}

#step-container.active {
	display: block;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#step-container .progress-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#step-container .progress-container::before {
	content: "";
	background-color: var(--line-border-empty);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	height: var(--bar-height);
	width: 98%;
	/* z-index: -1; */
}

#step-container .progress {
	background-color: var(--line-border-fill);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	height: var(--bar-height);
	width: 0%;
	/* z-index: -1; */
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#step-container .step-circle {
	background-color: var(--line-border-empty);
	color: var(--line-border-empty);
	border-radius: 50%;
	height: var(--circle-size);
	width: var(--circle-size);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 3px solid var(--line-border-empty);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	z-index: 1;
}

#step-container .step-circle.step-is-active {
	background-color: var(--line-border-fill);
	color: var(--line-border-fill);
	border-color: var(--line-border-fill);
}

#step-container .step-circle.step-is-active.step-is-current {
	height: var(--circle-size);
	width: var(--circle-size);
}

#step-container .step-circle .step-label {
	position: absolute;
	top: calc(-10px - var(--circle-size));
	font-size: 12px;
	font-weight: bold;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

#step-container .step-circle .step-label span {
	font-size: 15px;
}

/* #step-container #step-icon {
	position: absolute;
	background: url(./step_icon.png) no-repeat;
	background-size: contain;
	z-index: 1;
	width: var(--icon-size);
	height: var(--icon-size);
	top: calc((var(--circle-size) / 2) - (var(--icon-size) / 2));
	left: -1%;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
} */

/* 
@media screen and (min-width: 601px) {
	#step-container {
		--circle-size: 40px;
	}

	#step-container #step-container {
		margin: 30px auto 15px;
		height: var(--circle-size);
	}

	#step-container .step-circle {
		height: 18px;
		width: 18px;
	}

	#step-container .step-circle.step-is-active.step-is-current {
		height: var(--circle-size);
		width: var(--circle-size);
	}

	#step-container .step-circle .step-label {
		top: -24px;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
} */