/* timeline entry: text box including title etc. */
.timeline {
  border-left: 4px solid #ddd;
  margin-top: 20px;
  margin-left: 70px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 35px;
  list-style: none;
  text-align: left;
  font-family: lato-thin, sans-sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 22px;
  max-width: 80%;
}
/* timeline entry: title style */
.timeline h3 {
  font-family: acumin-pro-wide-light, sans-sans-serif;
  font-weight: 200;
  font-size: 22px;
  line-height: 22px;
}
/* timeline entry: distance to next entry */
.timeline .event {
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}
/* last timeline entry: no padding at the bottom of the textbox */
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
/* timeline entry: date */
.timeline .event:before {
  left: -187px;
  content: attr(data-date);
  text-align: right;
  font-family: acumin-pro-wide-light, sans-sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 22px;
  color: #bbb;
  min-width: 120px;
}
/* timeline entry: green dot */
.timeline .event:after {
  border: 3px solid #8cc63f;
  left: -44px;
  background: white;
  border-radius: 50%;
  height: 14px;
  width: 14px;
  content: "";
  top: 5px;
}
