.stepper {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #0d6efd; /* default */
  z-index: 0;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-label {
  font-weight: 500;
}

.step.completed .step-circle,
.step.completed::after {
  background: #198754;
}

.step.completed .step-label {
  color: #198754;
}

.step.active .step-circle {
  background: #0d6efd;
}

.step.active .step-label {
  color: #0d6efd;
}

.step:not(.completed):not(.active) .step-circle,
.step:not(.completed):not(.active)::after {
  background: #808a97;
}

.step:not(.completed):not(.active) .step-label {
  color: #808a97;
}

/* <div class="stepper">
  <div class="step completed">
    <div class="step-circle">1</div>
    <div class="step-label">Step One</div>
  </div>
  <div class="step active">
    <div class="step-circle">2</div>
    <div class="step-label">Step Two</div>
  </div>
  <div class="step">
    <div class="step-circle">3</div>
    <div class="step-label">Step Three</div>
  </div>
</div> */
