ul.progress-bar-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none;
}

li.section-progressbar {
    display: inline-block;
    padding-top: 45px;
    font-size: 13px;
    font-weight: bold;
    line-height: 16px;
    color: gray;
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
	font-family: THICCCBOI, sans-serif;
	font-weight: 500;
}

li.section-progressbar:before {
    content: '';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 30px;
    height: 30px;
    color: white;
    border: 2px solid white;
    border-radius: 17px;
	line-height: 28px;
    background: #d9d9d9;
	box-shadow: 0 0 0 2px #d3d3d3;
}
.status-bar {
    height: 2px;
    background: gray;
    position: relative;
    top: 20px;
    margin: 0 auto;
}
.current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: #FD770A;
}

@keyframes progressBarchangeBackground {
    from {background: gray}
    to {background: #FD770A}
}

li.section-progressbar.visited:before {
    content: '\2714';
    animation: progressBarchangeBackground .5s linear;
    animation-fill-mode: forwards;
	box-shadow: 0 0 0 2px #FD770A;
}

li.section-progressbar.visited.current:before {
	content: '';
    box-shadow: 0 0 0 2px #FD770A;
}
