.timeline-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-left: 7px solid var(--primary);
    padding: 15px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .timeline-event p {
    margin-bottom: 0 !important;
  }

  .time-stamp {
    padding: 15px 12px;
    font-size: 26px;
    color: var(--primary);
    font-weight: 800;
    /*background-color: #ddd;*/
  }

  .time-line {
    height: 7px;
    padding: 0 15px;
    background-color: var(--primary);
  }

  .time-line.shift {
    margin-left: -18px;
  }

  .time-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;

  }

  .time-info.no-img,
  .time-info.no-img .time-text {
    width: 100% !important;
  }

  .time-shadow {
    -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.2);
  }

  .time-text {
    width: 60%;
    background-color: #fff;
    padding: 25px 20px;
  }

  .time-img {
    width: 40%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
/* Bilder bleiben Desktop meistens in geliefertem Seitenverhältniss - Wenn das nicht gewünscht ist, bitte 'time-img img' eine max-height geben */
  .time-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .time-text .time-heading {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
  }

  /* Ohne Bild */

  /* Wenn text nur 60%*/
  .no-img .time-img {
    height: 7px;
    background-color: var(--primary);
    margin: auto 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  /* Wenn text 100%*/
  .no-img.text-auto .time-text {
    width: auto;
  }

  .no-img.text-auto .time-img {
    height: 0;
    width: 0;
    visibility: hidden;
  }

  @media screen and (max-width: 1000px) {
    .time-info {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
    }

    .time-text {
      width: auto;
    }

    .time-img {
      width: 100%;
      height: auto;
      -webkit-box-shadow: none;
      box-shadow: none;
    }

    .time-img img {
      max-height: 300px;
    }

    /* Ohne Bild */
    .no-img .time-img {
      height: 0;
      visibility: hidden;
    }
  }

  @media screen and (max-width: 600px) {
    .timeline-event {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }

    .time-info {
      margin-left: 27px;
    }

    .time-line.hide-mobile {
      display: none;
    }
  }
  