/* ==========================================================================
 * Timeline
 * ========================================================================== */

.mds-c-timeline {
  display: flex;
  width: 100%;
}

.mds-c-timeline__event {
  flex: 1;
  min-width: 0;
  position: relative;
  text-align: center;

  &::after {
    background-color: var(--mds-t-background-color--tertiary);
    border-radius: 50%;
    bottom: 0;
    content: '';
    display: block;
    height: 0.75rem;
    margin: auto;
    position: absolute;
    right: 50%;
    top: 0;
    transform: translateX(50%);
    width: 0.75rem;

    .mds-is-active& {
      background-color: var(--mds-d-color-brand--primary);
      z-index: 1;
    }

    .mds-is-declined& {
      background-color: var(--mds-t-color--red);
      z-index: 1;
    }
  }
}

.mds-c-timeline__event-label {
  @mixin mds-m-label--size-sm;
  @mixin mds-m-text-overflow-ellipsis;

  display: block;
  margin-bottom: var(--mds-d-spacing--xl);
}

.mds-c-timeline__event-date {
  @mixin mds-m-text--size-sm;
  @mixin mds-m-text-overflow-ellipsis;

  color: var(--mds-t-text-color--secondary);
  display: block;
}

.mds-c-timeline__event-progress {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
