.ng-progress {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #777;
   
    padding-top:10px;
}
.ng-progress > li {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 0.7em;
    font-family: "Fira Sans", Sans-serif;
}
.ng-progress > li:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #DFE3E4;
    width: 3em;
    height: 3em;
    text-align: center;
    margin-bottom: 0.25em;
    line-height: 3em;
    border-radius: 100%;
    position: relative;
    z-index: 1000;
}
.ng-progress > li:after {
    content: '';
    position: absolute;
    display: block;
    background: #DFE3E4;
    width: 100%;
    height: 0.5em;
    top: 1.25em;
    left: 50%;
    margin-left: 1.5em\9;
    z-index: -1;
}
.ng-progress > li:last-child:after {
    display: none;
}

.ng-progress > li.is-disabled {
    color: #777;
}
.ng-progress > li.is-complete {
    color: #89c365;
}
.ng-progress > li.is-complete:before, .progress > li.is-complete:after {
    color: #FFF;
    background: #89c365;
}
.ng-progress > li.is-active {
    color: #0073aa;
    font-weight: bold;
}
.ng-progress > li.is-active:before {
    color: #FFF;
    background: #0073aa;
}


@media (max-width: 545px) {
    .ng-progress > li.is-complete > span, .ng-progress > li.is-disabled > span, .ng-progress > li.progress__last > span {
        display: none;
    }
}

/**
 * Needed for IE8
 */
.ng-progress__last:after {
    display: none !important;
}

/**
 * Size Extensions
 */
.ng-progress--medium {
    font-size: 1.3em;
}

.ng-progress--large {
    font-size: 1.8em;
}

.ng-progress {
    margin-bottom: 1em;
}