
.timeline {
    /* margin: 50px 0; */
    list-style-type: none;
    display: flex;
    padding: 0;
    text-align: center;
}
.timeline li {
    transition: all 200ms ease-in;
}
.timestamp {
    width: 100%;
    margin-bottom: 40px;
    padding: 0px 40px;
    display: flex;
    height: 40px;
    flex-direction: column;
    text-align: center;
    color: #FFFF;
    font-weight: bold;
}
.status {
    padding: 10px 40px;
    display: flex;
    text-align: center;
    border-top: 2px solid #C2C2C2;
    position: relative;
    transition: all 200ms ease-in;
    flex-direction: column;
}

.status span {
    font-weight: 600;
    padding-top: 20px;
    color: #FFFF;
    font-size: 15px;
}
.status span:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: #e8eeff;
    border-radius: 25px;
    border: 4px solid #3e70ff;
    position: absolute;
    top: -10px;
    left: calc(50% - 12px);
    transition: all 200ms ease-in;
}
.swiper-control {
    text-align: right;
}

.swiper-container {
    width: 100%;
    margin: 50px 0;
    overflow: hidden;
    padding: 0 20px 30px 20px;
}
.swiper-slide {
    width: 200px;
    text-align: center;
    font-size: 18px;
}
.swiper-slide:nth-child(2n) {
    width: 40%;
}
.swiper-slide:nth-child(3n) {
    width: 20%;
}
button.btn.btn-default.btn-sm.prev-slide, button.btn.btn-default.btn-sm.next-slide  {
    color: #FFFF !important;
    background-color: rgba(251, 194, 4, 1) !important;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

.timeline-sub-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

 p.swiper-control {
        display: none;
    }

/* Add arrow to first .status */
/*@media (min-width: 1300px) {*/

    /* Add arrow to first .status */
    .swiper-slide:first-of-type .status::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 0px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #C2C2C2;
        border-left: 2px solid #C2C2C2;
        transform: rotate(-45deg);
        background: transparent;
    }

    /* Add arrow to last .status */
    .swiper-slide:last-of-type .status::after {
        content: "";
        position: absolute;
        top: -6px;
        right: 0px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #C2C2C2;
        border-right: 2px solid #C2C2C2;
        transform: rotate(45deg);
        background: transparent;
    }
/*}*/

@media (min-width: 1101px) and (max-width: 1440px) {

    .timeline-sub-title {
        font-size: 12px !important;
    }

    .timestamp {
        margin-bottom: 50px !important;
 
    }
    
    .timeline-title {
        font-size: 14px !important;
    }
}

@media (max-width: 1024px) {

    p.swiper-control {
        display: block;
    }
}




