.progress-bar {
	width: 80vw;
	max-width: 100vw;
	margin: 50px auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	--spacing: 30px;  
	--bullet-size: 30px;
	--bullet-border-width: 3px;
	position: relative;
}
.progress-bar::before {
	content: "";
	position: absolute;
	top: calc(var(--bullet-size) / 2);
	left: calc(var(--bullet-size) / 2 - var(--bullet-border-width));
	width: calc(100% - var(--bullet-size));  
	height: var(--bullet-border-width);
	background-color: #666;
} 
.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; 
	z-index: 1;
}
.step .bullet {
	display: flex;
	justify-content: center;
	align-items: center;
	width: var(--bullet-size);
	height: var(--bullet-size);
	border-radius: 100%;
	border: var(--bullet-border-width) solid #666;
	font-weight: bold;
	color: #666;
	background: #FFF;
	transition: 0.4s ease;
}
.step .bullet.active {
	border-color: #333;
	background: #666;
	color: white;
}
.step .bullet.complete {
	color: #333;
	background: #99b433;
}
.step .check {
	display: none;
	position: relative;
	left: calc(0.9  var(--bullet-size) / 2);
	top: calc(0.25  var(--bullet-size));
	width: calc(0.3  var(--bullet-size));
	height: calc(0.6  var(--bullet-size));
	border: solid white;
	border-width: 0 calc(0.2  var(--bullet-size)) calc(0.2  var(--bullet-size)) 0;
	transform: rotate(45deg);
	z-index: 1;
}
.step .check.active {
	display: block;
}
.step p {
	position: absolute;
	top: calc(var(--bullet-size) + 15px);
	font-size: 16px;
	font-weight: 600;
	color: #666;
	transition: 0.4s ease;
}
.step p.active {
	color: #2c3e50;
}
#crc-progress-bar p {
	font-size: 12px;
	text-align: center;
	margin-top: -5px;
	color: #ccc;
}