.timeline-step {
    display: none;
  }

  .timeline-step.active {
    display: block;
  }

  .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
  }

  .timeline-item {
    padding: 10px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .timeline-item:last-child::before {
    display: none;
  }

  .timeline-item.active .timeline-badge {
    background: #000000;
    color: #fff;
  }

  .timeline-badge {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: white;
    color: #000;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 20px;
    margin-left: 10px;
    flex-shrink: 0;
  }

  .timeline-content {
    margin-right: 60px;
    color: white;
  }

  .timeline-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .text-white-placeholder::placeholder {
    color: white !important;
  }