.page-wrapper {
  .pagination {
    display: flex;
    justify-content: center;

    &__item {
      border-radius: 4px;
      min-width: 24px;
      height: 24px;
      padding: 0 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;

      &.active {
        background: var(--Main2);

        .pagination__link {
          color: #fff;
        }
      }
    }

    &__link {
      color: initial;
      font-size: 16px;
      line-height: 1;
    }

    &__wrapper{
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 8px;

      .inputbox{
        width: auto;
      }

      .ng-select{
        .ng-select-container{
            min-height: 40px !important;
        }

        .ng-arrow-wrapper{
            min-height: 38px;
        }
      } 
    }
  }
}