/* ======================================
            PDV ENTREGA ON
 ====================================== */

 .timeline {
    padding-top: 12px;
    list-style: none;
    max-width: 500px;  
    counter-reset: step;
}

.timeline li {
    float: left;    
    text-align: center;
    font-size:15px;
    width: 83px;
    position: relative;  
}

.timeline li:before {
    content: counter(step);
    counter-increment: step;
    line-height: 38px;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 100%;
    border: 1px solid #CCC;
    margin: 0 auto 15px auto;  
    background: #fff;
}

.timeline li:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #DDD;
    display: block;
    position: absolute;
    top: 4.5px;
    left: 50%;
    z-index: -1;
}

.timeline li:last-child:after {
    content: none;
}

.timeline li.active {
    color: #b01624;
}

.timeline li.active:before {
    border-color: #b01624;
    background: #b01624;
}

.timeline li.blinker:before {
    animation: blinker 1s infinite;
}

@keyframes blinker {
    from {
        background: #b01624;
    }
    to {
        background: white;
    }
}

.timeline li.active:after {
    background: #b01624;
}

.entrega-on {
    position:fixed; 
    bottom: 150px;
    background-color: #ffffff;
    width: 300px; 
    height: 130px; 
    margin-bottom: 24px; 
    color: #333333bf;
    box-shadow: 4px 4px 7px #dedede;
}

.solicitar-entregador {
    position: relative;
    top: 1px;
}

.tempo-decorrido-aceite {
    position: absolute;
    bottom: 87px;
    left: 79px;
    color: #b01624;
    font-size: 13px;
}