{"id":1085,"date":"2021-03-31T11:28:17","date_gmt":"2021-03-31T11:28:17","guid":{"rendered":"https:\/\/studioproud.com\/dog-food\/"},"modified":"2021-08-17T07:28:20","modified_gmt":"2021-08-17T07:28:20","slug":"dog-food","status":"publish","type":"page","link":"https:\/\/www.studioproud.com\/en\/dog-food\/","title":{"rendered":"Do the test"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column]<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 gform_legacy_markup_wrapper gform-theme--no-framework studioproud_questionnaire_from_wrapper' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_4' style='display:none'><div id='gf_4' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_4' id='gform_4' class='studioproud_questionnaire_from' action='\/en\/wp-json\/wp\/v2\/pages\/1085#gf_4' data-formid='4' novalidate>\n        <div id='gf_progressbar_wrapper_4' class='gf_progressbar_wrapper' data-start-at-zero=''>\n        \t<h3 class=\"gf_progressbar_title\">Step <span class='gf_step_current_page'>1<\/span> of <span class='gf_step_page_count'>9<\/span><span class='gf_step_page_name'><\/span>\n        \t<\/h3>\n            <div class='gf_progressbar gf_progressbar_custom' aria-hidden='true'>\n                <div class='gf_progressbar_percentage percentbar_custom percentbar_11' style='width:11%; color:#ffffff; background-color:#7acaac;'><span>11%<\/span><\/div>\n            <\/div><\/div>\n                        <div class='gform-body gform_body'><div id='gform_page_4_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><ul id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_69\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_69'>URL<\/label><div class='ginput_container'><input name='input_69' id='input_4_69' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_4_69'>This field is for validation purposes and should be left unchanged.<\/div><\/li><li id=\"field_4_5\" class=\"gfield gfield--type-html first_step_img gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><img decoding=\"async\"  src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/07\/Asset-2-english.png\"\/><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <input type='button' id='gform_next_button_4_2' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Find the right chunk'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_2' class='gform_page' data-js='page-field-id-2' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_6\" class=\"gfield gfield--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\"  ><h3>Nice to meet you!<\/h3>\nAnswer a few questions about your dog so we can put together the perfect food.\n<\/br><\/br><\/li><li id=\"field_4_15\" class=\"gfield gfield--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_4_15'>Name of your four-legged friend<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_15' id='input_4_15' type='text' value='' class='medium'    placeholder='Naam van jouw viervoeter' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_16\" class=\"gfield gfield--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_4_16'>Breed<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_4_16' type='text' value='' class='medium'    placeholder='Breed of your dog' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_18' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_18' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Continue'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_3' class='gform_page' data-js='page-field-id-18' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_20\" class=\"gfield gfield--type-radio gfield--type-choice age_3_column gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >How old is your dog?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_20'>\n\t\t\t<li class='gchoice gchoice_4_20_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_20' type='radio' value='puppy'  id='choice_4_20_0'    \/>\n\t\t\t\t<label  for='choice_4_20_0' id='label_4_20_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/puppy.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/puppy.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/puppy.png\" \/><\/span><span class=\"image-choices-choice-text\">Puppy<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_20_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_20' type='radio' value='volwassen'  id='choice_4_20_1'    \/>\n\t\t\t\t<label  for='choice_4_20_1' id='label_4_20_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Volwassen.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Volwassen.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Volwassen.png\" \/><\/span><span class=\"image-choices-choice-text\">Grown up<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_20_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_20' type='radio' value='senior'  id='choice_4_20_2'    \/>\n\t\t\t\t<label  for='choice_4_20_2' id='label_4_20_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Senior.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Senior.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Senior.png\" \/><\/span><span class=\"image-choices-choice-text\">Senior<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_50\" class=\"gfield gfield--type-date gfield--input-type-datepicker gfield--datepicker-default-icon field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_50'>What is his\/her date of birth?<\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_50' id='input_4_50' type='text' value='' class='datepicker gform-datepicker mdy datepicker_with_icon gdatepicker_with_icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_4_50_date_format\" aria-invalid=\"false\" \/>\n                            <span id='input_4_50_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_4_50' class='gform_hidden' value='https:\/\/www.studioproud.com\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_21' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_21' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Continue'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_4' class='gform_page' data-js='page-field-id-21' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_51\" class=\"gfield gfield--type-number 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_4_51'>What is your dog&#039;s weight?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_51' id='input_4_51' type='number' step='any'   value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"  \/><\/div><\/li><li id=\"field_4_38\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >How is your dog&#039;s build?<\/label><div class='gfield_description' id='gfield_description_4_38'>Choose the picture that best suits your dog<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_38'>\n\t\t\t<li class='gchoice gchoice_4_38_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_38' type='radio' value='te-mager'  id='choice_4_38_0'    \/>\n\t\t\t\t<label  for='choice_4_38_0' id='label_4_38_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-12@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-12@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-12@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bmay gain some weight <span>Too skinny<\/span><\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_38_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_38' type='radio' value='ideaal'  id='choice_4_38_1'    \/>\n\t\t\t\t<label  for='choice_4_38_1' id='label_4_38_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-13@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-13@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-13@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bis the perfect weight <span>Ideal<\/span><\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_38_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_38' type='radio' value='te-zwaar'  id='choice_4_38_2'    \/>\n\t\t\t\t<label  for='choice_4_38_2' id='label_4_38_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-15@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-15@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-15@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bcan lose some weight <span>Too heavy<\/span><\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_29' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_29' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_5' class='gform_page' data-js='page-field-id-29' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_5' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_44\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >How active is your dog?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_44'>\n\t\t\t<li class='gchoice gchoice_4_44_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_44' type='radio' value='mijn-hond-mocht-echt-meer-bewegen'  id='choice_4_44_0'    \/>\n\t\t\t\t<label  for='choice_4_44_0' id='label_4_44_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-16@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-16@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-16@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bcould really move more. (now moves less than 30 minutes a day)<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_44_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_44' type='radio' value='een-beetje-meer-beweging-zou-goed-zijn'  id='choice_4_44_1'    \/>\n\t\t\t\t<label  for='choice_4_44_1' id='label_4_44_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-17@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-17@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-17@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">A little more exercise would be good. (now moves 30 - 60 minutes a day)<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_44_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_44' type='radio' value='mijn-hond-is-vrij-actief'  id='choice_4_44_2'    \/>\n\t\t\t\t<label  for='choice_4_44_2' id='label_4_44_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-18@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-18@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-18@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bis quite active. (walks daily for at least 1 - 2 hours without a line)<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_44_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_44' type='radio' value='mijn-hond-is-zeer-actief'  id='choice_4_44_3'    \/>\n\t\t\t\t<label  for='choice_4_44_3' id='label_4_44_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-19@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-19@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-19@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">My dog \u200b\u200bis very active. (runs more than 2 hours daily without a line)<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_32' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_32' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_6' class='gform_page' data-js='page-field-id-32' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_66\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >If you do not have a specific preference, we recommend that you choose &#039;no preference&#039; on the next question so that we can recommend the best kibble that suits your dog. If you do have a preference, you can indicate it below:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_66'>\n\t\t\t<li class='gchoice gchoice_4_66_0'>\n\t\t\t\t<input name='input_66' type='radio' value='geen-voorkeur'  id='choice_4_66_0'    \/>\n\t\t\t\t<label for='choice_4_66_0' id='label_4_66_0' class='gform-field-label gform-field-label--type-inline'>No preference<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_66_1'>\n\t\t\t\t<input name='input_66' type='radio' value='geperst'  id='choice_4_66_1'    \/>\n\t\t\t\t<label for='choice_4_66_1' id='label_4_66_1' class='gform-field-label gform-field-label--type-inline'>Pressed<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_66_2'>\n\t\t\t\t<input name='input_66' type='radio' value='krokant'  id='choice_4_66_2'    \/>\n\t\t\t\t<label for='choice_4_66_2' id='label_4_66_2' class='gform-field-label gform-field-label--type-inline'>crispy<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_67\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >If you do not have a specific preference, we recommend that you choose &#039;no preference&#039; on the next question so that we can recommend the best kibble that suits your dog. If you do have a preference, you can indicate it below:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_67'>\n\t\t\t<li class='gchoice gchoice_4_67_0'>\n\t\t\t\t<input name='input_67' type='radio' value='geen-voorkeur'  id='choice_4_67_0'    \/>\n\t\t\t\t<label for='choice_4_67_0' id='label_4_67_0' class='gform-field-label gform-field-label--type-inline'>No preference<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_67_1'>\n\t\t\t\t<input name='input_67' type='radio' value='geperst'  id='choice_4_67_1'    \/>\n\t\t\t\t<label for='choice_4_67_1' id='label_4_67_1' class='gform-field-label gform-field-label--type-inline'>Pressed<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_67_2'>\n\t\t\t\t<input name='input_67' type='radio' value='krokant'  id='choice_4_67_2'    \/>\n\t\t\t\t<label for='choice_4_67_2' id='label_4_67_2' class='gform-field-label gform-field-label--type-inline'>crispy<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_52\" class=\"gfield gfield--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\"  ><h3>There are high quality chunks in crispy or pressed form. Our vet Anne will briefly explain the difference to you. <\/h3>\n<img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/07\/Vet_quote-02.jpeg\" \/><\/li><li id=\"field_4_68\" class=\"gfield gfield--type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><img decoding=\"async\" src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/08\/questionnare_vetenarian-passende-voeding-EN.jpeg\" \/><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_41' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_41' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_7' class='gform_page' data-js='page-field-id-41' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_7' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_36\" class=\"gfield gfield--type-radio gfield--type-choice sensetive_3_col 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' >Does your dog have a sensitive digestive system?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_36'>\n\t\t\t<li class='gchoice gchoice_4_36_0'>\n\t\t\t\t<input name='input_36' type='radio' value='Nope, good digestion.'  id='choice_4_36_0'    \/>\n\t\t\t\t<label for='choice_4_36_0' id='label_4_36_0' class='gform-field-label gform-field-label--type-inline'>Nope, good digestion.<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_36_1'>\n\t\t\t\t<input name='input_36' type='radio' value='Well, it can indeed smell a lot, I want to get rid of that.'  id='choice_4_36_1'    \/>\n\t\t\t\t<label for='choice_4_36_1' id='label_4_36_1' class='gform-field-label gform-field-label--type-inline'>Well, it can indeed smell a lot, I want to get rid of that.<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_36_2'>\n\t\t\t\t<input name='input_36' type='radio' value='Sensitive stomach and\/or intestines'  id='choice_4_36_2'    \/>\n\t\t\t\t<label for='choice_4_36_2' id='label_4_36_2' class='gform-field-label gform-field-label--type-inline'>Sensitive stomach and\/or intestines<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_33\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >What does the fur look like?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_33'>\n\t\t\t<li class='gchoice gchoice_4_33_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_33' type='radio' value='Dull and dry'  id='choice_4_33_0'    \/>\n\t\t\t\t<label  for='choice_4_33_0' id='label_4_33_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-7@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-7@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-7@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Dull and dry<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_33_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_33' type='radio' value='bit dry'  id='choice_4_33_1'    \/>\n\t\t\t\t<label  for='choice_4_33_1' id='label_4_33_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-8@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-8@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-8@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">bit dry<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_33_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_33' type='radio' value='Normal'  id='choice_4_33_2'    \/>\n\t\t\t\t<label  for='choice_4_33_2' id='label_4_33_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-9@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-9@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-9@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Normal<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_33_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_33' type='radio' value='Glossy'  id='choice_4_33_3'    \/>\n\t\t\t\t<label  for='choice_4_33_3' id='label_4_33_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-10@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-10@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-10@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Glossy<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_33_4 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_33' type='radio' value='Very Shiny'  id='choice_4_33_4'    \/>\n\t\t\t\t<label  for='choice_4_33_4' id='label_4_33_4' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-11@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-11@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-11@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Very Shiny<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_34\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >What does the stool look like?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_34'>\n\t\t\t<li class='gchoice gchoice_4_34_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_34' type='radio' value='diarrhea'  id='choice_4_34_0'    \/>\n\t\t\t\t<label  for='choice_4_34_0' id='label_4_34_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">diarrhea<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_34_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_34' type='radio' value='Fairly thin'  id='choice_4_34_1'    \/>\n\t\t\t\t<label  for='choice_4_34_1' id='label_4_34_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Fairly thin<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_34_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_34' type='radio' value='Fixed and 1 whole'  id='choice_4_34_2'    \/>\n\t\t\t\t<label  for='choice_4_34_2' id='label_4_34_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-4@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-4@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-4@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Fixed and 1 whole<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_34_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_34' type='radio' value='hard and dry'  id='choice_4_34_3'    \/>\n\t\t\t\t<label  for='choice_4_34_3' id='label_4_34_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-5@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-5@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-5@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">hard and dry<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_34_4 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_34' type='radio' value='Painfully hard, I feel sorry for my dog.'  id='choice_4_34_4'    \/>\n\t\t\t\t<label  for='choice_4_34_4' id='label_4_34_4' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-6@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-6@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/05\/Asset-6@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Painfully hard, I feel sorry for my dog.<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_53' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_53' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_8' class='gform_page' data-js='page-field-id-53' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_8' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_22\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Does your dog have an allergy?<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_4_22'>most dogs do not have allergies<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_22'>\n\t\t\t<li class='gchoice gchoice_4_22_0'>\n\t\t\t\t<input name='input_22' type='radio' value='Yes'  id='choice_4_22_0'    \/>\n\t\t\t\t<label for='choice_4_22_0' id='label_4_22_0' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_22_1'>\n\t\t\t\t<input name='input_22' type='radio' value='No'  id='choice_4_22_1'    \/>\n\t\t\t\t<label for='choice_4_22_1' id='label_4_22_1' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_26\" class=\"gfield gfield--type-radio gfield--type-choice allergie_questions field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Which allergy?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_26'>\n\t\t\t<li class='gchoice gchoice_4_26_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='kip'  id='choice_4_26_0'    \/>\n\t\t\t\t<label  for='choice_4_26_0' id='label_4_26_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='eend'  id='choice_4_26_1'    \/>\n\t\t\t\t<label  for='choice_4_26_1' id='label_4_26_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='lam'  id='choice_4_26_2'    \/>\n\t\t\t\t<label  for='choice_4_26_2' id='label_4_26_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='rund'  id='choice_4_26_3'    \/>\n\t\t\t\t<label  for='choice_4_26_3' id='label_4_26_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Beef<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_4 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='zalm'  id='choice_4_26_4'    \/>\n\t\t\t\t<label  for='choice_4_26_4' id='label_4_26_4' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_5 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='hert'  id='choice_4_26_5'    \/>\n\t\t\t\t<label  for='choice_4_26_5' id='label_4_26_5' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Deer<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_6 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='graan'  id='choice_4_26_6'    \/>\n\t\t\t\t<label  for='choice_4_26_6' id='label_4_26_6' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Grain<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_7 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='potatoes'  id='choice_4_26_7'    \/>\n\t\t\t\t<label  for='choice_4_26_7' id='label_4_26_7' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Potatoes<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_26_8 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_26' type='radio' value='rijst'  id='choice_4_26_8'    \/>\n\t\t\t\t<label  for='choice_4_26_8' id='label_4_26_8' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Rice<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_27\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' >Are there any additional allergies?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_27'>\n\t\t\t<li class='gchoice gchoice_4_27_0'>\n\t\t\t\t<input name='input_27' type='radio' value='No'  id='choice_4_27_0'    \/>\n\t\t\t\t<label for='choice_4_27_0' id='label_4_27_0' class='gform-field-label gform-field-label--type-inline'>No<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_27_1'>\n\t\t\t\t<input name='input_27' type='radio' value='Yes'  id='choice_4_27_1'    \/>\n\t\t\t\t<label for='choice_4_27_1' id='label_4_27_1' class='gform-field-label gform-field-label--type-inline'>Yes<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_28\" class=\"gfield gfield--type-radio gfield--type-choice allergie_questions field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Heeft je hond nog aanvullende allergie\u00ebn?<\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_28'>\n\t\t\t<li class='gchoice gchoice_4_28_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='kip'  id='choice_4_28_0'    \/>\n\t\t\t\t<label  for='choice_4_28_0' id='label_4_28_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-1@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='eend'  id='choice_4_28_1'    \/>\n\t\t\t\t<label  for='choice_4_28_1' id='label_4_28_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='lam'  id='choice_4_28_2'    \/>\n\t\t\t\t<label  for='choice_4_28_2' id='label_4_28_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='rund'  id='choice_4_28_3'    \/>\n\t\t\t\t<label  for='choice_4_28_3' id='label_4_28_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-4@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Beef<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_4 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='zalm'  id='choice_4_28_4'    \/>\n\t\t\t\t<label  for='choice_4_28_4' id='label_4_28_4' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_5 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='hert'  id='choice_4_28_5'    \/>\n\t\t\t\t<label  for='choice_4_28_5' id='label_4_28_5' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-6@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Deer<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_6 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='graan'  id='choice_4_28_6'    \/>\n\t\t\t\t<label  for='choice_4_28_6' id='label_4_28_6' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-7@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Grain<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_7 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='potatoes'  id='choice_4_28_7'    \/>\n\t\t\t\t<label  for='choice_4_28_7' id='label_4_28_7' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-8@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Potatoes<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_28_8 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_28' type='radio' value='rijst'  id='choice_4_28_8'    \/>\n\t\t\t\t<label  for='choice_4_28_8' id='label_4_28_8' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-12@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Rice<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><\/ul>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_4_54' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='button' id='gform_next_button_4_54' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Next'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_4_9' class='gform_page' data-js='page-field-id-54' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <ul id='gform_fields_4_9' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_55\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_55'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_55'>\n\t\t\t<li class='gchoice gchoice_4_55_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_55' type='radio' value='kip'  id='choice_4_55_0'    \/>\n\t\t\t\t<label  for='choice_4_55_0' id='label_4_55_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_55_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_55' type='radio' value='zalm'  id='choice_4_55_1'    \/>\n\t\t\t\t<label  for='choice_4_55_1' id='label_4_55_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_56\" class=\"gfield gfield--type-radio gfield--type-choice volwassen_below_3 field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_56'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_56'>\n\t\t\t<li class='gchoice gchoice_4_56_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_56' type='radio' value='kip'  id='choice_4_56_0'    \/>\n\t\t\t\t<label  for='choice_4_56_0' id='label_4_56_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_56_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_56' type='radio' value='lam'  id='choice_4_56_1'    \/>\n\t\t\t\t<label  for='choice_4_56_1' id='label_4_56_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_56_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_56' type='radio' value='zalm'  id='choice_4_56_2'    \/>\n\t\t\t\t<label  for='choice_4_56_2' id='label_4_56_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_57\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_57'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_57'>\n\t\t\t<li class='gchoice gchoice_4_57_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_57' type='radio' value='kip'  id='choice_4_57_0'    \/>\n\t\t\t\t<label  for='choice_4_57_0' id='label_4_57_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_57_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_57' type='radio' value='lam'  id='choice_4_57_1'    \/>\n\t\t\t\t<label  for='choice_4_57_1' id='label_4_57_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_57_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_57' type='radio' value='zalm'  id='choice_4_57_2'    \/>\n\t\t\t\t<label  for='choice_4_57_2' id='label_4_57_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_57_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_57' type='radio' value='vegetarisch'  id='choice_4_57_3'    \/>\n\t\t\t\t<label  for='choice_4_57_3' id='label_4_57_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Vegetarian<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_58\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_58'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_58'>\n\t\t\t<li class='gchoice gchoice_4_58_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_58' type='radio' value='kip'  id='choice_4_58_0'    \/>\n\t\t\t\t<label  for='choice_4_58_0' id='label_4_58_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_58_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_58' type='radio' value='lam'  id='choice_4_58_1'    \/>\n\t\t\t\t<label  for='choice_4_58_1' id='label_4_58_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_58_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_58' type='radio' value='zalm'  id='choice_4_58_2'    \/>\n\t\t\t\t<label  for='choice_4_58_2' id='label_4_58_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_58_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_58' type='radio' value='eend'  id='choice_4_58_3'    \/>\n\t\t\t\t<label  for='choice_4_58_3' id='label_4_58_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_59\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_59'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_59'>\n\t\t\t<li class='gchoice gchoice_4_59_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_59' type='radio' value='kip'  id='choice_4_59_0'    \/>\n\t\t\t\t<label  for='choice_4_59_0' id='label_4_59_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_59_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_59' type='radio' value='lam'  id='choice_4_59_1'    \/>\n\t\t\t\t<label  for='choice_4_59_1' id='label_4_59_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_59_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_59' type='radio' value='zalm'  id='choice_4_59_2'    \/>\n\t\t\t\t<label  for='choice_4_59_2' id='label_4_59_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_59_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_59' type='radio' value='eend'  id='choice_4_59_3'    \/>\n\t\t\t\t<label  for='choice_4_59_3' id='label_4_59_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_62\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_62'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_62'>\n\t\t\t<li class='gchoice gchoice_4_62_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_62' type='radio' value='kip'  id='choice_4_62_0'    \/>\n\t\t\t\t<label  for='choice_4_62_0' id='label_4_62_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_62_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_62' type='radio' value='lam'  id='choice_4_62_1'    \/>\n\t\t\t\t<label  for='choice_4_62_1' id='label_4_62_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_62_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_62' type='radio' value='zalm'  id='choice_4_62_2'    \/>\n\t\t\t\t<label  for='choice_4_62_2' id='label_4_62_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_62_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_62' type='radio' value='vegetarisch'  id='choice_4_62_3'    \/>\n\t\t\t\t<label  for='choice_4_62_3' id='label_4_62_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Vegetarian<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_63\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_63'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_63'>\n\t\t\t<li class='gchoice gchoice_4_63_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_63' type='radio' value='kip'  id='choice_4_63_0'    \/>\n\t\t\t\t<label  for='choice_4_63_0' id='label_4_63_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_63_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_63' type='radio' value='lam'  id='choice_4_63_1'    \/>\n\t\t\t\t<label  for='choice_4_63_1' id='label_4_63_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_63_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_63' type='radio' value='zalm'  id='choice_4_63_2'    \/>\n\t\t\t\t<label  for='choice_4_63_2' id='label_4_63_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_63_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_63' type='radio' value='vegetarisch'  id='choice_4_63_3'    \/>\n\t\t\t\t<label  for='choice_4_63_3' id='label_4_63_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/vegetarian.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Vegetarian<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_64\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_64'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_64'>\n\t\t\t<li class='gchoice gchoice_4_64_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_64' type='radio' value='kip'  id='choice_4_64_0'    \/>\n\t\t\t\t<label  for='choice_4_64_0' id='label_4_64_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_64_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_64' type='radio' value='lam'  id='choice_4_64_1'    \/>\n\t\t\t\t<label  for='choice_4_64_1' id='label_4_64_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_64_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_64' type='radio' value='zalm'  id='choice_4_64_2'    \/>\n\t\t\t\t<label  for='choice_4_64_2' id='label_4_64_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_64_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_64' type='radio' value='eend'  id='choice_4_64_3'    \/>\n\t\t\t\t<label  for='choice_4_64_3' id='label_4_64_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_65\" class=\"gfield gfield--type-radio gfield--type-choice field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions \"  data-field-class=\"image-choices-field image-choices-use-images image-choices-show-labels ic-lightbox-captions\" ><label class='gfield_label gform-field-label' >Taste preference<\/label><div class='gfield_description' id='gfield_description_4_65'>We have found the ideal chunk, we would like to hear which flavor you prefer<\/div><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_65'>\n\t\t\t<li class='gchoice gchoice_4_65_0 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_65' type='radio' value='kip'  id='choice_4_65_0'    \/>\n\t\t\t\t<label  for='choice_4_65_0' id='label_4_65_0' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/chiken.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Chicken<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_65_1 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_65' type='radio' value='lam'  id='choice_4_65_1'    \/>\n\t\t\t\t<label  for='choice_4_65_1' id='label_4_65_1' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-3@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Lamb<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_65_2 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_65' type='radio' value='zalm'  id='choice_4_65_2'    \/>\n\t\t\t\t<label  for='choice_4_65_2' id='label_4_65_2' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/04\/salmon.jpg\" \/><\/span><span class=\"image-choices-choice-text\">Salmon<\/span><\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_65_3 image-choices-choice gform-theme__no-reset--children'>\n\t\t\t\t<input name='input_65' type='radio' value='eend'  id='choice_4_65_3'    \/>\n\t\t\t\t<label  for='choice_4_65_3' id='label_4_65_3' class='gform-field-label gform-field-label--type-inline' ><span class=\"image-choices-choice-image-wrap\" style=\"background-image:url(https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png)\"><img decoding=\"async\" src=\"https:\/\/studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" alt=\"\" class=\"image-choices-choice-image\" data-lightbox-src=\"https:\/\/www.studioproud.com\/wp-content\/uploads\/2021\/06\/Asset-2@2x.png\" \/><\/span><span class=\"image-choices-choice-text\">Duck<\/span><\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_60\" class=\"gfield gfield--type-html gfield_html gfield_html_formatted field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><script>\n               var radioValue = jQuery(\"input[name='input_26']:checked\").val();\n    if(radioValue){\n       jQuery('#input_1_28 li').each(function() {\n           var nxt_val=jQuery(this).find(\"input\").val();\n           if(radioValue==nxt_val){\n               jQuery(this).hide();\n           }else{\n               jQuery(this).show();\n           }\n        });\n        if(radioValue==\"graan\" || radioValue==\"rijst\"){\n            jQuery(\".volwassen_below_3 .gchoice_1_56_2\").show();\n        }else{\n            jQuery(\".volwassen_below_3 .gchoice_1_56_2\").hide();\n        }\n        jQuery('#input_1_57 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_58 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_59 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_62 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_63 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_64 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_65 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n    }\n    var radioValue_28 = jQuery(\"input[name='input_28']:checked\").val();\n    if(radioValue_28){\n        if(radioValue_28==\"graan\" || radioValue_28==\"rijst\"){\n            jQuery(\".volwassen_below_3 .gchoice_1_56_2\").show();\n        }else{\n            jQuery(\".volwassen_below_3 .gchoice_1_56_2\").hide();\n        }\n        jQuery('#input_1_57 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_58 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_59 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else if(radioValue==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_62 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_63 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_64 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n        jQuery('#input_1_65 li').each(function() {\n            var nxt_val=jQuery(this).find(\"input\").val();\n            if(radioValue_28==nxt_val){\n                jQuery(this).hide();\n            }else{\n                jQuery(this).show();\n            }\n        });\n    }\n<\/script><\/li><li id=\"field_4_12\" class=\"gfield gfield--type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_12'>Email<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_12' id='input_4_12' type='email' value='' class='medium'   placeholder='We need your email address to save the answers.' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_4_46\" class=\"gfield gfield--type-mailchimp field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='input_4_46'><li class='gchoice_4_46'>\n                        <input name='input_46' type='checkbox' value='1'  id='choice_4_46'   \/>\n                        <label for='choice_4_46' id='label_4_46'>Keep me informed of news, promotions and tips from StudioProud<\/label>\n                    <\/li><\/ul><\/div><\/li><\/ul><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><input type='submit' id='gform_previous_button_4' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Back'  \/> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='toon de ideale brok voor mijn hond'  \/> <input type='hidden' name='gform_ajax' value='form_id=4&amp;title=&amp;description=&amp;tabindex=0&amp;theme=legacy&amp;styles=[]&amp;hash=8b843470b5e6529321c52b5572880529' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='XWYzrcgCVLroKWqLmLxB2BfcAFpsy8QFR4kNv\/DqQqhtcVppn7FWvXA5ibUvVrNTbDafN1l3SmOxWvcaCgvPCC7g3Uok2HtNqPN\/EUbfmcZVVns=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJbXSIsImUxYjMwZGQ5NWMwMzZmODQzZGJkODJmMWI0OGFkOWI2Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_4' id='gform_ajax_frame_4' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https:\/\/www.studioproud.com\/wp-content\/themes\/storefront-child-theme-master\/assets\/img\/studioproud.gif', true );jQuery('#gform_ajax_frame_4').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_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').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_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(50); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/www.studioproud.com\/wp-content\/themes\/storefront-child-theme-master\/assets\/img\/studioproud.gif', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = 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_4').replaceWith(confirmation_content);jQuery(document).scrollTop(50);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, 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[\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-fullwidth.php","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-1085","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Do the test - Studio Proud<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.studioproud.com\/en\/dog-food\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Do the test - Studio Proud\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][\/vc_column][\/vc_row]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.studioproud.com\/en\/dog-food\/\" \/>\n<meta property=\"og:site_name\" content=\"Studio Proud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Studioproud\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T07:28:20+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Do the test - Studio Proud","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.studioproud.com\/en\/dog-food\/","og_locale":"en_US","og_type":"article","og_title":"Do the test - Studio Proud","og_description":"[vc_row][vc_column][\/vc_column][\/vc_row]","og_url":"https:\/\/www.studioproud.com\/en\/dog-food\/","og_site_name":"Studio Proud","article_publisher":"https:\/\/www.facebook.com\/Studioproud","article_modified_time":"2021-08-17T07:28:20+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.studioproud.com\/en\/dog-food\/","url":"https:\/\/www.studioproud.com\/en\/dog-food\/","name":"Do the test - Studio Proud","isPartOf":{"@id":"https:\/\/www.studioproud.com\/#website"},"datePublished":"2021-03-31T11:28:17+00:00","dateModified":"2021-08-17T07:28:20+00:00","breadcrumb":{"@id":"https:\/\/www.studioproud.com\/en\/dog-food\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.studioproud.com\/en\/dog-food\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.studioproud.com\/en\/dog-food\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.studioproud.com\/en\/new-homepage\/"},{"@type":"ListItem","position":2,"name":"Do the test"}]},{"@type":"WebSite","@id":"https:\/\/www.studioproud.com\/#website","url":"https:\/\/www.studioproud.com\/","name":"Studio Proud","description":"Dog accessories","publisher":{"@id":"https:\/\/www.studioproud.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.studioproud.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.studioproud.com\/#organization","name":"Studio Proud","url":"https:\/\/www.studioproud.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.studioproud.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.studioproud.com\/wp-content\/uploads\/2024\/02\/Studio-proud-Logo-InLine.jpeg","contentUrl":"https:\/\/www.studioproud.com\/wp-content\/uploads\/2024\/02\/Studio-proud-Logo-InLine.jpeg","width":1755,"height":507,"caption":"Studio Proud"},"image":{"@id":"https:\/\/www.studioproud.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Studioproud","https:\/\/www.instagram.com\/studio.proud\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/pages\/1085","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/comments?post=1085"}],"version-history":[{"count":5,"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/pages\/1085\/revisions"}],"predecessor-version":[{"id":8561,"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/pages\/1085\/revisions\/8561"}],"wp:attachment":[{"href":"https:\/\/www.studioproud.com\/en\/wp-json\/wp\/v2\/media?parent=1085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}