.pagination {

  > .action {
    display: inline-block;
    padding: 2px 10px;
    color: $brand-white;
    font-size: $font-size-small;
    background: $brand-gray;
    border: 0;
    border-radius: $border-radius-base;
    outline: none; /* remove native outline */
    cursor: pointer;
    min-width: 80px;
    text-decoration: none;
  }

  > .action:hover {
    background: $brand-black;
  }

  > .action:first-child {
    margin-right: 10px;
  }

  > .action:last-child {
    margin-left: 10px;
  }

  > .action:disabled,
  > .action:disabled:hover,
  > .action.-disabled,
  > .action.-disabled:hover {
    background: $brand-gray-lt;
    cursor: not-allowed;
  }

  > .pages {
    display: inline-block;
  }

  > .pages > .page {
    display: inline-block;
    min-width: 20px;
    padding: 2px 8px;
    color: $brand-gray;
    font-size: $font-size-small;
    background: transparent;
    border: 1px solid $brand-gray;
    border-radius: $border-radius-base;
    outline: none; /* remove native outline */
    cursor: pointer;
    transition: 0.15s background;
    text-decoration: none;
  }

  > .pages > .page:hover,
  > .pages > .page.-active, {
    color: $brand-white;
    background: $brand-black;
    border-color: transparent;
  }

  > .pages > .page.-active:hover {
    cursor: default;
  }

  > .pages > .page:not(:last-child) {
    margin-right: 5px;
  }

  // > .pages > .pageellipsis {

  // }
}
