{"id":10914,"date":"2025-08-05T13:24:59","date_gmt":"2025-08-05T11:24:59","guid":{"rendered":"https:\/\/www.medaustron.at\/?page_id=10914"},"modified":"2025-08-05T13:24:59","modified_gmt":"2025-08-05T11:24:59","slug":"international-pt-alliance-meeting","status":"publish","type":"page","link":"https:\/\/www.medaustron.at\/en\/international-pt-alliance-meeting\/","title":{"rendered":"International PT Alliance Meeting"},"content":{"rendered":"<section class=\"m06 page-41583\">\n\n    <div class=\"page_banner__thumb\"\n         >\n            <\/div>\n\n\n                        <div class=\"container\">\n                <div class=\"page_banner__bottom\">\n                                                                <div class=\"page_banner__content\">\n                                                            <h1>International Particle Therapy Alliance Meeting<\/h1>\n                                                                                        <p>November 20 &#8211; 21, 2025 \u2022 Vienna, Austria<\/p>\n<p>Program<\/p>\n                                                                                <\/div>\n                                    <\/div>\n            <\/div>\n            <\/section>\n\n<section class=\"m31 page-14037\">\n    <div class=\"container\">\n        <div class=\"row\">\n            <div class=\"m31-form-wrapper\">\n                                <div class=\"column-12\">\n                    <h2 class=\"m31-title\">Registration<\/h2>\n                <\/div>\n                                <div class=\"column-6 column-tab-12 column-mob-12 m31-left\">\n                                        <p>In order to ensure smooth communication and organization both before and during the event, we ask you to provide us with some information:<\/p>\n                                        <!-- <a href=\"#\" class=\"m31-button m31-button--outlined\">Add to calendar<\/a> -->\n                <\/div>\n                <div class=\"column-6 column-tab-12 column-mob-12 m31-right\">\n                    <script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework form-with-labels_wrapper' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_27' style='display:none'><div id='gf_27' class='gform_anchor' tabindex='-1'><\/div>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_27' id='gform_27' class='form-with-labels' action='\/en\/wp-json\/wp\/v2\/pages\/10914#gf_27' data-formid='27' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_27' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_27_13\" class=\"gfield gfield--type-select gfield--input-type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_13'>Gender<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_13' id='input_27_13' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Female' >Female<\/option><option value='Male' >Male<\/option><option value='N\/A' >N\/A<\/option><\/select><\/div><\/div><div id=\"field_27_1\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_1'>Surname<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_27_1' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_27_2\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_2'>First Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_27_2' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_27_3\" class=\"gfield gfield--type-text gfield--input-type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_3'>Title<\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_27_3' type='text' value='' class='medium'      aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_27_4\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_4'>Institution \/ Company<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_27_4' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_27_5\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_5'>Position<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_5' id='input_27_5' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_27_7\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_7'>E-Mail<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_7' id='input_27_7' type='email' value='' class='medium'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_27_16\" class=\"gfield gfield--type-phone gfield--input-type-phone field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_16'>Phone<\/label><div class='ginput_container ginput_container_phone'><input name='input_16' id='input_27_16' type='tel' value='' class='medium'  placeholder='+43 2622 26100'  aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_27_29\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Evening Reception<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_27_29'>\n\t\t\t<div class='gchoice gchoice_27_29_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_29' type='radio' value='Yes, I would like to participate'  id='choice_27_29_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_29_0' id='label_27_29_0' class='gform-field-label gform-field-label--type-inline'>Yes, I would like to participate<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_27_29_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_29' type='radio' value='No, I do not want to participate'  id='choice_27_29_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_29_1' id='label_27_29_1' class='gform-field-label gform-field-label--type-inline'>No, I do not want to participate<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_27_25\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label' >Dietary Restrictions<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_27_25'>\n\t\t\t<div class='gchoice gchoice_27_25_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='None'  id='choice_27_25_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_25_0' id='label_27_25_0' class='gform-field-label gform-field-label--type-inline'>None<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_27_25_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Vegetarian'  id='choice_27_25_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_25_1' id='label_27_25_1' class='gform-field-label gform-field-label--type-inline'>Vegetarian<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_27_25_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Vegan'  id='choice_27_25_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_25_2' id='label_27_25_2' class='gform-field-label gform-field-label--type-inline'>Vegan<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_27_25_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_25' type='radio' value='Other (please specify below)'  id='choice_27_25_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_27_25_3' id='label_27_25_3' class='gform-field-label gform-field-label--type-inline'>Other (please specify below)<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_27_26\" class=\"gfield gfield--type-text gfield--input-type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_27_26'>Other dietary restrictions:<\/label><div class='ginput_container ginput_container_text'><input name='input_26' id='input_27_26' type='text' value='' class='medium'      aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_27_9\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Consent<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_9.1' id='input_27_9_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_27_9_1' >I consent to the processing of my data in connection with seminar administration and communication.<\/label><input type='hidden' name='input_9.2' value='I consent to the processing of my data in connection with seminar administration and communication.' class='gform_hidden' \/><input type='hidden' name='input_9.3' value='22' class='gform_hidden' \/><\/div><\/fieldset><div id=\"field_27_10\" class=\"gfield gfield--type-html gfield--input-type-html gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><script>\n$(document).on(\"gform_confirmation_loaded\", function (e, form_id) {\n  console.log('form submitted');\n});\n\njQuery(document).bind(\"gform_confirmation_loaded\", function (e, form_id) {\nconsole.log('2nd form');\n});\nconsole.log('form js');\n<\/script><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> \t<span class='m31-alert' style='display:none;'><\/span>\n\t<span class=\"m31-button-reset\">\n\t\t<img decoding=\"async\" src=\"https:\/\/www.medaustron.at\/wp-content\/themes\/medaustron\/images\/icon-refresh.svg\" alt=\"\">\n\t<\/span>\t\n\t<button class='button gform_button' id='gform_submit_button_27'><span>Send<\/span><\/button> <input type='hidden' name='gform_ajax' value='form_id=27&amp;title=&amp;description=&amp;tabindex=0&amp;theme=gravity-theme&amp;styles=[]&amp;hash=a1e60c23e822fe507ea64b1a5066350a' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_27' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_27' id='gform_theme_27' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_27' id='gform_style_settings_27' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_27' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='27' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_27' value='WyJ7XCIyOVwiOltcImE3N2JkMjlkOThiZmZlODcwNTJkMzY1ZjdjNDcwN2IyXCIsXCJjMGQzNWVmMGJlNTVlM2VlN2E5NmFkYmU2NmM5Mjg0N1wiXSxcIjkuMVwiOlwiYjc0ZGZhMjNkYzcwNjRlNzQ3MThmMTJjNWJlODU3M2VcIixcIjkuMlwiOlwiNWUyYjA3NjIyNjdjNDEwMzFkYTA4ZTU3MjNlZTFiOGRcIixcIjkuM1wiOlwiOTRhZTZkYzdhYjFiZTU1NjgzNWIxMmIxZjRlMDQwMTVcIn0iLCI1N2E1MWU0NjQ1NjE5YjYyZWZmZmRlMDhjNTE0ZjkxMiJd' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_27' id='gform_target_page_number_27' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_27' id='gform_source_page_number_27' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='event_id=10914' \/>\n            \n        <\/div>\n                        <\/form>\t<script>\n\t\tconsole.log(window.gravity_form_loaded_gform_27)\n\t\tconsole.log('window.gravity_form_loaded_gform_27')\n\t\tif (window.gravity_form_loaded_gform_27) {\n\t\t\twindow.gravity_form_loaded_gform_27();\n\t\t}\n\t\twindow.top.jQuery('#gform_wrapper_27 .m31-button-reset').on('click', function () {\n\t\t\twindow.top.jQuery('#gform_wrapper_27 .ginput_container_text input').val('');\n\t\t\twindow.top.jQuery('#gform_wrapper_27 textarea').val('');\n\t\t\twindow.top.jQuery('#gform_wrapper_27 [type=\"radio\"]').prop('checked', false)\n\t\t\twindow.top.jQuery('#gform_wrapper_27 select').each(function (){\n\t\t\t\twindow.top.jQuery(this).val(window.top.jQuery(this).find('option').first().attr('value'));\n\t\t\t})\n\t\t\twindow.top.jQuery('#gform_wrapper_27 .gform_delete').each(function (){\n\t\t\t\teval(window.top.jQuery(this).attr('onkeypress'));\n\t\t\t})\n\t\t})\n\t<\/script>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_27' id='gform_ajax_frame_27' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 27, 'https:\/\/www.medaustron.at\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_27').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_27');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_27').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_27').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_27').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_27').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_27').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_27').val();gformInitSpinner( 27, 'https:\/\/www.medaustron.at\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [27, current_page]);window['gf_submitting_27'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_27').append(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_27').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [27]);window['gf_submitting_27'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_27').text());}else{jQuery('#gform_27').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"27\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_27\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_27\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_27\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 27, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"","protected":false},"author":5,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-10914","page","type-page","status-publish","hentry"],"acf":[],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"gform-image-choice-sm":false,"gform-image-choice-md":false,"gform-image-choice-lg":false},"uagb_author_info":{"display_name":"petra.wurzer@medaustron.at","author_link":"https:\/\/www.medaustron.at\/en\/author\/petra-wurzermedaustron-at\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/10914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/comments?post=10914"}],"version-history":[{"count":4,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/10914\/revisions"}],"predecessor-version":[{"id":12033,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/10914\/revisions\/12033"}],"wp:attachment":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/media?parent=10914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}