/* Directory filter menus keep every rendered option reachable by mouse and touch. */
.filter-country-options {
  max-height: min(360px, calc(100vh - 260px)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .filter-country-options {
    max-height: min(42vh, 320px) !important;
  }
}
