/* CSS Document */
.flow {
  margin: 40px auto;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  grid-row-gap: 1.5em;
  position: relative;
}
.flow:before {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 4.25em;
  background-color: #0029C8;
}
.flow__li {
  display: flex;
}
.flow__time {
  min-width: 3em;
  color: #0029C8;
  font-weight: 500;
  flex-shrink: 0;
}
.flow__dot {
  width: 0.5em;
  display: block;
  height: 0.5em;
  border-radius: 50%;
  background-color: #0029C8;
  margin: 0.6em 2em 0 1em;
  flex-shrink: 0;
}

.marker {
  background: linear-gradient(transparent 50%, #FDFF7F 50%);
  font-weight: 500;
}
