.timeList {
  width: 100%;
  margin: auto;
}

.timeList > div {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  color: #ccc;
}

.timeList > div:not(:last-child)::before {
  content : '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 6rem;
  left: 3rem;
  border-left: 5px solid;
  z-index: -1;
}

.timeList .timelineIcon {
  width: 6rem;
  height: 6rem;
  position: relative;
  top: calc(27pt - 1.5rem); /*height of time 10pt height of margin 5pt half hight of h3 12 pt minus height of icon 30px*/
  text-align: center;
  font-size: 3rem;
  color: white;
  border-radius: 50%;
  background-color: #ccc;
}

.timeList .timelineIcon i {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}

.timelineDone {
  padding: 3rem 0;
}

.timeList > div:not(.timelineDone) .timelineText {
   top: 10pt; /*line height of time */
}

.timeList .timelineDone {
   color: inherit;
}

.timeList .timelineDone .timelineIcon {
  background-color: var(--c2);
}

.timeList .timelineText {
  width: 74%;
  position: relative;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  line-height: 2rem;
}

.timeList .timelineText h3{
  margin: 5pt 0;
  border-left: 5px solid;
  padding-left: 10px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  line-height: 3rem;
}

.timeList .timelineTime {
  font-size: 10pt;
  line-height: 10pt;
  font-style: italic;
}
