@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.min.css");
.stepBar {
  display: flex;
  max-width: 750px;
  position: relative;
  margin: 20px auto;
  text-align: center;
  color: #777;
}
.stepBar li {
  font-size: 13px;
  list-style: none;
  position: relative;
  width: 33.333%;
}
.stepBar li.herf {
  width: 48.888%;
}
.stepBar li:after {
  background: #d0e1f9;
  content: "";
  width: calc(100% - 26px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 13px);
  top: 10px;
}
.stepBar li:first-child:after {
  display: none;
}
.stepBar li span {
  background: #d0e1f9;
  color: #fff;
  display: inline-block;
  height: 26px;
  margin-bottom: 5px;
  line-height: 26px;
  width: 26px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.stepBar .visited:after {
  background: #4d648d;
}
.stepBar .visited span {
  background: #4d648d;
}
.stepBar .visited {
  color: #333;
}
