/* #app {
    padding: 50px 0;
} */

.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: 20px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 100;
}

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

.status span {
    font-weight: 600;
    padding-top: 20px;
}

.status span:before {
    content: "";
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 25px;
    border: 4px solid #FF6F57;
    position: absolute;
    top: -25px;
    left: calc(50% - 25px);
    transition: all 200ms ease-in;
}

.swiper-control {
    text-align: center;
}

.swiper-container {
    width: 100%;
    /* height: 250px; */
    height: fit-content;
    /* 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%;
}

.time-lineslider-button {
    width: 50px;
    height: 50px !important;
    border: 3px solid #FF6F57 !important;
    padding: 5px;
}