.timeline-container {
    margin: auto;
}

.timeline {
    list-style-type: none;
    display: flex;
    align-items: center;
   
}

div.timestamp {

    padding-left: 10px;
    padding-right: 10px;
    word-wrap: break-word;
    text-align: center;
    vertical-align: middle;
    display: grid;
}

.li {
    transition: all 200ms ease-in;
}

.timestamp {
    margin-bottom: 20px;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
    height: 38px;
    min-height: 38px;
}

.status {
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    border-top: 4px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
    cursor: pointer; cursor: hand;
}

.status h4 {
    font-weight: 600;
}

.status:before {
    content: url(../img/icon-next-milestone.png);
    width: 24px;
    height: 24px;
    border-radius: 24px;
    position: absolute;
    top: -14px; /*24 px height and 4 px border top / 2 */
    left: 42%;
    transition: all 200ms ease-in;
}

.status.on-time:before {
    content: url(../img/icon-on-time.png);
}

.status.late:before {
    content: url(../img/icon-late.png);
}



.li.met .status {
    border-top: 4px solid #a8da71;
}

.li.met .status:before {
    transition: all 200ms ease-in;
}

.li.met .status h4 {
    color: #a8da71;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
    .timeline {
        list-style-type: none;
        display: block;
    }

    .li {
        transition: all 200ms ease-in;
        display: flex;
        width: inherit;
    }

    .timestamp {
        width: 100px;
    }

    .status:before {
        left: -8%;
        top: 30%;
        transition: all 200ms ease-in;
    }
}


/*# sourceMappingURL=timeline-2.css.map */