.demo__actions {
  display: flex;
  justify-content: flex-end;

  .btn {
    font-weight: 600;
  }

  > *:not(:last-child) {
    margin-right: .5rem;
  }
}

.demo__times {
  flex: 1 1 auto;
  margin-right: 1rem;
}

.demo__time-total {
  font-size: .8rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.demo__time-splits {
  border-radius: 0;
  height: .4rem;
  display: flex;
}

.demo__time-split {
  height: 100%;
}

.demo__time-split--tokenization {
  background: $color-accent;
}

.demo__time-split--processing {
  background: darken($color-accent, 10%);
}

.demo__time-split--formatting {
  background: darken($color-accent, 20%);
}

.demo__languages {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: -.5rem;
  margin-right: -.5rem;

  li {
    list-style: none;
    margin-right: .5rem;
    margin-bottom: .5rem;
  }
}