/* Desktop Stepper */
.stepper {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dee2e6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  position: relative;
}
.step .label {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Connectors */
.step::after {
  content: "";
  position: absolute;
  top: 20px; /* middle of circle */
  left: 50%;
  height: 4px;
  width: 100%;
  background: #dee2e6;
  z-index: 1;
}
.step:last-child::after {
  content: none;
}

/* Colors */
.step.active .circle {
  background: #0d6efd;
  color: #fff;
}
.step.completed .circle {
  background: #0d6efd;
  color: #fff;
}
.step.completed::after {
  background: #0d6efd;
}