/* Zeitleiste v1.0 | MIT License | @MatthiasRke */

/* Neuer Eintrag */
.box h3 {
    text-align: center;
}

/* Nicht sichtbarer Kasten drumherum */
.time-container {
    position: relative;
    width: 50%;
    padding: 10px 40px;
    background: inherit;
}

/* Ein Kasten links */
.time-container:nth-child(odd) {
    left: 0;
}

/* Ein Kasten rechts */
.time-container:nth-child(even) {
    left: 50%;
}

/* Senkrechte Linie */
.timeline {
    position: relative;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background: #555;
    margin-left: -3px;
}

/* Kreise auf der senkrechten Linie */
.time-container::after {
    content: '';
    position: absolute;
    top: 19px;
    right: -13px;
    width: 25px;
    height: 25px;
    background: #fff;
    border: 4px solid #005197;
    border-radius: 50%;
    z-index: 1;
}

/* Sprechblase mit Inhalt */
.time-content {
    position: relative;
    padding: .7rem 1rem;
    background-color: #f0f0f0;
    border-radius: 6px;
}

/* Sprechblasen-Dorn zeigt nach rechts */
.time-container:nth-child(odd)::before {
    content: " ";
    position: absolute;
    top: 22px;
    right: 30px;
    width: 0;
    height: 0;
    border: medium solid #f0f0f0;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f0f0f0;
    z-index: 1;
}

/* Sprechblasen-Dorn zeigt nach links */
.time-container:nth-child(even)::before {
    content: " ";
    position: absolute;
    top: 22px;
    left: 30px;
    width: 0;
    height: 0;
    border: medium solid #f0f0f0;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f0f0f0 transparent transparent;
    z-index: 1;
}

/* Anpassen der Kreise auf der rechten Seite */
.time-container:nth-child(even)::after {
    left: -12px;
}

/* Anpassen für kleine Bildschirme */
@media screen and (max-width: 576px) {
/* Verschieben der Zeitleiste nach links */
    .timeline::after {
        left: 31px;
    }
/* Kästen auf volle Breite */
    .time-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
/* Sprechblasen-Dorne zeigen nach links */
    .time-container:nth-child(odd)::before,
    .time-container:nth-child(even)::before {
        left: 60px;
        border: medium solid #fff;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f0f0f0 transparent transparent;
    }
/* Anpassen der Kreise */
    .time-container:nth-child(odd)::after,
    .time-container:nth-child(even)::after {
        left: 18px;
  }
/* Anpassen der Kästen */
    .time-container:nth-child(even) {
        left: 0%;
    }
}

/* Druckversion */
@media print {
    #page-header,
    #page-footer,
    .intro,
    .nav-tabs,
    .datapreferences,
    .btn-secondary,
    i.icon,
    .comment-area,
    .pagination,
    input,
    .activity-navigation {
        display: none;
    }
}