@charset "UTF-8";
.step-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
}
.step {
  text-align: center;
  flex: 1;
}
.circle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background-color: #ccc;
  color: white;
  font-weight: bold;
}
.step.active .circle {
  background-color: #0EA792;
}
.step span {
  display: block;
  font-weight: 500;
  font-size: .7rem;
}
