/**
 * KuBeyond — запобігання auto-zoom у mobile Safari / Chrome
 * при focus на полях форм з font-size < 16px.
 * Підключати останнім у <head> (після інших stylesheet / inline <style>).
 */
@media (max-width: 768px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="file"]):not([type="range"]):not([type="color"]),
    textarea,
    select,
    .form-control,
    .settings-form-control,
    .filter-select,
    .country-input,
    #auth-modal .form-group input:not([type="checkbox"]),
    #unified-auth-modal input:not([type="checkbox"]):not([type="radio"]),
    .unified-auth-content input:not([type="checkbox"]):not([type="radio"]),
    .profile-fields input,
    .form-group input:not([type="checkbox"]):not([type="radio"]),
    .form-group textarea,
    .form-group select,
    #chat-input,
    textarea#chat-input,
    #messages #chat-input,
    #messages textarea#chat-input,
    .chat-input-container textarea,
    .chat-input-container input,
    .modal input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
    .modal textarea,
    .modal select,
    .modal-content input:not([type="checkbox"]):not([type="radio"]),
    .modal-content textarea,
    .modal-content select,
    .auth-modal-content input:not([type="checkbox"]):not([type="radio"]),
    .unified-auth-content textarea,
    .unified-auth-content select,
    input[type="search"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    input[type="text"] {
        font-size: 16px !important;
    }
}
