#on-consult {
    width: 100%;
    float: left;
    position: relative;
}
.on-result {
    padding: 0 1rem;
    overflow: hidden;
    border: 1px solid #ddd;
}
ul.protocolo-progresso {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    float: left;
    counter-reset: step;
}

ul.protocolo-progresso li::before{
    content: counter(step);
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    border: 1px solid #D7D7C9;
    margin: 0 auto;
    margin-bottom: 10px;
    /*box-shadow: inset 5px 1px 5px #D7D7C9;*/
    background-color: #fff;
    color: #999;
    z-index: 1;
    position: relative;
}

ul.protocolo-progresso li::after{
    content: "";
    position: absolute;
    width: 100%;
    top: 15px;
    left: 50%;
    height: 1px;
    background-color: #D7D7C9;
    z-index: 0;
}
ul.protocolo-progresso li:last-child::after{
    content: none;
}

ul.protocolo-progresso li {
    width: 20%;
    float: left;
    text-align: center;
    font-size: .8rem;
    counter-increment: step;
    flex-grow: 1;
    position: relative;
}
ul.protocolo-progresso li span{
    display: inline-block;
    font-size: .7rem;
    color: #999;
}

ul.protocolo-progresso li.complete::before {
    background-color: #312e2e;
    color: #f9cb18;
}

ul.protocolo-info {
    list-style: none;
    margin:2rem 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

ul.protocolo-info li {
    font-size: .9rem;
}
ul.protocolo-info li strong {
    color: #000;
}

.protocolo-andamentos {
    overflow: hidden;
    clear: both;
    margin: 2rem 0;
}
.protocolo-andamentos p {
    color: #999;
    margin: 0;
}

.protocolo-andamentos table {margin: 1rem 0;}
