.steps {
  margin-top: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #929292;
  height: 4rem;
}
.steps > .step {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 0.875rem;
  color: #6D6875;
}
.steps > .step:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  color: #e6e6e6;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 1.9rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1rem;
  cursor: attr(data-mouse);
}
.steps > .step:after {
  content: '';
  position: absolute;
  display: block;
  background: #e6e6e6;
  width: 100%;
  height: 0.125rem;
  top: 1rem;
  left: 50%;
}
.steps > .step:last-child:after {
  display: none;
}
.steps > .step.is-complete {
  color: #6D6875;
}
.steps > .step.is-complete:before {
  content: '\2713';
  color: white;
  background: #4B78A5;
  border: 2px solid #4B78A5;
}
.steps > .step.is-complete:after {
  background: #4B78A5;
}
.steps > .step.is-active {
  color: #4B78A5;
}
.steps > .step.is-active:before {
  color: #FFF;
  border: 2px solid #4B78A5;
  background: #4B78A5;
}

.steps > .stepUpdate {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 0.875rem;
  color: #6D6875;
}
.steps > .stepUpdate:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  color: #e6e6e6;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 1.9rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.steps > .stepUpdate:after {
  content: '';
  position: absolute;
  display: block;
  background: #e6e6e6;
  width: 100%;
  height: 0.125rem;
  top: 1rem;
  left: 50%;
}
.steps > .stepUpdate:last-child:after {
  display: none;
}
.steps > .stepUpdate.is-complete {
  color: #6D6875;
}
.steps > .stepUpdate.is-complete:before {
  content: '\2713';
  color: white;
  background: #4B78A5;
  border: 2px solid #4B78A5;
}
.steps > .stepUpdate.is-complete:after {
  background: #4B78A5;
}
.steps > .stepUpdate.is-active {
  color: #4B78A5;
}
.steps > .stepUpdate.is-active:before {
  color: #FFF;
  border: 2px solid #4B78A5;
  background: #4B78A5;
}
