
.andamentos-result{
    width: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
}
.header-info{
    text-align: center;
}
.header-info ul {
    display: inline-block;
    list-style: none;
    margin: 30px 0 35px 0;
    padding: 0;
}
.header-info ul li{
    margin-right: 20px;
    display: inline;
}

.todos-andamentos{
    width: 100%;
    margin-top: 30px;
    clear: both;
}
.todos-andamentos p{
    margin-left: 10px;
}

.consulta-back{
    margin: 30px;
    text-align: center;
}
.consulta-back .btn{
    border-radius: 0;
}

/* Progress */
.progressbar{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    counter-reset: step;
    display: flex;
}
.progressbar li{
    position: relative;
    list-style-type: none;
    float: left;
    /*width: 20%;*/
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
}

.progressbar li div{
    display: block;
    font-size: 15px;
    color: #000;
}
.progressbar li div span{
    display: block;
    font-size: 14px;
    color: #999;
}

.progressbar li::before{
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    z-index: 1;
    text-align: center;
    margin: 0 auto 20px auto;
    font-size: 14px;
}

.progressbar li::after{
    content: '';
    width: 100%;
    position: absolute;
    top: 20px;
    height: 1px;
    background-color: #ccc;
    z-index: -1;
    left: -50%;
}
.progressbar li:first-child::after{
    content: none;
}

.progressbar li.active, .progressbar li.complete, .progressbar li.error{color: #fff}
.progressbar li.active::before{background-color: #FFD700}
.progressbar li.error::before{background-color: #ff0000}
.progressbar li.complete::before{background-color: #0EA804}