section.timeline div.container {
  max-width: 1000px;
}
section.timeline div.timeline-points {
  position: relative;
  padding: 60px 0 60px;
}
section.timeline div.timeline-points span.stroke {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background: var(--default-color);
}
@media (min-width: 1280px) {
  section.timeline div.timeline-points span.stroke {
    left: calc(50% - 1px);
  }
}
section.timeline div.timeline-points span.stroke i {
  height: 0;
  width: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0 0 auto 0;
  background: var(--active-color);
}
section.timeline div.timeline-points i.dot {
  height: 2px;
  width: 30px;
  position: absolute;
  left: 15px;
  background: var(--default-color);
  z-index: 1;
  transition: background 0.2s ease;
}
@media (min-width: 1280px) {
  section.timeline div.timeline-points i.dot {
    left: calc(50% - 15px);
  }
}
section.timeline div.timeline-points i.dot:first-of-type {
  top: 0;
}
section.timeline div.timeline-points i.dot:last-of-type {
  bottom: 0;
}
section.timeline div.timeline-points i.dot.on {
  background: var(--active-color);
}
section.timeline .timeline-point {
  position: relative;
  display: flex;
  margin-bottom: 60px;
}
section.timeline .timeline-point:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  section.timeline .timeline-point {
    padding-left: calc(30px + 8%);
    flex-direction: column-reverse;
  }
}
@media (min-width: 1280px) {
  section.timeline .timeline-point {
    align-items: center;
    margin-bottom: 120px;
  }
  section.timeline .timeline-point:nth-of-type(even) {
    text-align: right;
    flex-direction: row-reverse;
  }
  section.timeline .timeline-point:nth-of-type(even) > *:last-child {
    margin: 0 18% 0 0;
  }
}
section.timeline .timeline-point.on::before {
  background: var(--active-color);
}
section.timeline .timeline-point::before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: 15px;
  border-radius: 50%;
  background: var(--default-color);
  transition: background 0.2s ease;
}
@media (min-width: 1280px) {
  section.timeline .timeline-point::before {
    height: 40px;
    width: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
  }
}
section.timeline .timeline-point > * {
  flex: 1;
}
@media (min-width: 1280px) {
  section.timeline .timeline-point > * {
    width: 50%;
  }
  section.timeline .timeline-point > *:last-child {
    margin-left: 18%;
  }
}
section.timeline .timeline-point > * > *:last-child {
  margin-bottom: 0;
}

[data-type="acf/timeline"] section.timeline div.container div.timeline-points .timeline-point:last-of-type {
  margin-bottom: 120px;
}
[data-type="acf/timeline"] section.timeline div.container div.timeline-points [data-type="acf/timeline-point"]:nth-of-type(even) .timeline-point {
  text-align: right;
  flex-direction: row-reverse;
}
[data-type="acf/timeline"] section.timeline div.container div.timeline-points [data-type="acf/timeline-point"]:nth-of-type(even) .timeline-point > *:last-child {
  margin: 0 18% 0 0;
}