#progress-bar {
    display: table;
    width: 100%;
    margin: 0;
    padding: 15px 15px 0;
    table-layout: fixed;
    width: 100%;
    counter-reset: step;
}
#progress-bar li {
    list-style-type: none;
    display: table-cell;
    width: 20%;
    float: left;
    font-size: 16px;
    position: relative;
    text-align: center;
    color: white;
}
#progress-bar li a {
    color: white;
}
#progress-bar li:before {
    width: 50px;
    height: 50px;
    color: #212121;
    content: counter(step);
    counter-increment: step;
    line-height: 50px;
    font-size: 18px;
    border: 1px solid rgba(72, 180, 245, 0.78);
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #fff;
}
@media only screen and (max-width: 600px) {
    #progress-bar li:before {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
#progress-bar li:after {
    width: 100%;
    height: 10px;
    content: '';
    position: absolute;
    background-color: rgba(119, 207, 252, 0.26);
    top: 25px;
    left: -50%;
    z-index: -1;
}

@media only screen and (max-width: 600px) {
    #progress-bar li:after {
        display: none;
    }
}

#progress-bar li:first-child:after {
    content: none;
}
#progress-bar li.step-done {
    color: #48b4f5;
}
#progress-bar li.step-done:before {
    border-color: #6ec7fb;
    background-color: #80cdfc;
    color: #ffffff;
    content: "\f00c";
    font-family: "FontAwesome";
}
#progress-bar li.step-done + li:after {
    background-color: #6ec7fb;
}
#progress-bar li.step-active {
    color: #48b4f5;
}
#progress-bar li.step-active:before {
    border-color: #48b4f5;
    color: #48b4f5;
    font-weight: 600;
}
