  .lead-tracker {
      display: flex;
      font-family: system-ui, sans-serif;
  }

  .step {
      position: relative;
      padding: 9px 40px 11px 30px;
      background: #ced4da;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      margin-right: -18px;
      /* overlap */
      clip-path: polygon(0 0,
              calc(100% - 20px) 0,
              100% 50%,
              calc(100% - 20px) 100%,
              0 100%,
              20px 50%);
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .step:last-child {
      margin-right: 0;
  }

  /* States */
  .step-done {
      background: #198754;
  }

  .step-active {
      background: #198754;
  }

  .step-disabled {
      background: #808b97;
  }