<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Created by Hung 2022-11-03
Progressbar
*/


/*the long line accross the cirles*/
.progress-container::before {
	content: "";
	background: var(--inactive-color2);
	position: absolute;
	top: 50%;   /* top 50% of the height of the circle means the line is located at the y-center of the circle */
	left: 0;
	transform: translateY(-50%);
	height: 2px;
	width: 100%;
	z-index: -1;
}

.progress-container {
	display: flex;
	justify-content: space-between;
	position: relative;
	max-width: 100%;
	width: 80%;
	text-align: center;
	margin: auto;  /*center the content*/
	margin-top: 16px;
	z-index: 1;  /*must be set to 1, otherwise the line (.progress-container::before) between the circle will lay behind and will not be visible.*/
}

.progress {
	background: var(--active-background-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	height: 2px;
	width: 0%;
	z-index: -1;
	transition: 0.4s ease;
}

.circle {
	background: #fff;
	color: #999;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--inactive-color2);
	transition: .4s ease;
}

.circle-footer {
	position: absolute;
	background: #fff;
	/*color: #999;*/
	color: black;
	height: auto;
	/*width: 100%;*/
	width:150px;
	transform: translateX(-50px);  /*  left = - (circle-footer-with/2) + (circle-with/2). This will align the footer with its circle on y-axis */
	display: flex;
	align-items: start;
	justify-content: center;
	transition: .4s ease;
}

.circle.active {
	border-color: var(--active-background-color);
	background-color: var(--active-background-color);
	color: var(--active-color);
}


.circle.done {
	border-color: var(--active-background-color);
	background-color: var(--done-background-color);
	color: var(--done-color);
}
</pre></body></html>