{"id":104699,"date":"2023-11-30T11:14:50","date_gmt":"2023-11-30T09:14:50","guid":{"rendered":"https:\/\/staging.muovia.com\/?page_id=104699"},"modified":"2023-11-30T12:50:27","modified_gmt":"2023-11-30T10:50:27","slug":"underleverantor","status":"publish","type":"page","link":"https:\/\/staging.muovia.com\/sv\/underleverantor\/","title":{"rendered":"Underleverant\u00f6r"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"228\" src=\"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-1024x228.jpg\" alt=\"\" class=\"wp-image-104700\" style=\"width:1272px\" srcset=\"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-1024x228.jpg 1024w, https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-300x67.jpg 300w, https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-768x171.jpg 768w, https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-800x178.jpg 800w, https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe.jpg 1123w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Underleverant\u00f6r till Muovia.com<\/h2>\n\n\n\n<p>Om du \u00e4r intresserad av att erbjuda plastbearbetning f\u00f6r v\u00e5rt f\u00f6retag, fyll i formul\u00e4ret nedan s\u00e5 kontaktar vi dig.<\/p>\n\n\n\n<p>De uppgifter du l\u00e4mnar kommer inte att l\u00e4mnas ut n\u00e5gonstans, de \u00f6verf\u00f6rs endast till VD Tuija Hahtonen.  F\u00f6r mer information kontakta direkt antingen via e-post  <a href=\"mailto:tuija.hahtonen@muovia.com\">tuija.hahtonen@muovia.com<\/a> eller ring <a href=\"tel:+358447285110\">+358447285110<\/a>. (Tuija svarar p\u00e5 engelska).<\/p>\n\n\n<script type=\"text\/javascript\">\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded ) {\n\t\t\t\tfn();\n\t\t\t} else if( ! gform.domLoaded && gform.scriptsLoaded ) {\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', fn );\n\t\t\t} else {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', fn );\n\t\t\t}\n\t\t},\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                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_16' style='display:none'>\n                        <div class='gform_heading'>\n                            <h2 class=\"gform_title\">Underleverant\u00f6rsformul\u00e4r<\/h2>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_16'  action='\/sv\/wp-json\/wp\/v2\/pages\/104699' data-formid='16' > \r\n <input type='hidden' class='gforms-pum' value='{\"closepopup\":false,\"closedelay\":0,\"openpopup\":false,\"openpopup_id\":0}' \/>\n                        <div class='gform-body gform_body'><div id='gform_fields_16' class='gform_fields top_label form_sublabel_below description_below'><div id=\"field_16_2\"  class=\"gfield gfield--type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_text_wrapper\"  data-field-class=\"gfield_text_wrapper\" data-js-reload=\"field_16_2\"><label class='gfield_label gform-field-label' for='input_16_2' >F\u00f6retagsnamn<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatoriskt)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_2' id='input_16_2' type='text' value='' class='medium'    placeholder='F\u00f6retagsnamn *' aria-required=\"true\" aria-invalid=\"false\"   \/> <\/div><\/div><div id=\"field_16_3\"  class=\"gfield gfield--type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_text_wrapper\"  data-field-class=\"gfield_text_wrapper\" data-js-reload=\"field_16_3\"><label class='gfield_label gform-field-label' for='input_16_3' >VAT-nummer<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatoriskt)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_16_3' type='text' value='' class='small'    placeholder='VAT-nummer *' aria-required=\"true\" aria-invalid=\"false\"   \/> <\/div><\/div><fieldset id=\"field_16_1\"  class=\"gfield gfield--type-name gfield_contains_required field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_name_wrapper\"  data-field-class=\"gfield_name_wrapper\" data-js-reload=\"field_16_1\"><legend class='gfield_label gform-field-label gfield_label_before_complex'  >Kontaktperson<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatoriskt)<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_16_1'>\n                            \n                            <span id='input_16_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_16_1_3' value=''   aria-required='true'     \/>\n                                                    <label for='input_16_1_3' class='gform-field-label gform-field-label--type-sub '>F\u00f6rnamn<\/label>\n                                                <\/span>\n                            \n                            <span id='input_16_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_16_1_6' value=''   aria-required='true'     \/>\n                                                    <label for='input_16_1_6' class='gform-field-label gform-field-label--type-sub '>Efternamn<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_16_5\"  class=\"gfield gfield--type-phone gfield_contains_required field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_phone_wrapper\"  data-field-class=\"gfield_phone_wrapper\" data-js-reload=\"field_16_5\"><label class='gfield_label gform-field-label' for='input_16_5' >Telefon<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatoriskt)<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_5' id='input_16_5' type='text' value='' class='small'  placeholder='Telefon *' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_16_14\"  class=\"gfield gfield--type-email gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_email_wrapper\"  data-field-class=\"gfield_email_wrapper\" data-js-reload=\"field_16_14\"><label class='gfield_label gform-field-label' for='input_16_14' >E-postadress<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatoriskt)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_14' id='input_16_14' type='text' value='' class='medium'   placeholder='E-postadress *' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_16_16\"  class=\"gfield gfield--type-text gfield--width-full field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_text_wrapper\"  data-field-class=\"gfield_text_wrapper\" data-js-reload=\"field_16_16\"><label class='gfield_label gform-field-label' for='input_16_16' >WWW-adress<\/label><div class='ginput_container ginput_container_text'><input name='input_16' id='input_16_16' type='text' value='' class='large'    placeholder='WWW-adress'  aria-invalid=\"false\"   \/> <\/div><\/div><fieldset id=\"field_16_10\"  class=\"gfield gfield--type-checkbox gfield--type-choice field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_checkbox_wrapper\"  data-field-class=\"gfield_checkbox_wrapper\" data-js-reload=\"field_16_10\"><legend class='gfield_label gform-field-label gfield_label_before_complex'  >Material, som ni kan erbjuda<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox' id='input_16_10'><div class='gchoice gchoice_16_10_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.1' type='checkbox'  value='Akryl'  id='choice_16_10_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_1' id='label_16_10_1' class='gform-field-label gform-field-label--type-inline'>Akryl<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.2' type='checkbox'  value='Polykarbonat'  id='choice_16_10_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_2' id='label_16_10_2' class='gform-field-label gform-field-label--type-inline'>Polykarbonat<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.3' type='checkbox'  value='H\u00e5rdbelagd polykarbonat'  id='choice_16_10_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_3' id='label_16_10_3' class='gform-field-label gform-field-label--type-inline'>H\u00e5rdbelagd polykarbonat<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.4' type='checkbox'  value='Kanalplast'  id='choice_16_10_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_4' id='label_16_10_4' class='gform-field-label gform-field-label--type-inline'>Kanalplast<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.5' type='checkbox'  value='PETG'  id='choice_16_10_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_5' id='label_16_10_5' class='gform-field-label gform-field-label--type-inline'>PETG<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_6'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.6' type='checkbox'  value='PE 300'  id='choice_16_10_6'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_6' id='label_16_10_6' class='gform-field-label gform-field-label--type-inline'>PE 300<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_7'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.7' type='checkbox'  value='PE 500'  id='choice_16_10_7'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_7' id='label_16_10_7' class='gform-field-label gform-field-label--type-inline'>PE 500<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_8'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.8' type='checkbox'  value='PE 1000'  id='choice_16_10_8'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_8' id='label_16_10_8' class='gform-field-label gform-field-label--type-inline'>PE 1000<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_9'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.9' type='checkbox'  value='PP'  id='choice_16_10_9'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_9' id='label_16_10_9' class='gform-field-label gform-field-label--type-inline'>PP<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_11'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.11' type='checkbox'  value='PVC'  id='choice_16_10_11'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_11' id='label_16_10_11' class='gform-field-label gform-field-label--type-inline'>PVC<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_12'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.12' type='checkbox'  value='ABS'  id='choice_16_10_12'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_12' id='label_16_10_12' class='gform-field-label gform-field-label--type-inline'>ABS<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_13'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.13' type='checkbox'  value='PS'  id='choice_16_10_13'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_13' id='label_16_10_13' class='gform-field-label gform-field-label--type-inline'>PS<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_14'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.14' type='checkbox'  value='PA'  id='choice_16_10_14'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_14' id='label_16_10_14' class='gform-field-label gform-field-label--type-inline'>PA<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_15'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.15' type='checkbox'  value='POM'  id='choice_16_10_15'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_15' id='label_16_10_15' class='gform-field-label gform-field-label--type-inline'>POM<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_16'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.16' type='checkbox'  value='PET'  id='choice_16_10_16'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_16' id='label_16_10_16' class='gform-field-label gform-field-label--type-inline'>PET<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_17'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.17' type='checkbox'  value='PUR'  id='choice_16_10_17'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_17' id='label_16_10_17' class='gform-field-label gform-field-label--type-inline'>PUR<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_18'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.18' type='checkbox'  value='PF'  id='choice_16_10_18'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_18' id='label_16_10_18' class='gform-field-label gform-field-label--type-inline'>PF<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_19'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.19' type='checkbox'  value='PVDF'  id='choice_16_10_19'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_19' id='label_16_10_19' class='gform-field-label gform-field-label--type-inline'>PVDF<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_21'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.21' type='checkbox'  value='PTFE'  id='choice_16_10_21'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_21' id='label_16_10_21' class='gform-field-label gform-field-label--type-inline'>PTFE<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_10_22'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_10.22' type='checkbox'  value='\u00d6vrigt'  id='choice_16_10_22'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_10_22' id='label_16_10_22' class='gform-field-label gform-field-label--type-inline'>\u00d6vrigt<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><fieldset id=\"field_16_17\"  class=\"gfield gfield--type-checkbox gfield--type-choice gfield--width-full field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_checkbox_wrapper\"  data-field-class=\"gfield_checkbox_wrapper\" data-js-reload=\"field_16_17\"><legend class='gfield_label gform-field-label gfield_label_before_complex'  >Bearbetning, som ni kan erbjuda<\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox' id='input_16_17'><div class='gchoice gchoice_16_17_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.1' type='checkbox'  value='CNC-bearbetning'  id='choice_16_17_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_17_1' id='label_16_17_1' class='gform-field-label gform-field-label--type-inline'>CNC-bearbetning<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_17_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.2' type='checkbox'  value='Lasersk\u00e4rning'  id='choice_16_17_2'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_17_2' id='label_16_17_2' class='gform-field-label gform-field-label--type-inline'>Lasersk\u00e4rning<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_17_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.3' type='checkbox'  value='Termobockning och montering'  id='choice_16_17_3'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_17_3' id='label_16_17_3' class='gform-field-label gform-field-label--type-inline'>Termobockning och montering<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_17_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.4' type='checkbox'  value='Vattensk\u00e4rning'  id='choice_16_17_4'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_17_4' id='label_16_17_4' class='gform-field-label gform-field-label--type-inline'>Vattensk\u00e4rning<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_16_17_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_17.5' type='checkbox'  value='Annat'  id='choice_16_17_5'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_16_17_5' id='label_16_17_5' class='gform-field-label gform-field-label--type-inline'>Annat<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_16_12\"  class=\"gfield gfield--type-textarea gfield--width-full field_sublabel_below gfield--no-description field_description_below gfield_visibility_visible gfield_textarea_wrapper\"  data-field-class=\"gfield_textarea_wrapper\" data-js-reload=\"field_16_12\"><label class='gfield_label gform-field-label' for='input_16_12' >Annan bearbetning, som ni kan erbjuda<\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_12' id='input_16_12' class='textarea small'    placeholder='Annan bearbetning, som ni kan erbjuda'  aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><\/div><\/div>\n        <div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_16' class='gform_button button' value='L\u00e4het\u00e4'  onclick='if(window[\"gf_submitting_16\"]){return false;}  window[\"gf_submitting_16\"]=true;  ' onkeypress='if( event.keyCode == 13 ){ if(window[\"gf_submitting_16\"]){return false;} window[\"gf_submitting_16\"]=true;  jQuery(\"#gform_16\").trigger(\"submit\",[true]); }' \/> \n            <input type='hidden' class='gform_hidden' name='is_submit_16' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='16' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_16' value='WyJbXSIsIjFhMGZjMjkxNmVlYWIzN2QzMTA0OGZhYzBiNDA1ZGVmIl0=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_target_page_number_16' id='gform_target_page_number_16' value='0' \/>\n            <input type='hidden' class='gform_hidden' name='gform_source_page_number_16' id='gform_source_page_number_16' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 16, 'https:\/\/staging.muovia.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_16').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_16');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_16').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){jQuery('#gform_wrapper_16').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_16').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_16').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_16').val();gformInitSpinner( 16, 'https:\/\/staging.muovia.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [16, current_page]);window['gf_submitting_16'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery('#gform_wrapper_16').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [16]);window['gf_submitting_16'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_16').text());}, 50);}else{jQuery('#gform_16').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger('gform_post_render', [16, current_page]);} );} ); \n\/* ]]> *\/\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Underleverant\u00f6r till Muovia.com Om du \u00e4r intresserad av att erbjuda plastbearbetning f\u00f6r v\u00e5rt f\u00f6retag, fyll i formul\u00e4ret nedan s\u00e5 kontaktar vi dig. De uppgifter du l\u00e4mnar kommer inte att l\u00e4mnas [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_relevanssi_hide_post":"","_relevanssi_pin_for_all":"","_relevanssi_pin_keywords":"","_relevanssi_unpin_keywords":"","_relevanssi_related_keywords":"","_relevanssi_related_include_ids":"","_relevanssi_related_exclude_ids":"","_relevanssi_related_no_append":"","_relevanssi_related_not_related":"","_relevanssi_related_posts":"82869,79271,42403,42374,42419,42752","_relevanssi_noindex_reason":"","footnotes":""},"class_list":["post-104699","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Underleverant\u00f6r - Muovia.com<\/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:\/\/staging.muovia.com\/sv\/underleverantor\/\" \/>\n<meta property=\"og:locale\" content=\"sv_SE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Underleverant\u00f6r - Muovia.com\" \/>\n<meta property=\"og:description\" content=\"Underleverant\u00f6r till Muovia.com Om du \u00e4r intresserad av att erbjuda plastbearbetning f\u00f6r v\u00e5rt f\u00f6retag, fyll i formul\u00e4ret nedan s\u00e5 kontaktar vi dig. De uppgifter du l\u00e4mnar kommer inte att l\u00e4mnas [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.muovia.com\/sv\/underleverantor\/\" \/>\n<meta property=\"og:site_name\" content=\"Muovia\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-30T10:50:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-1024x228.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Ber\u00e4knad l\u00e4stid\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.muovia.com\/sv\/underleverantor\/\",\"url\":\"https:\/\/staging.muovia.com\/sv\/underleverantor\/\",\"name\":\"Underleverant\u00f6r - Muovia.com\",\"isPartOf\":{\"@id\":\"https:\/\/staging.muovia.com\/sv\/#website\"},\"datePublished\":\"2023-11-30T09:14:50+00:00\",\"dateModified\":\"2023-11-30T10:50:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.muovia.com\/sv\/underleverantor\/#breadcrumb\"},\"inLanguage\":\"sv-SE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.muovia.com\/sv\/underleverantor\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.muovia.com\/sv\/underleverantor\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Hemsida\",\"item\":\"https:\/\/staging.muovia.com\/sv\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Underleverant\u00f6r\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.muovia.com\/sv\/#website\",\"url\":\"https:\/\/staging.muovia.com\/sv\/\",\"name\":\"Muovia\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/staging.muovia.com\/sv\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.muovia.com\/sv\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"sv-SE\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/staging.muovia.com\/sv\/#organization\",\"name\":\"Muovia\",\"url\":\"https:\/\/staging.muovia.com\/sv\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"sv-SE\",\"@id\":\"https:\/\/staging.muovia.com\/sv\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/10\/Muovia-com-Plastbutik-online-2-scaled.jpg\",\"contentUrl\":\"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/10\/Muovia-com-Plastbutik-online-2-scaled.jpg\",\"width\":2560,\"height\":571,\"caption\":\"Muovia\"},\"image\":{\"@id\":\"https:\/\/staging.muovia.com\/sv\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Underleverant\u00f6r - Muovia.com","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:\/\/staging.muovia.com\/sv\/underleverantor\/","og_locale":"sv_SE","og_type":"article","og_title":"Underleverant\u00f6r - Muovia.com","og_description":"Underleverant\u00f6r till Muovia.com Om du \u00e4r intresserad av att erbjuda plastbearbetning f\u00f6r v\u00e5rt f\u00f6retag, fyll i formul\u00e4ret nedan s\u00e5 kontaktar vi dig. De uppgifter du l\u00e4mnar kommer inte att l\u00e4mnas [&hellip;]","og_url":"https:\/\/staging.muovia.com\/sv\/underleverantor\/","og_site_name":"Muovia","article_modified_time":"2023-11-30T10:50:27+00:00","og_image":[{"url":"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/11\/tyostoalihankinta-swe-1024x228.jpg"}],"twitter_card":"summary_large_image","twitter_misc":{"Ber\u00e4knad l\u00e4stid":"1 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/staging.muovia.com\/sv\/underleverantor\/","url":"https:\/\/staging.muovia.com\/sv\/underleverantor\/","name":"Underleverant\u00f6r - Muovia.com","isPartOf":{"@id":"https:\/\/staging.muovia.com\/sv\/#website"},"datePublished":"2023-11-30T09:14:50+00:00","dateModified":"2023-11-30T10:50:27+00:00","breadcrumb":{"@id":"https:\/\/staging.muovia.com\/sv\/underleverantor\/#breadcrumb"},"inLanguage":"sv-SE","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.muovia.com\/sv\/underleverantor\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/staging.muovia.com\/sv\/underleverantor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Hemsida","item":"https:\/\/staging.muovia.com\/sv\/"},{"@type":"ListItem","position":2,"name":"Underleverant\u00f6r"}]},{"@type":"WebSite","@id":"https:\/\/staging.muovia.com\/sv\/#website","url":"https:\/\/staging.muovia.com\/sv\/","name":"Muovia","description":"","publisher":{"@id":"https:\/\/staging.muovia.com\/sv\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.muovia.com\/sv\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"sv-SE"},{"@type":"Organization","@id":"https:\/\/staging.muovia.com\/sv\/#organization","name":"Muovia","url":"https:\/\/staging.muovia.com\/sv\/","logo":{"@type":"ImageObject","inLanguage":"sv-SE","@id":"https:\/\/staging.muovia.com\/sv\/#\/schema\/logo\/image\/","url":"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/10\/Muovia-com-Plastbutik-online-2-scaled.jpg","contentUrl":"https:\/\/staging.muovia.com\/wp-content\/uploads\/2023\/10\/Muovia-com-Plastbutik-online-2-scaled.jpg","width":2560,"height":571,"caption":"Muovia"},"image":{"@id":"https:\/\/staging.muovia.com\/sv\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/pages\/104699"}],"collection":[{"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/comments?post=104699"}],"version-history":[{"count":6,"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/pages\/104699\/revisions"}],"predecessor-version":[{"id":104715,"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/pages\/104699\/revisions\/104715"}],"wp:attachment":[{"href":"https:\/\/staging.muovia.com\/sv\/wp-json\/wp\/v2\/media?parent=104699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}