.progress-bar {
    display: unset;
    background-color: unset;
}

ul.progress-bar {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style: none
}

li.section {
    display: inline-block;
    padding-top: 30px;
    font-size: 11px;
    line-height: 12px;
    color: gray;
    vertical-align: top;
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis
}

li.section:before {
    content: ' ';
    position: absolute;
    top: 2px;
    left: calc(50% - 15px);
    z-index: 1;
    width: 25px;
    height: 25px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    line-height: 25px;
    background: gray
}

.status-bar {
    height: 2px;
    background: gray;
    position: relative;
    top: 17px;
    margin: 0 auto
}

.current-status {
    height: 2px;
    width: 0;
    border-radius: 1px;
    background: #198754
}

@keyframes changeBackground {
    from {
        background: gray
    }
    to {
        background: #198754
    }
}

li.section.visited:before {
    content: '\2714';
    animation: changeBackground .5s linear;
    animation-fill-mode: forwards
}

li.section.visited.current:before {
    box-shadow: 0 0 0 2px #198754
}
