/* Container around content */
.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The verticle line on the timeline */
.timeline-container:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  right: -5px;
  background-color: #e5e9ec;
  top: 0px;
  z-index: 1;
}

/* Place the container to the left */
.timeline-container:nth-child(even) {
  left: 0;
}

/* Place the container to the right */
.timeline-container:nth-child(odd) {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.timeline-container:nth-child(even)::before {
  content: "";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #e5e9ec;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e5e9ec;
}

/* Add arrows to the right container (pointing left) */
.timeline-container:nth-child(odd)::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #e5e9ec;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e5e9ec transparent transparent;
}

/* Fix the verticle line for containers on the right side */
.timeline-container:nth-child(odd)::after {
  left: -5px;
}

/* The actual content */
.timeline-content {
  padding: 20px 30px;
  background-color: #e5e9ec;
  position: relative;
  border-radius: 6px;
}

.timeline-content .wp-block-columns {
  margin: 0.75rem 0 0;
}

/* The actual title */
.timeline-header {
  font-size: x-large;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 800px) {
  /* 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:nth-child(odd):before {
    left: 60px;
  }
  .timeline-container:nth-child(even):before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 60px;
    border: solid transparent;
    border-right: solid #e5e9ec;
    border-width: 10px 10px 10px 0;
  }
  /* Make sure all circles are at the same spot */
  .timeline-container:nth-child(even)::after, .timeline-container:nth-child(odd)::after {
    left: 13px;
  }
  /* Make all right containers behave like the left ones */
  .timeline-container:nth-child(odd) {
    left: 0%;
  }
}
/*********************************************
 * Editor
 *********************************************/
.lzb-preview-server .timeline-container {
  width: unset;
}

.lzb-preview-server .timeline-container:nth-child(odd) {
  left: unset;
}

/*********************************************/
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.timeline > .timeline-container::after {
  width: 25px;
  height: 25px;
  right: -13px;
  border: 4px solid #884a93;
  top: 15px;
  border-radius: 50%;
}

.timeline > .timeline-container:nth-child(odd)::after {
  left: -13px;
}/*# sourceMappingURL=ehu-timeline-event.css.map */