.step {
      text-align: center;
      position: relative;
      flex: 1;
    }
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 20px;
      right: -50%;
      width: 100%;
      height: 4px;
      background-color: #dee2e6;
      z-index: 0;
    }
    .step.completed:not(:last-child)::after {
      background-color: #0d6efd;
    }
    .step .circle {
      width: 40px;
      height: 40px;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      background-color: #dee2e6;
      color: white;
      line-height: 40px;
      font-weight: bold;
      z-index: 1;
      position: relative;
    }
    .step.completed .circle {
      background-color: #0d6efd;
    }