/**
 * iOS Safari zooms the page when focusing inputs with font-size below 16px.
 * Apply a minimum 16px font size on touch/mobile viewports for all form controls.
 */
@media screen and (max-width: 991.98px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]):not([type="file"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="image"]),
  select,
  textarea,
  .form-control,
  .jb-apply-input,
  .jb-apply-textarea,
  .jb-apply-select,
  .select2-container .select2-search__field,
  .select2-container--bootstrap .select2-selection--single .select2-selection__rendered,
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px !important;
  }

  /* TinyMCE source textarea before init */
  .jw-about-editor-wrap textarea.form-control,
  textarea[id="jw_about_summary"],
  textarea[id="jw_ep_company_description"],
  textarea#description {
    font-size: 16px !important;
  }
}
