    /* The actual timeline (the vertical ruler) */
    .timeline_short {
        position: relative;
        max-height:550px;
        margin-bottom:2rem;
    }

    /* The actual timeline (the vertical ruler) */
    .timeline_short::after {
        content: '';
        position: absolute;
        width: 3px;
        background-color: var(--main-color);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }

    /* Container around content */
    .timeline_short_container.timeline_shortright {
        padding: 10px 0 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    .timeline_short_container.timeline_shortleft {
        padding: 10px 40px 10px 0;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    .timeline_short_container.timeline_shortleft .timeline_short_wrapper > div{
        text-align:right;
    }
    .timeline_short_wrapper{
        display:flex;
    }
    .timeline_short_wrapper img{
        max-width:300px;
        border-radius:2rem;
        max-height: max-content;
        margin-bottom: 1.5rem;
    }
    /* Place the container to the left */
    .timeline_shortleft {
        left: 0;
    }

    /* Place the container to the right */
    .timeline_shortright {
        left: 50%;
    }

    /* Add arrows to the left container (pointing right) */
    .timeline_shortleft::before {
        content: " ";
        height: 3px;
        position: absolute;
        top: 39px;
        width: 60px;
        z-index: 1;
        right: 0;
        background: var(--main-color);
    }

    /* Add arrows to the right container (pointing left) */
    .timeline_shortright::before {
        content: " ";
        height: 3px;
        position: absolute;
        top: 38px;
        width: 60px;
        z-index: 1;
        left: 0;
        background: var(--main-color);
    }

    /* Fix the circle for containers on the right side */
    .timeline_shortright::after {
        left: -16px;
    }

    /* The actual content */
    .timeline_short_container.timeline_shortright .content {
        padding: 20px 0px 20px 30px;
        background-color: white;
        position: relative;
    }
    .timeline_short_container.timeline_shortleft .content {
        padding: 20px 30px 20px 0;
        background-color: white;
        position: relative;
    }
    @media (min-width: 1400px) and (-webkit-device-pixel-ratio: 1.25) {
        .timeline_short{
            max-height: 700px;
        }

    }

    /* Media queries - Responsive timeline on screens less than 600px wide */
    @media screen and (max-width: 600px) {
        /* Place the timelime to the left */
        .timeline::after {
            left: 31px;
        }

        /* Full-width containers */
        .timeline_container {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }

        /* Make sure that all arrows are pointing leftwards */
        .timeline_container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }

        /* Make sure all circles are at the same spot */
        .left::after, .right::after {
            left: 15px;
        }

        /* Make all right containers behave like the left ones */
        .right {
            left: 0%;
        }
    }
    @media screen and (max-width: 1200px) {
        .timeline_short{
            display:none;
        }
    }

