.materials-grid-paginator {
  display: flex;
  justify-content: center;
  align-items: center;
  // overflow: hidden;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #f0f0f0;
  //border-top: none;
  padding: 0 20px;
  margin: 0 !important;

  .pisell-lowcode-pagination-total-text {
    margin-right: auto;
    color: var(--gray-500, #667085);
    /* Text sm/Medium */
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    /* 142.857% */
  }

  .pisell-lowcode-pagination-item {
    position: relative;
    margin: 0;
    border-radius: 0;
    border: 1px solid #D0D5DD;
    border-right: 0;
  }

  .pisell-lowcode-pagination-jump-prev {
    border: 1px solid #D0D5DD;
    margin: 0;
    border-radius: 0;
    border-right: none;
    height: 100%;
  }

  .pisell-lowcode-pagination-jump-next {
    border: 1px solid #D0D5DD;
    margin: 0;
    border-radius: 0;
    border-right: none;
  }

  .pisell-lowcode-pagination-item-link {
    width: 100%;

    &:hover {
      font-weight: 450 !important;
      color: rgba(0, 0, 0, 0.88) !important;

      .pisell-lowcode-pagination-item-link-icon {
        font-weight: 450 !important;
        color: rgba(0, 0, 0, 0.88) !important;
      }
    }
  }


  .pisell-lowcode-pagination-disabled {
    cursor: not-allowed;
    color: rgba(0, 0, 0, .25);

    .paginator-page-btn {
      cursor: not-allowed;
      color: rgba(0, 0, 0, .25);
    }
  }

  .pisell-lowcode-pagination-item-active:hover {
    border-color: #D0D5DD !important;
  }

  .pisell-lowcode-pagination-item-active {
    a {
      font-weight: 450 !important;
      color: rgba(0, 0, 0, 0.88) !important;

    }

    background-color: rgba(0, 0, 0, 0.06);
  }

  .pisell-lowcode-pagination-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    border: 1px solid #D0D5DD;
    margin: 0;
    border-radius: 8px 0 0 8px;
    border-right: none;
  }


  .pisell-lowcode-pagination-next {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    border: 1px solid #D0D5DD;
    // border-left: none;
    margin: 0;
    border-radius: 0 8px 8px 0;
  }
}

.paginator-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 4px 4px 4px;
  transition: 0.2s;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-700, #344054);
  cursor: pointer;
  user-select: none;
  padding: 10px 16px;

  .paginator-page-btn-text {
    font-weight: 600;
  }

  .paginator-page-btn-left-icon,
  .paginator-page-btn-right-icon {
    font-size: 20px;
  }

  .paginator-page-btn-left-icon {
    margin-right: 8px;
  }

  .paginator-page-btn-right-icon {
    margin-left: 8px;
  }

  &:hover {
    // background: #f2f2f2;
  }

  &.left {
    margin-right: auto;

    .icon {
      font-size: 18px;
      margin-right: 8px;
    }
  }

  &.right {
    margin-left: auto;

    .icon {
      font-size: 18px;
      margin-left: 8px;
      transform: rotate(180deg);
    }
  }
}

.materials-grid-paginator-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  border: 1px solid #f0f0f0;
  border-top: none;
  padding: 0 20px;
  margin: 0 !important;

  .paginator-page-btn {
    padding: 8px;

  }

  .materials-grid-paginator-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    .materials-grid-paginator-center-text {
      color: var(--gray-700, #344054);
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
    }

    .materials-grid-paginator-center-value {
      color: var(--gray-700, #344054);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
    }
  }

  .pisell-lowcode-pagination-prev,
  .pisell-lowcode-pagination-next {
    margin: 0;
    border-radius: 8px;
    border: 1px solid #D0D5DD;

    .paginator-page-btn-left-icon {
      margin-right: 0;
    }

    .paginator-page-btn-right-icon {
      margin-left: 0;
    }

  }

}