.pagination {
  user-select: none;
  display: flex;
  justify-content: flex-end;

  .fa {
    font-size: 1.6rem;
  }

  li {
    @extend %truncate;
    display: flex;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0.2rem;
    border: 1px solid colors('base200');
    border-radius: 0.4rem;
    padding: 0.4rem;
    align-items: center;
    justify-content: center;
    font-size: inherit;
    line-height: 1;
    cursor: pointer;
    user-select: none;

    &.page {
      &.active {
        border-color: colors('accent500');
        color: colors('white');
        background-color: colors('accent500');
      }
    }

    &.unactive {
      opacity: 0.4;
      pointer-events: none;
    }
  }
}
