.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    /* max-width: 900px; */
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 3px;
    margin-left: -1.5px;
    content: "";
    background-color: #e06a8b;
}

.timeline li {
    margin-left: 100px;
    background-color: #fff;
    box-shadow: 0 1px 3px #999;
    border-radius: 4px;
    margin-bottom: 20px;
    min-height: 130px;
    overflow: hidden;
}

.timeline li:before {
    content: "";
    left: 3px;
    margin-top: 52px;
    background-color: #e06a8b;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 1;
}

.timeline li:after {
    content: "";
    left: 3px;
    margin-top: 58px;
    background-color: #e06a8b;
    border-radius: 50%;
    position: absolute;
    width: 95px;
    height: 1px;
    z-index: 0;
}

.timeline>li div {
    float: left;
}

.timeline li:not(.active) {
    opacity: 0.5;
    /* filter: saturate(0%); */
}

.timeline>li.active:hover {
    cursor: pointer;
}

.timeline>li.active:hover {
    box-shadow: 0 1px 15px 2px #e06a8b;
}

.timeline li .timeline-check {
    width: 10%;
    height: 130px;
    text-align: center;
}

.timeline li .timeline-check i {
    font-size: 60px;
    color: #1DA9AA;
    margin-top: 30px;
}

.timeline li:not(.completed) .timeline-check i {
    opacity: 0.1;
    filter: saturate(0%);
}

.timeline li .timeline-image {
    width: 10%;
    height: 130px;
    text-align: center;
}

.timeline li .timeline-image img {
    border-radius: 50% !important;
    max-width: 60px;
    height: auto;
    border: 5px solid #e9ecef;
    border-radius: 100%;
    margin: 25px 10px;
}

.timeline li .timeline-panel {
    width: 70%;
    height: 130px;
}

.timeline li .timeline-panel .timeline-body {
    padding: 10px;
}

.timeline li .timeline-panel .timeline-body h4 {
    font-size: 20px;
    margin: 0;
}

.timeline li .timeline-panel .timeline-body p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.3em;
}

.timeline li .timeline-arrow {
    width: 10%;
    height: 130px;
    text-align: center;
    background-color: #f4f4f4;
}

.timeline li .timeline-arrow i,
.timeline li .timeline-arrow svg {
    font-size: 60px;
    color: #777;
    margin-top: 30px;
}