/* Form Progress */
.step-bar {
    text-align: center;
    /*width: 300px;*/
    display: inline-block;
}
.step-bar .step,
.step-bar .bar {
    display: inline-block;
    background: #fff;
    width: 26px; height: 26px;
    border-radius: 40px !important;
    border: 1px solid #d5d5da;
}
.step-bar .bar {
    position: relative;
    width: 80px;
    height: 6px;
    margin: 0 -5px 26px -5px;
    border-left: none;
    border-right: none;
    border-radius: 0 !important;
}
.step-bar .step .label {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 14px;
    border-radius: 32px !important;
    margin-top: 3px;
    color: rgba(0, 58, 112, 1);
    font-size: 10px;
}
.step-bar .step .title {
    color: rgba(171, 174, 174, 1);
    font-size: 13px;
    line-height: 30px;
    margin-left: -5px;
}

/* Done / Active */
.step-bar .bar.done{
    background: rgba(0,58,112,1);
}
/*.step-bar .step.done {*/
    /*background: #eee;*/
/*}*/
.step-bar .bar.active {
    background: linear-gradient(to right, #EEE 40%, #FFF 60%);
}
.step-bar .step.done .label {
    color: #FFF;
    background: rgba(0,58,112,1) !important;
    box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.step-bar .step .title{
    margin-top:0px;
}
.step-bar .step .title.multi{
    margin-left:-40px;
    width: 100px;
}
.step-bar .step.done .title {
    color: rgba(0,58,112,1);
}
.step-bar .step.active .label {
    color: #FFF;
    background: rgba(171, 174, 174, 1);
    box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.step-bar .step.active .title {
    color: rgba(171, 174, 174, 1);
}

@media screen and (max-width: 991px) {
    .step-bar {
        padding-top: 8px;
    }
}