.timeline {
    position: absolute;
    background: var(--color-blue);
    width: 2px;
    height: 100%;
    padding: 0px !important;
    margin: 0px !important;
    left: calc(25% - 1px);
    z-index: 0;
}

.timeline_progress-bar {
    z-index: -1;
    background-color: var(--color-red);
    width: 2px;
    height: 0;
}

.timeline_circle {
    margin-top: 1rem;
    position: absolute;
    left: 25%;
    width: 0.5rem;
    background: white;
    height: calc(0.5rem + 16px);
    transform: translate(-50%, -50%);
}

.timeline_circle .circle {
    border-radius: 100%;
    transform: translate(-50%, -50%);
    background-color: var(--color-blue);
    width: 0.5rem;
    height: 0.5rem;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}

.timeline-pin-container {
    height: 100%;
}

@media screen and (max-width: 768px) {

    .timeline,
    .timeline_circle {
        display: none !important;
    }
}