/* Administration > User Access Control: fixed viewport with an always-visible internal scrollbar. */
.admin-wrap .admin-grid > .panel.admin-panel:first-child{
  display:flex !important;
  flex-direction:column !important;
  height:min(620px, calc(100vh - 190px)) !important;
  max-height:min(620px, calc(100vh - 190px)) !important;
  min-height:420px !important;
  overflow:hidden !important;
}

.admin-wrap .admin-grid > .panel.admin-panel:first-child > .panel-head,
.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-toolbar{
  flex:0 0 auto !important;
}

.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-toolbar{
  position:relative;
  z-index:2;
  background:#fff;
}

.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-users{
  display:block !important;
  flex:1 1 0 !important;
  height:0 !important;
  min-height:0 !important;
  max-height:none !important;
  overflow-y:scroll !important;
  overflow-x:hidden !important;
  overscroll-behavior:contain;
  scrollbar-gutter:stable both-edges;
  padding-right:5px;
}

.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-users::-webkit-scrollbar{width:10px !important;display:block !important}
.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-users::-webkit-scrollbar-track{background:#edf5ea;border-radius:10px}
.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-users::-webkit-scrollbar-thumb{background:#70c94f;border-radius:10px;border:2px solid #edf5ea}
.admin-wrap .admin-grid > .panel.admin-panel:first-child > .admin-users::-webkit-scrollbar-thumb:hover{background:#4fbe32}

@media(max-width:900px){
  .admin-wrap .admin-grid > .panel.admin-panel:first-child{
    height:min(560px, calc(100vh - 150px)) !important;
    max-height:min(560px, calc(100vh - 150px)) !important;
    min-height:360px !important;
  }
}
