.selected-categories-items,
.selected-stored-exam-items {
  counter-reset: counter;

  li {
    counter-increment: counter;

    &::before {
      content: counter(counter);
      position: absolute;
      top: -0.5rem;
      background-color: $info;
      color: $white;
      padding: 0.35em 0.65em;
      font-size: 0.75em;
      line-height: 0.75em;
      font-weight: 700;
      border-radius: 0.37rem;
    }
  }
}

.selected-categories-items {
  li {
    &::before {
      left: -1.5rem;
    }
  }
}

.selected-stored-exam-items {
  li {
    &::before {
      left: -0.75rem;
    }
  }
}
