

ul.progress-bar {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
	background-color: inherit !important;
	display: inherit !important;
}

li.section {
    display: inline-block;
    padding-top: 45px;
    font-size: 18px;
    font-weight: bold;
    /*line-height: 18px;*/
    color: var(--headings-color);
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

li.section:before {
	font-family: 'Font Awesome 6 Pro';
    content: '\f00d';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 40px;
    height: 40px;
    color: white;
    border: 2px solid white;
    border-radius: 20px;
    line-height: 40px;
    background: gray;
}
.status-bar {
    height: 2px;
    background: gray;
    position: relative;
    top: 20px;
    margin: 0 auto;
}
.current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: var(--main-color);
}

@keyframes changeBackground {
    from {background: gray}
    to {background: var(--main-color)}
}

li.section.visited:before {
    font-family: 'Font Awesome 6 Pro';
    content: '\f00c';
    animation: changeBackground .5s linear;
    animation-fill-mode: forwards;
}

li.section.current:before {
    box-shadow: 0 0 0 2px var(--main-color);
}

li.section.visited.current:before {
    box-shadow: 0 0 0 2px var(--main-color);
}
