/* controls */
/* .timeline .timeline-controls {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
.timeline .timeline-controls .timeline-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--dark-color);
    color: #fff;
    cursor: pointer;
}
.timeline .timeline-controls .timeline-controls.left {
    left: 100px;
}
.timeline .timeline-controls .timeline-controls.right {
    right: 100px;
} */
/* timeline */
.timeline .timeline-items {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
}
.timeline .timeline-item-container {
    height: 100vh;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}
.timeline-item-container.empty {
    width: 25vw;
    min-width: 25vw;
}
.timeline .timeline-line {
    width: 50vw;
    height: 10px;
    z-index: 2;
}
.timeline-line .line-inner {
    background: var(--nectar-accent-color);
    height: 100%;
    width: 0px;
}
/* Toggle Area */
.timeline .timeline-item-toggle {
    margin: 0 auto;
    width: 15%;
    min-width: 250px;
    min-height: 200px;
    background: var(--nectar-accent-color);
    color: #fff;
    padding: 50px 20px 20px 20px;
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}
.timeline #item-0 .timeline-item-toggle {
    cursor: not-allowed;
}
.timeline .timeline-item-toggle::after {
    content: "";
    background-image: url('/wp-content/uploads/2023/12/timeline-bottom.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
}
.timeline .timeline-item-toggle .item-number {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    height: 80px;
    width: 80px;
    border-radius: 80px;
    font-size: 40px;
    font-family: 'graphik-bold';
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.timeline .timeline-item-toggle .item-number::after {
    content: "";
    border: 5px solid var(--accent-color);
    width: 90px;
    height: 90px;
    position: absolute;
    border-radius: 100%;
}
.timeline .timeline-item-toggle .item-title {
    font-family: 'graphik-bold';
    font-size: 36px;
    line-height: 44px;
}
/* Content */
.timeline .timeline-item-content {
    position: absolute;
    opacity: 1;
    height: 0px;
    bottom: calc(45vh + 150px);
    overflow: hidden;
    transform-origin: bottom center;
    background: whitesmoke;
    transition: height 0.5s ease-in-out;
    z-index: 1;
    max-height: 45vh;
    overflow-y: scroll;
}
.timeline .timeline-item-content .item-content__inner > div {
    padding: 20px 20px 80px 20px!important;
}
.timeline .timeline-item-content .geek-video-container iframe {
    width: 100%!important;
    height: 100%!important;
}

@media only screen and (max-width: 999px) {
    .timeline .timeline-items {
        width: unset!important;
        overflow-x: scroll;
        padding-top: 50px;
    }
    .timeline .timeline-item-container  {
        width: 100vw;
        min-width: 100vw;
        justify-content: flex-start;
        pointer-events: none;
    }
    .timeline-item-container.empty {
        width: 0vw;
        min-width: 0vw;
    }
    .timeline .timeline-line {
        width: 100vw;
        pointer-events: none;
    }
    .timeline-line .line-inner {
        width: 100%;
    }
    .timeline .timeline-item-toggle {
        margin: 0 10%;
        width: 25%;
        min-width: 80vw;
        pointer-events: all;
    }
    .timeline .timeline-item-toggle::after {
        bottom: -75px;
        height: 75px;
    }
    .timeline .timeline-item-content {
        position: unset;
        width: 25%;
        min-width: 80vw;
        max-height: 60vh;
        pointer-events: all;
        text-align: center!important;
    }
    .timeline .timeline-item-content .item-content__inner > div {
        padding: 100px 20px 20px 20px!important;
    }
}