.statusbar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #849397;
}

.statusbar > li {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 12px;
}

.statusbar > li:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #DFE3E4;
    width: 70px;
    height: 70px;
    text-align: center;
    margin-bottom: 0.25em;
    line-height: 15px;
    border-radius: 100%;
    position: relative;
    z-index: 2;
    padding: 20px 5px;
}

.statusbar > li:after {
    content: '';
    position: absolute;
    display: block;
    background: #DFE3E4;
    width: 100%;
    height: 0.5em;
    top: 2.5em;
    left: 50%;
    margin-left: 1.5em \9;
}

.statusbar > li:last-child:after { display: none }

.statusbar > li.is-complete { color: #00a65a }
.statusbar > li.is-complete:before, .statusbar > li.is-complete:after {
    color: #FFF;
    background: #00a65a;
}

.statusbar > li.is-active { color: #3c8dbc }
.statusbar > li.is-active:before {
    color: #FFF;
    background: #3c8dbc;
}
