.ls-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  &__page {
    background-color: transparent;

    &:hover {
      color: $color-primary;
    }

    &--current {
      color: $color-white;
      background-color: $color-primary;

      &:hover {
        color: $color-white;
        cursor: default;
      }
    }
  }

  &__arrow {
    background-color: transparent;

    &:hover {
      color: $color-primary;
    }

    &--next {
      margin-left: $sp-xs;
    }

    &--previous {
      margin-right: $sp-xs;
    }
  }

  &__jumper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  &__jumper-item {
    padding: 0 $sp-xs;
  }
}
