/* Two scrollbars were .ts-dropdown (app.css max-height:10rem) PLUS
   .ts-dropdown-content (TomSelect max-height:200px). Cap only content. */
.ts-control {
  max-height: none !important;
  overflow: visible !important;
}

.ts-dropdown,
.ts-dropdown.single {
  max-height: none !important;
  overflow: visible !important;
}

.ts-dropdown .ts-dropdown-content,
.ts-dropdown.single .ts-dropdown-content {
  max-height: min(28rem, calc(100vh - 8rem)) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#job-modal.template-dropdown-open .modal-body {
  overflow: hidden !important;
}
