.timeline-block-container{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--gb-mt-mobile, 0);
    margin-bottom: var(--gb-mb-mobile, 0);
    padding: 0;
    justify-content: center;
}
@media (min-width: 768px) {
    .timeline-block-container {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--gb-mt-desktop, 0);
        margin-bottom: var(--gb-mb-desktop, 0);
    }
}
.timeline-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 12rem;
}
.timeline-text{
    max-width: 600px;
}
.timeline-wrap{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}
.timeline{
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}
@media(max-width:768px){
    .timeline{
        justify-content: space-evenly;
    }
}
.timeline-line{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 100vw;
    height: 0.5px;
    background-color: var(--wp--preset--color--sauge);
    z-index: 0;
}
.timeline-event{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.timeline-date{
    position: relative;
    display: flex;
    &:hover{
        cursor: pointer;
    }
}
.date{
    position: absolute;
    top: 0;
    font-weight: 600;
    font-size: var(--wp--preset--font-size--m-title);
    transform: translate(-50%, -4rem) rotate(-90deg);
    transition: all 600ms ease;
}

.timeline-date-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--sauge);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: width 600ms ease, height 600ms ease;
    z-index: 2;
}
.timeline-date-dot-2{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--blanc);
    border: 1px solid var(--wp--preset--color--sauge);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: width 600ms ease, height 600ms ease;
    z-index: 1;
}
.timeline-progress-line{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 0vw;
    height: 3px;
    background: linear-gradient(90deg, rgba(192, 196, 180, 0.2) 0%,  #C0C4B4 100%);
    transition: width 600ms ease;
}
.timeline-date.active{
    & .date{
        font-size: 60px;
        color: var(--wp--preset--color--sauge);
        transform: translate(-50%, -8.5rem) rotate(-90deg);
    }
    .timeline-date-dot{
        width: 14px;
        height: 14px;
    }
    .timeline-date-dot-2{
        width: 30px;
        height: 30px;
    }
}
.timeline-prev, .timeline-next{
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    background: var(--wp--preset--color--sauge);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
    z-index: 2;
}
.timeline-prev{
    left: 1rem;
}
.timeline-next{
    right: 1rem;
}
.timeline-prev::before, .timeline-next::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    
}
.timeline-prev::before{
    background: url(../../../assets/svg/leftarrow.svg) no-repeat center;
}
.timeline-next::before{
    background: url(../../../assets/svg/rightarrow.svg) no-repeat center;
}
@media (max-width: 768px){
    .timeline-prev, .timeline-next{
        display: none;
    }
}