.ot-progressbar {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  counter-reset: step;
}
.ot-progressbar .step {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 10px;
  color: #bbb;
}
.ot-progressbar .step.active {
  color: #2c7be5;
  font-weight: bold;
}
.ot-progressbar .step::before {
  counter-increment: step;
  content: counter(step);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #bbb;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
}
.ot-progressbar .step.active::before {
  border-color: #2c7be5;
  background: #2c7be5;
  color: #fff;
}
.ot-progressbar .step::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bbb;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.ot-progressbar .step:first-child::after {
  content: none;
}
.ot-progressbar .step.active::after {
  background: #2c7be5;
}
.ot-progressbar .step .date {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
