@charset "utf-8";

#progressBarId {
	display: block !important;
	width: 80%;
	margin: 0 auto
}

.progress .circle.active,
.progress .circle.active .label {
	color: var(--esii);
	background-color: var(--esiigeneralbackground);
	box-shadow: none
}

.progress .circle.active {
	border: 1px solid var(--esii)
}

.progress .circle {
	background-color: var(--esiibackground)
}

.progress .circle.done .label {
	background: var(--esii);
	color: var(--esiigeneralbackground);
}

.progress .circle .progressBarTitle {
	color: var(--esiitext) !important;
	font-weight: normal !important;
	white-space: nowrap;
}

.progress .circle.done {
	color: var(--esii);
	background: var(--esii)
}

.progress {
	text-align: center;
	margin-bottom: 5rem;
	font-size: 1em;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.progress .circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--esiibackground);
	width: 25px;
	height: 25px;
	border-radius: 25px;
	font-weight: bold;
}

.progress .bar {
	background: var(--esii);
	position: relative;
	width: 13%;
	height: 1px;
	top: 12px;
	margin-left: 3px;
	margin-right: 3px;
	border-left: none;
	border-right: none;
	border-radius: 0;
}

.progress .circle .label {
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 25px;
	margin-top: 0px;
	color: #475569;
}