/* Prevent iOS browsers from zooming the page when a small form control receives focus. */
@media (max-width: 768px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="hidden"]),
    textarea,
    select,
    [contenteditable="true"] {
        font-size: 16px !important;
    }
}
