div.step-bar div.step-bar-line {
  height: 2px;
  background: gray;
  position: relative;
  top: 1.35em;
  margin-left: 5em;
  margin-right: 5em;
}

div.step-bar ul.steps {
  display: initial;
  background-color: transparent;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

div.step-bar ul.steps li.step {
  width: 10em;
  display: inline-block;
  padding-top: 45px;
  font-size: 1em;
  line-height: 1.1em;
  color: white;
  vertical-align: top;
  position: relative;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.step-bar ul.steps li.step:before {
  content: ' ';
  position: absolute;
  top: 0px;
  left: calc(50% - 1.25em);
  z-index: 1;
  width: 2.5em;
  height: 2.5em;
  color: white;
  border: 2px solid white;
  border-radius: 1.25em;
  line-height: 1em;
  background: gray;
}

div.step-bar ul.steps li.step.enabled {
  color: mediumseagreen;
}

div.step-bar ul.steps li.step.enabled:before {
  background: mediumseagreen;
}

div.step-bar ul.steps li.step a {
  color: inherit;
  text-decoration: none;
}

