/*
 * The application form opens in a Drupal dialog and Chosen transforms its
 * level select. Keep the option list scrollable instead of clipping it.
 */
.ui-dialog .course-form-wrapper .chosen-container .chosen-drop {
  overflow: visible !important;
}

.ui-dialog .course-form-wrapper .chosen-container .chosen-results {
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.ui-dialog .form-submit.is-disabled,
.ui-dialog .form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 575.98px) {
  .ui-dialog .course-form-wrapper .chosen-container .chosen-drop {
    position: absolute !important;
    max-height: min(42dvh, 280px) !important;
  }

  .ui-dialog .course-form-wrapper .chosen-container .chosen-results {
    max-height: min(32dvh, 220px) !important;
  }
}
