.nut-theme-dark {
  .nut-pagination {
    &-prev,
    &-item,
    &-next {
      background: $dark-background;
      border-color: $dark-color-gray;
    }
    &-simple {
      background: $dark-background;
    }
    .simple-border {
      border-color: $dark-color-gray;
    }
    .disabled {
      background: $dark-background;
    }
  }
}
.nut-pagination {
  display: flex;
  font-size: $pagination-font-size;
  color: $pagination-color;
  &-contain {
    display: flex;
  }
  &-simple {
    height: 39px;
    width: 124px;
    line-height: 39px;
    text-align: center;
  }
  &-prev,
  &-item,
  &-next {
    height: 39px;
    min-width: 39px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: $white;
    border-radius: $pagination-item-border-radius;
    border: $pagination-item-border-width solid $pagination-item-border-color;
    cursor: pointer;
  }
  &-prev,
  &-item {
    border-right: none;
  }
  &-prev,
  &-next {
    padding: $pagination-prev-next-padding;
  }
  .simple-border {
    border-right: $pagination-item-border-width solid $pagination-item-border-color;
  }
  .active {
    color: $white;
    border: none;
    background: $pagination-active-background-color;
  }
  .disabled {
    color: $pagination-disable-color;
    background-color: $pagination-disable-background-color;
    cursor: not-allowed;
  }
}
