.timeline-container {
    width: 100%;
    min-height: 200px;
    margin: 50px 0;
    overflow: hidden;
}
.timeline {
    margin: 0;
    list-style-type: none;
    display: flex;
    padding: 0;
    text-align: center;
    position: relative;
}

.timeline .slick-prev, .timeline .slick-next {
    top: 7%;
}
.timeline .slick-next {
    right: 20px;
}
.timeline .slick-prev {
    left: 20px;
}
.timeline .slick-prev:before {
    transform: rotate(180deg);
    transform-origin: center center;
}
.timeline li {
    transition: all 200ms ease-in;
}

.timestamp {
    width: 100%;
    margin-bottom: 20px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.timestamp .date {
    background: rgb(41 127 194 / 25%);
    border-radius: 13px;
    padding: 2px 35px;
    position: relative;
}
.timestamp .date:after {
    border-left: 1px solid #002554;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    bottom: -20px;
    content: "";
}
.status {
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #002554;
    position: relative;
    transition: all 200ms ease-in;
}

.status span {
    font-size: 14px;
    padding-top: 20px;
    line-height: 20px;
}

.status span:before {
    /*content: ''; */
    width: 25px;
    height: 25px;
    background-color: rgb(41 127 194 / 25%);
    border-radius: 25px;
    border: 4px solid #002554;
    position: absolute;
    top: -15px;
    left: calc(50% - 12px); 
    transition: all 200ms ease-in;
}

.timeline-slide {
    width: 200px;
}