{"id":4768,"date":"2022-03-07T17:15:01","date_gmt":"2022-03-07T17:15:01","guid":{"rendered":"https:\/\/lidex.com.pl\/formularz-tlumacza\/"},"modified":"2024-06-21T08:52:21","modified_gmt":"2024-06-21T08:52:21","slug":"translator-interpreter-form","status":"publish","type":"page","link":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/","title":{"rendered":"Translator\/interpreter form"},"content":{"rendered":"\n<div class=\"wp-block-group rc_big_image rc_no_margin\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1512\" height=\"598\" src=\"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg\" alt=\"Translator\/interpreter form\" class=\"wp-image-2557\" srcset=\"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg 1512w, https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2-360x142.jpg 360w, https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2-560x221.jpg 560w, https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2-768x304.jpg 768w\" sizes=\"auto, (max-width: 1512px) 100vw, 1512px\" \/><\/figure>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p>Lidex &#8211; a leader<\/p>\n\n\n\n<p>there can be only one leader in the translation and interpretation market in Poland<\/p>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-group lidex_form_tlumacz hide-on-form-submitted\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<h1 class=\"wp-block-heading\">Cooperation with translators and interpreters<\/h1>\n\n\n\n<p>We cordially invite to cooperate with us translators and interpreters of all languages with a specialised university degree (philology\/applied linguistics) in the declared language and\/or documented minimum 2 years of professional experience.<br><br>Additionally welcome:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>experience in working with CAT tools\/machine translation post-editing in the case of translators<\/li>\n\n\n\n<li>experience in performing online interpreting services in the case of interpreters<\/li>\n\n\n\n<li>being a certified translator\/having a QES<\/li>\n\n\n\n<li>security clearance certificate<\/li>\n<\/ul>\n\n\n\n<p>If you want to join our group of translators, please fill out the form below.<\/p>\n\n\n\n<p><script>\n    var form_repeater_id_sequence = 0;\n\n    \/\/ add \"lidex_form_tlumacz\" to body classes\n    document.body.classList.add('lidex_form_tlumacz');\n\n    function disable_elements(container, selector, disable) {\n        let elements = container.querySelectorAll(selector);\n        for (var i = 0; i < elements.length; i++) {\n            if (disable) {\n                    elements[i].setAttribute('disabled', 'disabled');\n                    elements[i].classList.add('disabled');\n            } else {\n                    elements[i].removeAttribute('disabled');\n                    elements[i].classList.remove('disabled');\n            }\n        }\n        if (disable) {\n            container.classList.add('disabled');\n        } else {\n            container.classList.remove('disabled');\n        }\n    }\n\n    function recount_repeater_counters(calling_element) {\n        let element = calling_element.closest('.form_repeated_fields');\n        let counters = element.querySelectorAll('.repeater_item .repeater_counter');\n        for (var i = 0; i < counters.length; i++) {\n            counters[i].innerHTML = i + 1;\n        }\n\n        \/\/ if there is only one item, disable remove button\n        let remove_buttons = element.querySelectorAll('.repeater_item .repeater_delete');\n        for (var i = 0; i < remove_buttons.length; i++) {\n            if (counters.length == 1) {\n                remove_buttons[i].setAttribute('disabled', 'disabled');\n            } else {\n                remove_buttons[i].removeAttribute('disabled');\n            }\n        }\n    }\n\n    function form_remove_fields(calling_element) {\n        let element = calling_element.closest('.form_repeated_fields');\n        calling_element.closest('.repeater_item').remove();\n        recount_repeater_counters(element); \/\/< at this point calling_element is not in DOM anymore\n    }\n\n    function form_repeat_fields(calling_element) {\n        let element = calling_element.closest('.form_repeated_fields');\n\n        \/\/ check validity of all inputs in element\n        let inputs = element.querySelectorAll('input, select, textarea');\n        for (var i = 0; i < inputs.length; i++) {\n            if (!inputs[i].checkValidity()) {\n                inputs[i].reportValidity();\n                return;\n            }\n        }\n\n        if (element.classList.contains('repeated')) {\n            \/\/ if all inputs are empty, do not add new item\n            let empty = true;\n            for (var i = 0; i < inputs.length; i++) {\n                if (inputs[i].value != '') {\n                    empty = false;\n                    break;\n                }\n            }\n            if (empty) {\n                alert('Wype\u0142nij co najmniej jedno pole.', 'gk_theme');\n                return;\n            }\n        }\n\n        let id_fake_postifx = element.dataset.fakeId;\n        let id_true_postfix = form_repeater_id_sequence++;\n        let template_element = element.querySelector('template');\n        let clone = template_element.content.cloneNode(true);\n        \n        \/\/ add class repeater_item to first node\n        clone.children[0].classList.add('repeater_item');\n\n        \/\/ find all inputs with id postfix and change it to new postfix\n        inputs = clone.querySelectorAll('[id$=\"' + id_fake_postifx + '\"]');\n        for (var i = 0; i < inputs.length; i++) {\n            inputs[i].id = inputs[i].id.replace(id_fake_postifx, id_true_postfix);\n        }\n        inputs = clone.querySelectorAll('[id$=\"' + id_fake_postifx + '--group\"]');\n        for (var i = 0; i < inputs.length; i++) {\n            inputs[i].id = inputs[i].id.replace(id_fake_postifx, id_true_postfix);\n        }\n\n        element.appendChild(clone);\n        element.classList.add('repeated');\n        recount_repeater_counters(calling_element);\n    }\n\n    \/\/ when DOMContentLoaded\n    document.addEventListener('DOMContentLoaded', function() {\n        \/\/ add event listeners to all buttons\n        var buttons = document.querySelectorAll('.form_repeated_fields button');\n        for (var i = 0; i < buttons.length; i++) {\n            buttons[i].addEventListener('click', function(e) {\n                e.preventDefault();\n                if (this.classList.contains('form_remove_fields')) {\n                    form_remove_fields(this);\n                } else if (this.classList.contains('form_repeat_fields')) {\n                    form_repeat_fields(this);\n                }\n            });\n        }\n\n        \/\/ for each form_repeated_fields element add first item\n        var form_repeated_fields = document.querySelectorAll('.form_repeated_fields');\n        for (var i = 0; i < form_repeated_fields.length; i++) {\n            form_repeat_fields(form_repeated_fields[i]);\n        }\n\n        \/\/ for each input element with class \"cus-check\", add class \"cus-check\" to parent element\n        var cuscheck_inputs = document.querySelectorAll('input.cus-check');\n        for (var i = 0; i < cuscheck_inputs.length; i++) {\n            let parent = cuscheck_inputs[i].closest('.form-group');\n            if (parent) {\n                parent.classList.add('cus-check');\n                \/\/parent.classList.add('style-2');\n            }\n        }\n\n        \/\/ for each input element of type text that does not have length limit, set maxlength to 255\n        var text_inputs = document.querySelectorAll('input[type=\"text\"]');\n        for (var i = 0; i < text_inputs.length; i++) {\n            if (!text_inputs[i].hasAttribute('maxlength')) {\n                text_inputs[i].setAttribute('maxlength', '255');\n            }\n        }\n\n        document.getElementById('lidex--cr1').addEventListener('change', function() {\n            let container = document.getElementById('repeated_fields_t_pisemne');\n            let section = container.closest('.c-sec');\n            disable_elements(section, 'input, button', !this.checked);\n            if (this.checked) {\n                recount_repeater_counters(container);\n            }\n            \n            disable_elements(document.getElementById('stawki_pisemne'), 'input, p, div', !this.checked);\n        });\n        document.getElementById('lidex--cr1').dispatchEvent(new Event('change'));\n\n        document.getElementById('lidex--cr2').addEventListener('change', function() {\n            let container = document.getElementById('repeated_fields_t_ustne');\n            let section = container.closest('.c-sec');\n            disable_elements(section, 'input, button', !this.checked);\n            if (this.checked) {\n                recount_repeater_counters(container);\n            }\n            disable_elements(document.getElementById('lidex--cooperated_with--group').closest('.c-sec'), 'textarea', !this.checked);\n            \/\/disable_elements(document.getElementById('lidex--willing_to_work_outside--group'), 'input, label', !this.checked);\n            \/\/disable_elements(document.getElementById('lidex--zasady_wspolpracy_wyjazdy--group').closest('.c-sec'), 'textarea', !this.checked);\n            disable_elements(document.getElementById('stawki_ustne'), 'input, p, div', !this.checked);\n        });\n        document.getElementById('lidex--cr2').dispatchEvent(new Event('change'));\n\n        \/\/ lidex--is_q_sworn_translator\n        document.getElementById('lidex--is_q_sworn_translator').addEventListener('change', function() {\n            disable_elements(document.getElementById('lidex--is_es_sworn_translator--group'), 'input, label', !this.checked);\n            disable_elements(document.getElementById('lidex--language_combination--group'), 'textarea', !this.checked);\n            disable_elements(document.getElementById('stawki_przysiegle'), 'input, p, div', !this.checked);\n        });\n        document.getElementById('lidex--is_q_sworn_translator').dispatchEvent(new Event('change'));\n\n        \/\/ lidex--is_degree_of_disability\n        document.getElementById('lidex--is_degree_of_disability').addEventListener('change', function() {\n            disable_elements(document.getElementById('lidex--d_of_d_grade--group'), 'input, label', !this.checked);\n        });\n        document.getElementById('lidex--is_degree_of_disability').dispatchEvent(new Event('change'));\n\n        \/\/lidex--is_exp_post_machine_translation\n        document.getElementById('lidex--is_exp_post_machine_translation').addEventListener('change', function() {\n            disable_elements(document.getElementById('lidex--exp_post_machine_translation_detail--group'), 'input, label', !this.checked);\n        });\n        document.getElementById('lidex--is_exp_post_machine_translation').dispatchEvent(new Event('change'));\n\n        let tools_array = document.querySelectorAll('input[id^=\"lidex--is_tool_\"]');\n        for (let i = 0; i < tools_array.length; i++) {\n            tools_array[i].addEventListener('change', function() {\n                let tool_id = this.id.replace('lidex--is_tool_', '');\n                let tool_version = document.getElementById('lidex--tool_' + tool_id + '_version--group');\n                if (tool_version) {\n                    disable_elements(tool_version, 'input', !this.checked);\n                } else {\n                    console.log('tool_version not found for tool_id: ' + tool_id);\n                }\n                let tool_license = document.getElementById('lidex--is_own_license_tool_' + tool_id + '--group');\n                if (tool_license) {\n                    disable_elements(tool_license, 'input, label', !this.checked);\n                }\n            });\n            tools_array[i].dispatchEvent(new Event('change'));\n        }\n    });\n<\/script>\n\n\n<form id='form-tlumacz' action='' method='POST' autocomplete='on' novalidate enctype=\"multipart\/form-data\"><input type='hidden' name='_token' value='e0127cf9ce1769663000ef6041f98707'>    <div class=\"cus-card\">\n        <div class=\"row justify-content-center\">\n            <div class=\"col-lg-10 col-md-12 col-12\">\n\n                <h3 class=\"form-title\">\n                    Translator application form                <\/h3>\n\n                \n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Personal information                    <\/h3>\n                    \n\n<div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--first_name--group'><input placeholder='First name *' aria-label='First name' required aria-required='true' autocomplete='given-name' type='text' class='form-control' name='lidex[first_name]' id='lidex--first_name' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--last_name--group'><input placeholder='Last name *' aria-label='Last name' required aria-required='true' autocomplete='family-name' type='text' class='form-control' name='lidex[last_name]' id='lidex--last_name' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_date' id='lidex--birth_date--group'><input placeholder='Date of birth *' aria-label='Date of birth' required aria-required='true' autocomplete='bday' max='2008-04-04' type='text' class='form-control' name='lidex[birth_date]' id='lidex--birth_date' value='' onfocus='this.type=&#039;date&#039;' onblur='!navigator.userAgent.includes(&#039;Firefox&#039;) ? (this.value == &#039;&#039; ? this.type=&#039;text&#039; : this.type=&#039;date&#039;) : this.type=&#039;date&#039;'><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--nationality--group'><input placeholder='Nationality *' aria-label='Nationality' required aria-required='true' type='text' class='form-control' name='lidex[nationality]' id='lidex--nationality' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--c_address--group'><input placeholder='Correspondence address *' aria-label='Correspondence address' required aria-required='true' type='text' class='form-control' name='lidex[c_address]' id='lidex--c_address' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_email' id='lidex--email--group'><input placeholder='E-mail *' aria-label='E-mail' required aria-required='true' autocomplete='email' pattern='[a-z0-9._%+-]+@[a-z0-9.-]+\\.[a-z]{2,4}$' title='your_email_login@your_domain.com' type='email' class='form-control' name='lidex[email]' id='lidex--email' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_tel' id='lidex--phone_number--group'><input placeholder='Phone *' aria-label='Phone' required aria-required='true' autocomplete='tel' type='tel' class='form-control' name='lidex[phone_number]' id='lidex--phone_number' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_tel' id='lidex--other_phone_number--group'><input placeholder='Additional number' aria-label='Additional number' type='tel' class='form-control' name='lidex[other_phone_number]' id='lidex--other_phone_number' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--komunikator_type--group'><input placeholder='Instant messaging service - type' aria-label='Instant messaging service - type' type='text' class='form-control' name='lidex[komunikator_type]' id='lidex--komunikator_type' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--komunikator_numer--group'><input placeholder='Instant messaging service - number' aria-label='Instant messaging service - number' autocomplete='impp' type='text' class='form-control' name='lidex[komunikator_numer]' id='lidex--komunikator_numer' value=''><\/div>                    <\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <div class=\"row\">\n                        <div class=\"col-12 wyrowananie-left\">\n                            <h3 class=\"c-h\">\n                                Preferred form of cooperation                            <\/h3>\n                        <\/div>\n<div style=\"display: flex;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--faktura--group'><input type='hidden' value='0' name='lidex[faktura]'><div class='form-check'><input placeholder='Contract of mandate (payment to be made on the basis of an invoice)' aria-label='Contract of mandate (payment to be made on the basis of an invoice)' class='cus-check' type='checkbox' value='1' name='lidex[faktura]' id='lidex--faktura'><label for='lidex--faktura' class='form-check-label'>Contract of mandate (payment to be made on the basis of an invoice)<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--etat--group'><input type='hidden' value='0' name='lidex[etat]'><div class='form-check'><input placeholder='Contract of employment' aria-label='Contract of employment' class='cus-check' type='checkbox' value='1' name='lidex[etat]' id='lidex--etat'><label for='lidex--etat' class='form-check-label'>Contract of employment<\/label><\/div><\/div>    <\/div>\n<\/div>\n                    <\/div>\n                <\/div>\n\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Education                    <\/h3>\n\n                    <div id=\"repeated_fields_wyksztalcenie\" class=\"form_repeated_fields\" data-fake-id=\"fake_id\">\n                    <template>\n                        <div class=\"row\">\n                            <div class=\"col-lg-3 col-md-4 col-sm-12 col-12\">\n                                <div class=\"count-wrap\">\n                                    <div class=\"repeater_counter\">1<\/div>\n                                    <div class=\"repeater_controls\">\n                                        <button type=\"button\" class=\"repeater_clone\" onclick=\"form_repeat_fields(this)\">Add item+<\/button>\n                                        <button type=\"button\" class=\"repeater_delete\" onclick=\"form_remove_fields(this)\">Delete item<i class=\"fas fa-trash-alt\"><\/i><\/button>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"col-lg-9 col-md-8 col-sm-12 col-12\">\n                                <div class=\"row\">\n                    \n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--university_name_fake_id--group'><input placeholder='Name of university *' aria-label='Name of university' required aria-required='true' type='text' class='form-control' name='lidex[university_name][]' id='lidex--university_name_fake_id' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--faculty_fake_id--group'><input placeholder='Faculty *' aria-label='Faculty' required aria-required='true' type='text' class='form-control' name='lidex[faculty][]' id='lidex--faculty_fake_id' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--specialization_fake_id--group'><input placeholder='Specialisation *' aria-label='Specialisation' required aria-required='true' type='text' class='form-control' name='lidex[specialization][]' id='lidex--specialization_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--study_period_fake_id--group'><input placeholder='Period of study (from-to) *' aria-label='Period of study (from-to)' required aria-required='true' type='text' class='form-control' name='lidex[study_period][]' id='lidex--study_period_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--pro_title_fake_id--group'><input placeholder='Professional title *' aria-label='Professional title' required aria-required='true' type='text' class='form-control' name='lidex[pro_title][]' id='lidex--pro_title_fake_id' value=''><\/div>     \n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/template>\n                    <\/div>\n                <\/div>\n\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Other trainings, courses, language certificates                    <\/h3>\n<div class='form-group col-12 app_html_textarea' id='lidex--training_courses--group'><textarea placeholder='Other trainings, courses, language certificates' aria-label='Other trainings, courses, language certificates' maxlength='1000' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[training_courses]' id='lidex--training_courses'><\/textarea><\/div>                <\/div>\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Current place of employment                    <\/h3>\n<div class='form-group col-12 app_html_textarea' id='lidex--current_workplace--group'><textarea placeholder='Current place of employment' aria-label='Current place of employment' maxlength='1000' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[current_workplace]' id='lidex--current_workplace'><\/textarea><\/div>                <\/div>\n\n                <div class=\"c-sec\">\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-lg-6 col-md-12 col-12 wyrowananie-left\">\n                            <h3 class=\"c-h \">\n                                How long have you been working as a translator?                            <\/h3>\n                        <\/div>\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_number' id='lidex--translation_exp--group'><input placeholder='Please specify starting date *' aria-label='Please specify starting date' required='1' min='1940' max='2026' type='number' class='form-control' name='lidex[translation_exp]' id='lidex--translation_exp' value=''><\/div>                    <\/div>\n                <\/div>\n                <div class=\"c-sec\">\n                    <div class=\"row\">\n                        <div class=\"col-12 wyrowananie-left\">\n                            <h3 class=\"c-h\">\n                                Preferred method of translation                            <\/h3>\n                        <\/div>\n<div style=\"display: flex; justify-content: left;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--cr1--group'><input type='hidden' value='0' name='lidex[cr1]'><div class='form-check'><input placeholder='Translation' aria-label='Translation' class='cus-check' type='checkbox' value='1' name='lidex[cr1]' id='lidex--cr1'><label for='lidex--cr1' class='form-check-label'>Translation<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--cr2--group'><input type='hidden' value='0' name='lidex[cr2]'><div class='form-check'><input placeholder='Interpreting' aria-label='Interpreting' class='cus-check' type='checkbox' value='1' name='lidex[cr2]' id='lidex--cr2'><label for='lidex--cr2' class='form-check-label'>Interpreting<\/label><\/div><\/div>    <\/div>\n  <\/div>\n                    <\/div>\n                <\/div>\n\n\n                <div class=\"c-sec rr\">\n                    <h3 class=\"c-h\">\n                        Declared abilities in the field of translation (please provide all language combinations)                    <\/h3>\n                    <div class=\"row mt-30\">\n<div class='form-group col-12 cus-check app_html_select_multiple' id='lidex--translation_languages--group'><textarea name='lidex[translation_languages]' id='lidex--translation_languages' hidden='hidden'><\/textarea><div class='form-control' style='height:initial'><div><input type='checkbox' id='lidex--translation_languages--PL-ANG' class='lidex--translation_languages' value='PL-ANG'> <label class='' for='lidex--translation_languages--PL-ANG'>POL-ENG<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--ANG-PL' class='lidex--translation_languages' value='ANG-PL'> <label class='' for='lidex--translation_languages--ANG-PL'>ENG-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-NIEM' class='lidex--translation_languages' value='PL-NIEM'> <label class='' for='lidex--translation_languages--PL-NIEM'>POL-GER<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--NIEM-PL' class='lidex--translation_languages' value='NIEM-PL'> <label class='' for='lidex--translation_languages--NIEM-PL'>GER-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-ROS' class='lidex--translation_languages' value='PL-ROS'> <label class='' for='lidex--translation_languages--PL-ROS'>POL-RUS<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--ROS-PL' class='lidex--translation_languages' value='ROS-PL'> <label class='' for='lidex--translation_languages--ROS-PL'>RUS-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-FRAN' class='lidex--translation_languages' value='PL-FRAN'> <label class='' for='lidex--translation_languages--PL-FRAN'>POL-FRE<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--FRAN-PL' class='lidex--translation_languages' value='FRAN-PL'> <label class='' for='lidex--translation_languages--FRAN-PL'>FRE-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-NID' class='lidex--translation_languages' value='PL-NID'> <label class='' for='lidex--translation_languages--PL-NID'>POL-DUT<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--NID-PL' class='lidex--translation_languages' value='NID-PL'> <label class='' for='lidex--translation_languages--NID-PL'>DUT-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-W\u0141OS' class='lidex--translation_languages' value='PL-W\u0141OS'> <label class='' for='lidex--translation_languages--PL-W\u0141OS'>POL-ITA<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--W\u0141OS-PL' class='lidex--translation_languages' value='W\u0141OS-PL'> <label class='' for='lidex--translation_languages--W\u0141OS-PL'>ITA-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-CZES' class='lidex--translation_languages' value='PL-CZES'> <label class='' for='lidex--translation_languages--PL-CZES'>POL-CZE<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--CZES-PL' class='lidex--translation_languages' value='CZES-PL'> <label class='' for='lidex--translation_languages--CZES-PL'>CZE-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-LIT' class='lidex--translation_languages' value='PL-LIT'> <label class='' for='lidex--translation_languages--PL-LIT'>POL-LIT<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--LIT-PL' class='lidex--translation_languages' value='LIT-PL'> <label class='' for='lidex--translation_languages--LIT-PL'>LIT-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-\u0141OT' class='lidex--translation_languages' value='PL-\u0141OT'> <label class='' for='lidex--translation_languages--PL-\u0141OT'>POL-LAT<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--\u0141OT-PL' class='lidex--translation_languages' value='\u0141OT-PL'> <label class='' for='lidex--translation_languages--\u0141OT-PL'>LAT-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-BIA\u0141' class='lidex--translation_languages' value='PL-BIA\u0141'> <label class='' for='lidex--translation_languages--PL-BIA\u0141'>POL-BEL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--BIA\u0141-PL' class='lidex--translation_languages' value='BIA\u0141-PL'> <label class='' for='lidex--translation_languages--BIA\u0141-PL'>BEL-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-EST' class='lidex--translation_languages' value='PL-EST'> <label class='' for='lidex--translation_languages--PL-EST'>POL-EST<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--EST-PL' class='lidex--translation_languages' value='EST-PL'> <label class='' for='lidex--translation_languages--EST-PL'>EST-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-HISZP' class='lidex--translation_languages' value='PL-HISZP'> <label class='' for='lidex--translation_languages--PL-HISZP'>POL-SPA<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--HISZP-PL' class='lidex--translation_languages' value='HISZP-PL'> <label class='' for='lidex--translation_languages--HISZP-PL'>SPA-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-SZWE' class='lidex--translation_languages' value='PL-SZWE'> <label class='' for='lidex--translation_languages--PL-SZWE'>POL-SWE<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--SZWE-PL' class='lidex--translation_languages' value='SZWE-PL'> <label class='' for='lidex--translation_languages--SZWE-PL'>SWE-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-GREC' class='lidex--translation_languages' value='PL-GREC'> <label class='' for='lidex--translation_languages--PL-GREC'>POL-GRE<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--GREC-PL' class='lidex--translation_languages' value='GREC-PL'> <label class='' for='lidex--translation_languages--GREC-PL'>GRE-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-PORT' class='lidex--translation_languages' value='PL-PORT'> <label class='' for='lidex--translation_languages--PL-PORT'>POL-POR<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PORT-PL' class='lidex--translation_languages' value='PORT-PL'> <label class='' for='lidex--translation_languages--PORT-PL'>POR-POL<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--PL-UKR' class='lidex--translation_languages' value='PL-UKR'> <label class='' for='lidex--translation_languages--PL-UKR'>POL-UKR<\/label><\/div><div><input type='checkbox' id='lidex--translation_languages--UKR-PL' class='lidex--translation_languages' value='UKR-PL'> <label class='' for='lidex--translation_languages--UKR-PL'>UKR-POL<\/label><\/div><\/div><script>\n        if (true) {\n          let initial_values = document.getElementById('lidex--translation_languages').value.split('|');\n          for (i = 0; i < initial_values.length; ++i) {\n            let e = document.getElementById('lidex--translation_languages--' + initial_values[i]);\n            if (e) e.checked = 'checked'\n          }\n\n          let elements = document.getElementsByClassName('lidex--translation_languages');\n          for (i = 0; i < elements.length; ++i) {\n            elements[i].addEventListener('change', function() {\n              let values = Array.prototype.slice.call(document.querySelectorAll('input:checked.lidex--translation_languages')).reduce(function(acc, cur) { acc.push(cur.value); return acc; }, []);\n              values = values.join('|');\n              document.getElementById('lidex--translation_languages').value = values;\n            }, false);\n          }\n        }\n      <\/script><\/div>                    <\/div>\n                <\/div>\n                <div class=\"c-sec\">\n                    <div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--other_comb_to_pl--group'><input placeholder='Other language combinations (translation into Polish)' aria-label='Other language combinations (translation into Polish)' type='text' class='form-control' name='lidex[other_comb_to_pl]' id='lidex--other_comb_to_pl' value=''><\/div>                        \n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--other_comb_to_fl--group'><input placeholder='Other language combinations (translation into a foreign language)' aria-label='Other language combinations (translation into a foreign language)' type='text' class='form-control' name='lidex[other_comb_to_fl]' id='lidex--other_comb_to_fl' value=''><\/div>                        \n                    <\/div>\n                <\/div>\n\n                <div class=\"c-sec cr1-n1\">\n                    <h3 class=\"c-h\">\n                    Current translation experience (during the period of the last 3 years)                    <\/h3>\n\n                    <div id=\"repeated_fields_t_pisemne\" class=\"form_repeated_fields\" data-fake-id=\"fake_id\">\n                    <template>\n                        <div class=\"row\">\n                            <div class=\"col-lg-3 col-md-4 col-sm-12 col-12\">\n                                <div class=\"count-wrap\">\n                                    <div class=\"repeater_counter\">1<\/div>\n                                    <div class=\"repeater_controls\">\n                                        <button type=\"button\" class=\"repeater_clone\" onclick=\"form_repeat_fields(this)\">Add item+<\/button>\n                                        <button type=\"button\" class=\"repeater_delete\" onclick=\"form_remove_fields(this)\">Delete item<i class=\"fas fa-trash-alt\"><\/i><\/button>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"col-lg-9 col-md-8 col-sm-12 col-12\">\n                                <div class=\"row\">\n                    \n<div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--wt_from_t_to_t_fake_id--group'><input placeholder='Language combination *' aria-label='Language combination' required aria-required='true' type='text' class='form-control' name='lidex[wt_from_t_to_t][]' id='lidex--wt_from_t_to_t_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_number' id='lidex--wt_number_of_pages_fake_id--group'><input placeholder='Number of pages *' aria-label='Number of pages' required aria-required='true' min='1' type='number' class='form-control' name='lidex[wt_number_of_pages][]' id='lidex--wt_number_of_pages_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--wt_field_fake_id--group'><input placeholder='Subject area *' aria-label='Subject area' required aria-required='true' type='text' class='form-control' name='lidex[wt_field][]' id='lidex--wt_field_fake_id' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--wt_project_description_fake_id--group'><input placeholder='Project description *' aria-label='Project description' required aria-required='true' type='text' class='form-control' name='lidex[wt_project_description][]' id='lidex--wt_project_description_fake_id' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--wt_reference_fake_id--group'><input placeholder='Who can provide references\/e-mail? *' aria-label='Who can provide references\/e-mail?' required aria-required='true' type='text' class='form-control' name='lidex[wt_reference][]' id='lidex--wt_reference_fake_id' value=''><\/div>     \n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/template>\n                    <\/div>\n                <\/div>\n\n                <div class=\"c-sec cr1-m1\">\n                    <h3 class=\"c-h\">\n                        Current interpreting experience (during the period of the last 3 years)                    <\/h3>\n\n                    <div id=\"repeated_fields_t_ustne\" class=\"form_repeated_fields\" data-fake-id=\"fake_id\">\n                    <template>\n                        <div class=\"row\">\n                            <div class=\"col-lg-3 col-md-4 col-sm-12 col-12\">\n                                <div class=\"count-wrap\">\n                                    <div class=\"repeater_counter\">1<\/div>\n                                    <div class=\"repeater_controls\">\n                                        <button type=\"button\" class=\"repeater_clone\" onclick=\"form_repeat_fields(this)\">Add item+<\/button>\n                                        <button type=\"button\" class=\"repeater_delete\" onclick=\"form_remove_fields(this)\">Delete item<i class=\"fas fa-trash-alt\"><\/i><\/button>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"col-lg-9 col-md-8 col-sm-12 col-12\">\n                                <div class=\"row\">\n                    \n<div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--i_from_t_to_t_fake_id--group'><input placeholder='Language combination *' aria-label='Language combination' required aria-required='true' type='text' class='form-control' name='lidex[i_from_t_to_t][]' id='lidex--i_from_t_to_t_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_number' id='lidex--i_number_of_pages_fake_id--group'><input placeholder='Number of hours *' aria-label='Number of hours' required aria-required='true' min='1' type='number' class='form-control' name='lidex[i_number_of_pages][]' id='lidex--i_number_of_pages_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--i_field_fake_id--group'><input placeholder='Subject area *' aria-label='Subject area' required aria-required='true' type='text' class='form-control' name='lidex[i_field][]' id='lidex--i_field_fake_id' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--i_project_description_fake_id--group'><input placeholder='Type of interpreting assignment *' aria-label='Type of interpreting assignment' required aria-required='true' type='text' class='form-control' name='lidex[i_project_description][]' id='lidex--i_project_description_fake_id' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--i_reference_fake_id--group'><input placeholder='Who can provide references\/e-mail? *' aria-label='Who can provide references\/e-mail?' required aria-required='true' type='text' class='form-control' name='lidex[i_reference][]' id='lidex--i_reference_fake_id' value=''><\/div>     \n                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/template>\n                    <\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Which translation companies\/agencies did you cooperate with or have you cooperated with and for how long?                    <\/h3>\n\n                    <div class=\"form_repeated_fields\" data-fake-id=\"fake_id\">\n                    <template>\n                        <div class=\"row\">\n                            <div class=\"col-lg-3 col-md-4 col-sm-12 col-12\">\n                                <div class=\"count-wrap\">\n                                    <div class=\"repeater_counter\">1<\/div>\n                                    <div class=\"repeater_controls\">\n                                        <button type=\"button\" class=\"repeater_clone\" onclick=\"form_repeat_fields(this)\">Add item+<\/button>\n                                        <button type=\"button\" class=\"repeater_delete\" onclick=\"form_remove_fields(this)\">Delete item<i class=\"fas fa-trash-alt\"><\/i><\/button>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"col-lg-9 col-md-8 col-sm-12 col-12\">\n                                <div class=\"row\">\n                    \n<div class='form-group col-lg-4 col-md-12 col-12 app_html_text' id='lidex--ta_company_name_fake_id--group'><input placeholder='Company name' aria-label='Company name' type='text' class='form-control' name='lidex[ta_company_name][]' id='lidex--ta_company_name_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_tel' id='lidex--ta_phone_number_fake_id--group'><input placeholder='Phone' aria-label='Phone' type='tel' class='form-control' name='lidex[ta_phone_number][]' id='lidex--ta_phone_number_fake_id' value=''><\/div><div class='form-group col-lg-4 col-md-12 col-12 app_html_email' id='lidex--ta_email_fake_id--group'><input placeholder='E-mail' aria-label='E-mail' type='email' class='form-control' name='lidex[ta_email][]' id='lidex--ta_email_fake_id' value=''><\/div><\/div><div class=\"row\">\n<div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--ta_who_can_confirm_fake_id--group'><input placeholder='Who can confirm cooperation' aria-label='Who can confirm cooperation' type='text' class='form-control' name='lidex[ta_who_can_confirm][]' id='lidex--ta_who_can_confirm_fake_id' value=''><\/div><div class='form-group col-lg-6 col-md-12 col-12 app_html_text' id='lidex--ta_how_long_worked_fake_id--group'><input placeholder='How long did the cooperation last?' aria-label='How long did the cooperation last?' type='text' class='form-control' name='lidex[ta_how_long_worked][]' id='lidex--ta_how_long_worked_fake_id' value=''><\/div>                                <\/div>\n                            <\/div>\n                        <\/div>\n                    <\/template>\n                    <\/div>\n                <\/div>\n\n                <div class=\"cr1-m2\">\n                    <div class=\"c-sec\">\n                        <h3 class=\"c-h\">\n                            Cooperation with interpreters during your interpreting assignments                        <\/h3>\n<div class='form-group col-12 app_html_textarea' id='lidex--cooperated_with--group'><textarea placeholder='Please provide information on interpreters with whom you had the opportunity to cooperate during your interpreting assignments.' aria-label='Please provide information on interpreters with whom you had the opportunity to cooperate during your interpreting assignments.' maxlength='1000' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[cooperated_with]' id='lidex--cooperated_with'><\/textarea><\/div>                    <\/div>\n\n                    <div class=\"c-sec\">\n                        <h3 class=\"c-h\">\n                            Performing interpreting services outside the place of permanent residence                        <\/h3>\n<div style=\"display: flex; justify-content: left;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--willing_to_work_outside--group'><input type='hidden' value='0' name='lidex[willing_to_work_outside]'><div class='form-check'><input placeholder='Willingness to perform interpreting services outside the place of permanent residence' aria-label='Willingness to perform interpreting services outside the place of permanent residence' class='cus-check' type='checkbox' value='1' name='lidex[willing_to_work_outside]' id='lidex--willing_to_work_outside'><label for='lidex--willing_to_work_outside' class='form-check-label'>Willingness to perform interpreting services outside the place of permanent residence<\/label><\/div><\/div>                            \n    <\/div>\n<\/div>\n<div class='form-group col-12 app_html_textarea' id='lidex--zasady_wspolpracy_wyjazdy--group'><textarea placeholder='Rules of cooperation on trips' aria-label='Rules of cooperation on trips' maxlength='1000' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[zasady_wspolpracy_wyjazdy]' id='lidex--zasady_wspolpracy_wyjazdy'><\/textarea><\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Membership in translators associations                    <\/h3>\n<div class='form-group col-12 app_html_textarea' id='lidex--membership_in_organizations--group'><textarea placeholder='Membership in translators associations' aria-label='Membership in translators associations' maxlength='1000' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[membership_in_organizations]' id='lidex--membership_in_organizations'><\/textarea><\/div>                <\/div>\n\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Are you a certified translator?                    <\/h3>\n<div style=\"display: flex; justify-content: left;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_q_sworn_translator--group'><input type='hidden' value='0' name='lidex[is_q_sworn_translator]'><div class='form-check'><input placeholder='Are you a certified translator?' aria-label='Are you a certified translator?' class='cus-check' type='checkbox' value='1' name='lidex[is_q_sworn_translator]' id='lidex--is_q_sworn_translator'><label for='lidex--is_q_sworn_translator' class='form-check-label'>Are you a certified translator?<\/label><\/div><\/div>                           \n<div class='form-group col-12 app_html_checkbox' id='lidex--is_es_sworn_translator--group'><input type='hidden' value='0' name='lidex[is_es_sworn_translator]'><div class='form-check'><input placeholder='Electronic signature for a certified translator' aria-label='Electronic signature for a certified translator' class='cus-check' type='checkbox' value='1' name='lidex[is_es_sworn_translator]' id='lidex--is_es_sworn_translator'><label for='lidex--is_es_sworn_translator' class='form-check-label'>Electronic signature for a certified translator<\/label><\/div><\/div>   \n    <\/div>\n  <\/div>\n<div class='form-group col-12 app_html_text' id='lidex--language_combination--group'><input placeholder='Language\/Language combination *' aria-label='Language\/Language combination' type='text' class='form-control' name='lidex[language_combination]' id='lidex--language_combination' value=''><\/div>                <\/div>\n\n                <div class=\"c-sec cr1-n2\">\n                    <h3 class=\"c-h\">\n                        Rates for translations                    <\/h3>\n<div id=\"stawki_pisemne\">\n                    <p class=\"text-right lb\">\n                        (Basic rate - PLN for 1 page (1800 characters))\n                    <\/p>\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb  text-right\">\n                                Translation into Polish                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--to_polish_rates--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[to_polish_rates]' id='lidex--to_polish_rates' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--to_polish_pages_per_day--group'><input placeholder='Number of pages per day' aria-label='Number of pages per day' min='1' max='10000' type='number' class='form-control' name='lidex[to_polish_pages_per_day]' id='lidex--to_polish_pages_per_day' value=''><\/div>                    <\/div>\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb  text-right\">\n                                Translation into a foreign language                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--to_other_rates--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[to_other_rates]' id='lidex--to_other_rates' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--to_other_pages_per_day--group'><input placeholder='Number of pages per day' aria-label='Number of pages per day' min='1' max='10000' type='number' class='form-control' name='lidex[to_other_pages_per_day]' id='lidex--to_other_pages_per_day' value=''><\/div>                    <\/div>\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb  text-right\">\n                                Translation from a foreign language into a foreign language                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--other_to_other_rates--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[other_to_other_rates]' id='lidex--other_to_other_rates' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--other_to_other_pages_per_day--group'><input placeholder='Number of pages per day' aria-label='Number of pages per day' min='1' max='10000' type='number' class='form-control' name='lidex[other_to_other_pages_per_day]' id='lidex--other_to_other_pages_per_day' value=''><\/div>                    <\/div>\n\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb  text-right\">\n                                Maximum number of pages per day                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-2 col-md-4 col-12 app_html_number' id='lidex--max_page_per_day--group'><input placeholder='Max per day' aria-label='Max per day' min='1' max='10000' type='number' class='form-control' name='lidex[max_page_per_day]' id='lidex--max_page_per_day' value=''><\/div><div class=\"col-lg-2 col-md-4 col-12\"><p class=\"text-center\">with an increase in the rate by<\/p><\/div>\n<div class='form-group col-lg-2 col-md-4 col-12 app_html_number' id='lidex--increase_rate_percent--group'><input placeholder='Increase %' aria-label='Increase %' min='0' type='number' class='form-control' name='lidex[increase_rate_percent]' id='lidex--increase_rate_percent' value=''><\/div>                    <\/div>\n  <\/div>\n                <\/div>\n\n                <div class=\"c-sec \">\n<div id=\"stawki_przysiegle\">\n                    <p class=\"text-right lb dis\">\n                        (Basic rate - PLN for 1 page (1125 characters))\n                    <\/p>\n                    <div class=\"row align-items-center b-mwrap2\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb dis text-right\">\n                                Certified translation into Polish                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--s_to_polish_rates--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[s_to_polish_rates]' id='lidex--s_to_polish_rates' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--s_to_polish_pages_per_day--group'><input placeholder='Number of pages per day' aria-label='Number of pages per day' min='1' max='10000' type='number' class='form-control' name='lidex[s_to_polish_pages_per_day]' id='lidex--s_to_polish_pages_per_day' value=''><\/div>                    <\/div>\n                    <div class=\"row align-items-center b-mwrap2\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb dis text-right\">\n                                Certified translation into a foreign language                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--s_to_other_rates--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[s_to_other_rates]' id='lidex--s_to_other_rates' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--s_to_other_pages_per_day--group'><input placeholder='Number of pages per day' aria-label='Number of pages per day' min='1' max='10000' type='number' class='form-control' name='lidex[s_to_other_pages_per_day]' id='lidex--s_to_other_pages_per_day' value=''><\/div>                    <\/div>\n  <\/div>\n  <div id=\"stawki_ustne\">\n                    <div class=\"row align-items-center cr1-nnn1\" style=\"margin-top: 50px\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb dis text-right\">\n                                Consecutive interpreting                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--consecutive_interpreting_rate_1hour--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[consecutive_interpreting_rate_1hour]' id='lidex--consecutive_interpreting_rate_1hour' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--consecutive_interpreting_rate_4hour--group'><input placeholder='Rate for a 4-hour block' aria-label='Rate for a 4-hour block' min='1' max='10000' type='number' class='form-control' name='lidex[consecutive_interpreting_rate_4hour]' id='lidex--consecutive_interpreting_rate_4hour' value=''><\/div>                    <\/div>\n                    <div class=\"row align-items-center cr1-nnn1\">\n                        <div class=\"col-lg-6 col-md-12\">\n                            <p class=\"lb dis text-right\">\n                                Simultaneous interpreting                            <\/p>\n                        <\/div>\n<div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--simultaneous_interpreting_rate_1hour--group'><input placeholder='Basic rate' aria-label='Basic rate' min='0' type='number' class='form-control' name='lidex[simultaneous_interpreting_rate_1hour]' id='lidex--simultaneous_interpreting_rate_1hour' value=''><\/div><div class='form-group col-lg-3 col-md-12 col-12 app_html_number' id='lidex--simultaneous_interpreting_rate_4hour--group'><input placeholder='Rate for a 4-hour block' aria-label='Rate for a 4-hour block' min='1' max='10000' type='number' class='form-control' name='lidex[simultaneous_interpreting_rate_4hour]' id='lidex--simultaneous_interpreting_rate_4hour' value=''><\/div>                    <\/div>\n  <\/div>\n                <\/div>\n\n                <div class=\"c-sec\" id=\"e-check-2\">\n                    <h3 class=\"c-h\">\n                        Disability degree certificate                    <\/h3>\n<div style=\"display: flex; justify-content: left;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_degree_of_disability--group'><input type='hidden' value='0' name='lidex[is_degree_of_disability]'><div class='form-check'><input placeholder='Disability degree certificate' aria-label='Disability degree certificate' class='cus-check' type='checkbox' value='1' name='lidex[is_degree_of_disability]' id='lidex--is_degree_of_disability'><label for='lidex--is_degree_of_disability' class='form-check-label'>Disability degree certificate<\/label><\/div><\/div>                            \n<\/div><\/div>\n<div class='form-group col-12 app_html_text' id='lidex--d_of_d_grade--group'><input placeholder='Please specify the degree *' aria-label='Please specify the degree' type='text' class='form-control' name='lidex[d_of_d_grade]' id='lidex--d_of_d_grade' value=''><\/div>                <\/div>\n\n                <div class=\"c-sec\" id=\"e-check-1\">\n                    <h3 class=\"c-h\">\n                        Post-editing of machine translation                    <\/h3>\n<div style=\"display: flex; justify-content: left;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_exp_post_machine_translation--group'><input type='hidden' value='0' name='lidex[is_exp_post_machine_translation]'><div class='form-check'><input placeholder='Experience\/training in the post-editing of machine translations' aria-label='Experience\/training in the post-editing of machine translations' class='cus-check' type='checkbox' value='1' name='lidex[is_exp_post_machine_translation]' id='lidex--is_exp_post_machine_translation'><label for='lidex--is_exp_post_machine_translation' class='form-check-label'>Experience\/training in the post-editing of machine translations<\/label><\/div><\/div><\/div><\/div>\n<div class='form-group col-12 app_html_text' id='lidex--exp_post_machine_translation_detail--group'><input placeholder='Please specify your experience\/training in the post-editing of machine translations *' aria-label='Please specify your experience\/training in the post-editing of machine translations' type='text' class='form-control' name='lidex[exp_post_machine_translation_detail]' id='lidex--exp_post_machine_translation_detail' value=''><\/div>                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Knowledge of translation assistance tool                    <\/h3>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_trados_studio--group'><input type='hidden' value='0' name='lidex[is_tool_trados_studio]'><div class='form-check'><input placeholder='Trados Studio' aria-label='Trados Studio' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_trados_studio]' id='lidex--is_tool_trados_studio'><label for='lidex--is_tool_trados_studio' class='form-check-label'>Trados Studio<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_trados_studio_version--group'><input placeholder='Trados Studio - version *' aria-label='Trados Studio - version' type='text' class='form-control' name='lidex[tool_trados_studio_version]' id='lidex--tool_trados_studio_version' value=''><\/div><div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_own_license_tool_trados_studio--group'><input type='hidden' value='0' name='lidex[is_own_license_tool_trados_studio]'><div class='form-check'><input placeholder='Own license' aria-label='Own license' class='cus-check' type='checkbox' value='1' name='lidex[is_own_license_tool_trados_studio]' id='lidex--is_own_license_tool_trados_studio'><label for='lidex--is_own_license_tool_trados_studio' class='form-check-label'>Own license<\/label><\/div><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_memoq--group'><input type='hidden' value='0' name='lidex[is_tool_memoq]'><div class='form-check'><input placeholder='MemoQ' aria-label='MemoQ' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_memoq]' id='lidex--is_tool_memoq'><label for='lidex--is_tool_memoq' class='form-check-label'>MemoQ<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_memoq_version--group'><input placeholder='MemoQ - version *' aria-label='MemoQ - version' type='text' class='form-control' name='lidex[tool_memoq_version]' id='lidex--tool_memoq_version' value=''><\/div><div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_own_license_tool_memoq--group'><input type='hidden' value='0' name='lidex[is_own_license_tool_memoq]'><div class='form-check'><input placeholder='Own license' aria-label='Own license' class='cus-check' type='checkbox' value='1' name='lidex[is_own_license_tool_memoq]' id='lidex--is_own_license_tool_memoq'><label for='lidex--is_own_license_tool_memoq' class='form-check-label'>Own license<\/label><\/div><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_other--group'><input type='hidden' value='0' name='lidex[is_tool_other]'><div class='form-check'><input placeholder='Other' aria-label='Other' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_other]' id='lidex--is_tool_other'><label for='lidex--is_tool_other' class='form-check-label'>Other<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_other_version--group'><input placeholder='Other - version *' aria-label='Other - version' type='text' class='form-control' name='lidex[tool_other_version]' id='lidex--tool_other_version' value=''><\/div><div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_own_license_tool_other--group'><input type='hidden' value='0' name='lidex[is_own_license_tool_other]'><div class='form-check'><input placeholder='Own license' aria-label='Own license' class='cus-check' type='checkbox' value='1' name='lidex[is_own_license_tool_other]' id='lidex--is_own_license_tool_other'><label for='lidex--is_own_license_tool_other' class='form-check-label'>Own license<\/label><\/div><\/div><\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Knowledge of word processors and office software                    <\/h3>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_ms_word--group'><input type='hidden' value='0' name='lidex[is_tool_ms_word]'><div class='form-check'><input placeholder='MS Word' aria-label='MS Word' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_ms_word]' id='lidex--is_tool_ms_word'><label for='lidex--is_tool_ms_word' class='form-check-label'>MS Word<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_ms_word_version--group'><input placeholder='MS Word - version *' aria-label='MS Word - version' type='text' class='form-control' name='lidex[tool_ms_word_version]' id='lidex--tool_ms_word_version' value=''><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_ms_excel--group'><input type='hidden' value='0' name='lidex[is_tool_ms_excel]'><div class='form-check'><input placeholder='MS Excel' aria-label='MS Excel' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_ms_excel]' id='lidex--is_tool_ms_excel'><label for='lidex--is_tool_ms_excel' class='form-check-label'>MS Excel<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_ms_excel_version--group'><input placeholder='MS Excel - version *' aria-label='MS Excel - version' type='text' class='form-control' name='lidex[tool_ms_excel_version]' id='lidex--tool_ms_excel_version' value=''><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_ms_access--group'><input type='hidden' value='0' name='lidex[is_tool_ms_access]'><div class='form-check'><input placeholder='MS Access' aria-label='MS Access' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_ms_access]' id='lidex--is_tool_ms_access'><label for='lidex--is_tool_ms_access' class='form-check-label'>MS Access<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_ms_access_version--group'><input placeholder='MS Access - version *' aria-label='MS Access - version' type='text' class='form-control' name='lidex[tool_ms_access_version]' id='lidex--tool_ms_access_version' value=''><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_ms_powerpoint--group'><input type='hidden' value='0' name='lidex[is_tool_ms_powerpoint]'><div class='form-check'><input placeholder='MS PowerPoint' aria-label='MS PowerPoint' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_ms_powerpoint]' id='lidex--is_tool_ms_powerpoint'><label for='lidex--is_tool_ms_powerpoint' class='form-check-label'>MS PowerPoint<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_ms_powerpoint_version--group'><input placeholder='MS PowerPoint - version *' aria-label='MS PowerPoint - version' type='text' class='form-control' name='lidex[tool_ms_powerpoint_version]' id='lidex--tool_ms_powerpoint_version' value=''><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_adobe_writer--group'><input type='hidden' value='0' name='lidex[is_tool_adobe_writer]'><div class='form-check'><input placeholder='Adobe Writer' aria-label='Adobe Writer' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_adobe_writer]' id='lidex--is_tool_adobe_writer'><label for='lidex--is_tool_adobe_writer' class='form-check-label'>Adobe Writer<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_adobe_writer_version--group'><input placeholder='Adobe Writer - version *' aria-label='Adobe Writer - version' type='text' class='form-control' name='lidex[tool_adobe_writer_version]' id='lidex--tool_adobe_writer_version' value=''><\/div><\/div>\n<div class=\"row\">\n<div class='form-group col-lg-4 col-12 app_html_checkbox' id='lidex--is_tool_other2--group'><input type='hidden' value='0' name='lidex[is_tool_other2]'><div class='form-check'><input placeholder='Other' aria-label='Other' class='cus-check' type='checkbox' value='1' name='lidex[is_tool_other2]' id='lidex--is_tool_other2'><label for='lidex--is_tool_other2' class='form-check-label'>Other<\/label><\/div><\/div><div class='form-group col-lg-4 col-12 app_html_text' id='lidex--tool_other2_version--group'><input placeholder='Other - version *' aria-label='Other - version' type='text' class='form-control' name='lidex[tool_other2_version]' id='lidex--tool_other2_version' value=''><\/div><\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Graphical skills\/DTP                    <\/h3>\n<div style=\"display: flex;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_graphic_skill_tabels--group'><input type='hidden' value='0' name='lidex[is_graphic_skill_tabels]'><div class='form-check'><input placeholder='Tables' aria-label='Tables' class='cus-check' type='checkbox' value='1' name='lidex[is_graphic_skill_tabels]' id='lidex--is_graphic_skill_tabels'><label for='lidex--is_graphic_skill_tabels' class='form-check-label'>Tables<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_graphic_skill_charts--group'><input type='hidden' value='0' name='lidex[is_graphic_skill_charts]'><div class='form-check'><input placeholder='Diagrams' aria-label='Diagrams' class='cus-check' type='checkbox' value='1' name='lidex[is_graphic_skill_charts]' id='lidex--is_graphic_skill_charts'><label for='lidex--is_graphic_skill_charts' class='form-check-label'>Diagrams<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_graphic_skill_schemes--group'><input type='hidden' value='0' name='lidex[is_graphic_skill_schemes]'><div class='form-check'><input placeholder='Schemata' aria-label='Schemata' class='cus-check' type='checkbox' value='1' name='lidex[is_graphic_skill_schemes]' id='lidex--is_graphic_skill_schemes'><label for='lidex--is_graphic_skill_schemes' class='form-check-label'>Schemata<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_graphic_skill_dtp--group'><input type='hidden' value='0' name='lidex[is_graphic_skill_dtp]'><div class='form-check'><input placeholder='Desktop publishing (DTP)' aria-label='Desktop publishing (DTP)' class='cus-check' type='checkbox' value='1' name='lidex[is_graphic_skill_dtp]' id='lidex--is_graphic_skill_dtp'><label for='lidex--is_graphic_skill_dtp' class='form-check-label'>Desktop publishing (DTP)<\/label><\/div><\/div>  <\/div><\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Audiovisual translation                    <\/h3>\n<div style=\"display: flex;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_av_translation_dt--group'><input type='hidden' value='0' name='lidex[is_av_translation_dt]'><div class='form-check'><input placeholder='Translation from a dialogue list' aria-label='Translation from a dialogue list' class='cus-check' type='checkbox' value='1' name='lidex[is_av_translation_dt]' id='lidex--is_av_translation_dt'><label for='lidex--is_av_translation_dt' class='form-check-label'>Translation from a dialogue list<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_av_translation_lt--group'><input type='hidden' value='0' name='lidex[is_av_translation_lt]'><div class='form-check'><input placeholder='Translation from audio files' aria-label='Translation from audio files' class='cus-check' type='checkbox' value='1' name='lidex[is_av_translation_lt]' id='lidex--is_av_translation_lt'><label for='lidex--is_av_translation_lt' class='form-check-label'>Translation from audio files<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_av_translation_st--group'><input type='hidden' value='0' name='lidex[is_av_translation_st]'><div class='form-check'><input placeholder='Subtitle translation (*srt, *stl)' aria-label='Subtitle translation (srt, stl)' class='cus-check' type='checkbox' value='1' name='lidex[is_av_translation_st]' id='lidex--is_av_translation_st'><label for='lidex--is_av_translation_st' class='form-check-label'>Subtitle translation (*srt, *stl)<\/label><\/div><\/div><div class='form-group col-12 app_html_checkbox' id='lidex--is_av_translation_tfs--group'><input type='hidden' value='0' name='lidex[is_av_translation_tfs]'><div class='form-check'><input placeholder='Subtitle translation (Word, with time-codes)' aria-label='Subtitle translation (Word, with time-codes)' class='cus-check' type='checkbox' value='1' name='lidex[is_av_translation_tfs]' id='lidex--is_av_translation_tfs'><label for='lidex--is_av_translation_tfs' class='form-check-label'>Subtitle translation (Word, with time-codes)<\/label><\/div><\/div>  <\/div><\/div>\n                <\/div>\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Translation from formats                    <\/h3>\n<div style=\"display: flex;\">\n    <div>\n<div class='form-group col-12 app_html_checkbox' id='lidex--is_translation_from_formats--group'><input type='hidden' value='0' name='lidex[is_translation_from_formats]'><div class='form-check'><input placeholder='MP3, AVI, MP4, MPEG, MOV, WMV' aria-label='MP3, AVI, MP4, MPEG, MOV, WMV' class='cus-check' type='checkbox' value='1' name='lidex[is_translation_from_formats]' id='lidex--is_translation_from_formats'><label for='lidex--is_translation_from_formats' class='form-check-label'>MP3, AVI, MP4, MPEG, MOV, WMV<\/label><\/div><\/div><\/div><\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Certificates \/ accreditations                    <\/h3>\n\n<div style=\"display: flex;\">\n    <div>\n<div class=\"row\">\n    <div class=\"col-lg-8 col-12\">\n        ABW (Polish Internal Security Agency) security clearance    <\/div>\n<div class='form-group col-lg-4 col-12 app_html_date' id='lidex--certificates_isa_expiry--group'><input placeholder='Valid until' type='text' class='form-control' name='lidex[certificates_isa_expiry]' id='lidex--certificates_isa_expiry' value='' onfocus='this.type=&#039;date&#039;' onblur='!navigator.userAgent.includes(&#039;Firefox&#039;) ? (this.value == &#039;&#039; ? this.type=&#039;text&#039; : this.type=&#039;date&#039;) : this.type=&#039;date&#039;'><\/div><\/div>\n<div class=\"row\">\n    <div class=\"col-lg-8 col-12\">\n        NATO security clearance    <\/div>\n<div class='form-group col-lg-4 col-12 app_html_date' id='lidex--certificates_nato_expiry--group'><input placeholder='Valid until' type='text' class='form-control' name='lidex[certificates_nato_expiry]' id='lidex--certificates_nato_expiry' value='' onfocus='this.type=&#039;date&#039;' onblur='!navigator.userAgent.includes(&#039;Firefox&#039;) ? (this.value == &#039;&#039; ? this.type=&#039;text&#039; : this.type=&#039;date&#039;) : this.type=&#039;date&#039;'><\/div><\/div>\n<div class=\"row\">\n    <div class=\"col-lg-8 col-12\">\n        EU security clearance    <\/div>\n<div class='form-group col-lg-4 col-12 app_html_date' id='lidex--certificates_eu_expiry--group'><input placeholder='Valid until' type='text' class='form-control' name='lidex[certificates_eu_expiry]' id='lidex--certificates_eu_expiry' value='' onfocus='this.type=&#039;date&#039;' onblur='!navigator.userAgent.includes(&#039;Firefox&#039;) ? (this.value == &#039;&#039; ? this.type=&#039;text&#039; : this.type=&#039;date&#039;) : this.type=&#039;date&#039;'><\/div><\/div>\n<div class=\"row\">\n    <div class=\"col-lg-8 col-12\">\n        EU accreditation    <\/div>\n<div class='form-group col-lg-4 col-12 app_html_date' id='lidex--certificates_eu_accr_expiry--group'><input placeholder='Valid until' type='text' class='form-control' name='lidex[certificates_eu_accr_expiry]' id='lidex--certificates_eu_accr_expiry' value='' onfocus='this.type=&#039;date&#039;' onblur='!navigator.userAgent.includes(&#039;Firefox&#039;) ? (this.value == &#039;&#039; ? this.type=&#039;text&#039; : this.type=&#039;date&#039;) : this.type=&#039;date&#039;'><\/div><\/div>\n<\/div><\/div>\n                <\/div>\n\n                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Preferred subject areas for translation\/interpreting                    <\/h3>\n        <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_11--group'><input type='hidden' value='0' name='lidex[domain_11]'><div class='form-check'><input value='11' onclick='document.getElementById(&#039;subdomains_of_11&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_11]' id='lidex--domain_11'><label for='lidex--domain_11' class='form-check-label'>Construction<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_11\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_12--group'><input type='hidden' value='0' name='lidex[domain_12]'><div class='form-check'><input value='12' type='checkbox' class='form-check-input' name='lidex[domain_12]' id='lidex--domain_12'><label for='lidex--domain_12' class='form-check-label'>Architecture<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_150--group'><input type='hidden' value='0' name='lidex[domain_150]'><div class='form-check'><input value='150' type='checkbox' class='form-check-input' name='lidex[domain_150]' id='lidex--domain_150'><label for='lidex--domain_150' class='form-check-label'>Civil engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_151--group'><input type='hidden' value='0' name='lidex[domain_151]'><div class='form-check'><input value='151' type='checkbox' class='form-check-input' name='lidex[domain_151]' id='lidex--domain_151'><label for='lidex--domain_151' class='form-check-label'>Water engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_14--group'><input type='hidden' value='0' name='lidex[domain_14]'><div class='form-check'><input value='14' type='checkbox' class='form-check-input' name='lidex[domain_14]' id='lidex--domain_14'><label for='lidex--domain_14' class='form-check-label'>Geodesy <\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_21--group'><input type='hidden' value='0' name='lidex[domain_21]'><div class='form-check'><input value='21' onclick='document.getElementById(&#039;subdomains_of_21&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_21]' id='lidex--domain_21'><label for='lidex--domain_21' class='form-check-label'>Education<\/label><\/div><\/div>            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_71--group'><input type='hidden' value='0' name='lidex[domain_71]'><div class='form-check'><input value='71' onclick='document.getElementById(&#039;subdomains_of_71&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_71]' id='lidex--domain_71'><label for='lidex--domain_71' class='form-check-label'>Medicine<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_71\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_72--group'><input type='hidden' value='0' name='lidex[domain_72]'><div class='form-check'><input value='72' type='checkbox' class='form-check-input' name='lidex[domain_72]' id='lidex--domain_72'><label for='lidex--domain_72' class='form-check-label'>Allergology <\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_73--group'><input type='hidden' value='0' name='lidex[domain_73]'><div class='form-check'><input value='73' type='checkbox' class='form-check-input' name='lidex[domain_73]' id='lidex--domain_73'><label for='lidex--domain_73' class='form-check-label'>Medical equipment<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_75--group'><input type='hidden' value='0' name='lidex[domain_75]'><div class='form-check'><input value='75' type='checkbox' class='form-check-input' name='lidex[domain_75]' id='lidex--domain_75'><label for='lidex--domain_75' class='form-check-label'>Biotechnology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_77--group'><input type='hidden' value='0' name='lidex[domain_77]'><div class='form-check'><input value='77' type='checkbox' class='form-check-input' name='lidex[domain_77]' id='lidex--domain_77'><label for='lidex--domain_77' class='form-check-label'>Surgery<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_78--group'><input type='hidden' value='0' name='lidex[domain_78]'><div class='form-check'><input value='78' type='checkbox' class='form-check-input' name='lidex[domain_78]' id='lidex--domain_78'><label for='lidex--domain_78' class='form-check-label'>Dermatology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_79--group'><input type='hidden' value='0' name='lidex[domain_79]'><div class='form-check'><input value='79' type='checkbox' class='form-check-input' name='lidex[domain_79]' id='lidex--domain_79'><label for='lidex--domain_79' class='form-check-label'>Endocrinology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_80--group'><input type='hidden' value='0' name='lidex[domain_80]'><div class='form-check'><input value='80' type='checkbox' class='form-check-input' name='lidex[domain_80]' id='lidex--domain_80'><label for='lidex--domain_80' class='form-check-label'>Pharmacology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_81--group'><input type='hidden' value='0' name='lidex[domain_81]'><div class='form-check'><input value='81' type='checkbox' class='form-check-input' name='lidex[domain_81]' id='lidex--domain_81'><label for='lidex--domain_81' class='form-check-label'>Gastroenterology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_82--group'><input type='hidden' value='0' name='lidex[domain_82]'><div class='form-check'><input value='82' type='checkbox' class='form-check-input' name='lidex[domain_82]' id='lidex--domain_82'><label for='lidex--domain_82' class='form-check-label'>Genetics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_149--group'><input type='hidden' value='0' name='lidex[domain_149]'><div class='form-check'><input value='149' type='checkbox' class='form-check-input' name='lidex[domain_149]' id='lidex--domain_149'><label for='lidex--domain_149' class='form-check-label'>Gynecology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_83--group'><input type='hidden' value='0' name='lidex[domain_83]'><div class='form-check'><input value='83' type='checkbox' class='form-check-input' name='lidex[domain_83]' id='lidex--domain_83'><label for='lidex--domain_83' class='form-check-label'>Internal medicine and pediatrics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_84--group'><input type='hidden' value='0' name='lidex[domain_84]'><div class='form-check'><input value='84' type='checkbox' class='form-check-input' name='lidex[domain_84]' id='lidex--domain_84'><label for='lidex--domain_84' class='form-check-label'>Laryngology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_85--group'><input type='hidden' value='0' name='lidex[domain_85]'><div class='form-check'><input value='85' type='checkbox' class='form-check-input' name='lidex[domain_85]' id='lidex--domain_85'><label for='lidex--domain_85' class='form-check-label'>Natural medicine<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_87--group'><input type='hidden' value='0' name='lidex[domain_87]'><div class='form-check'><input value='87' type='checkbox' class='form-check-input' name='lidex[domain_87]' id='lidex--domain_87'><label for='lidex--domain_87' class='form-check-label'>Rehabilitation<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_88--group'><input type='hidden' value='0' name='lidex[domain_88]'><div class='form-check'><input value='88' type='checkbox' class='form-check-input' name='lidex[domain_88]' id='lidex--domain_88'><label for='lidex--domain_88' class='form-check-label'>Dentistry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_89--group'><input type='hidden' value='0' name='lidex[domain_89]'><div class='form-check'><input value='89' type='checkbox' class='form-check-input' name='lidex[domain_89]' id='lidex--domain_89'><label for='lidex--domain_89' class='form-check-label'>Veterinary science<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_24--group'><input type='hidden' value='0' name='lidex[domain_24]'><div class='form-check'><input value='24' onclick='document.getElementById(&#039;subdomains_of_24&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_24]' id='lidex--domain_24'><label for='lidex--domain_24' class='form-check-label'>Economy and Banking<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_24\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_41--group'><input type='hidden' value='0' name='lidex[domain_41]'><div class='form-check'><input value='41' type='checkbox' class='form-check-input' name='lidex[domain_41]' id='lidex--domain_41'><label for='lidex--domain_41' class='form-check-label'>Auditing<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_25--group'><input type='hidden' value='0' name='lidex[domain_25]'><div class='form-check'><input value='25' type='checkbox' class='form-check-input' name='lidex[domain_25]' id='lidex--domain_25'><label for='lidex--domain_25' class='form-check-label'>Banking<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_26--group'><input type='hidden' value='0' name='lidex[domain_26]'><div class='form-check'><input value='26' type='checkbox' class='form-check-input' name='lidex[domain_26]' id='lidex--domain_26'><label for='lidex--domain_26' class='form-check-label'>Consulting<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_27--group'><input type='hidden' value='0' name='lidex[domain_27]'><div class='form-check'><input value='27' type='checkbox' class='form-check-input' name='lidex[domain_27]' id='lidex--domain_27'><label for='lidex--domain_27' class='form-check-label'>Economy<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_28--group'><input type='hidden' value='0' name='lidex[domain_28]'><div class='form-check'><input value='28' type='checkbox' class='form-check-input' name='lidex[domain_28]' id='lidex--domain_28'><label for='lidex--domain_28' class='form-check-label'>Finance<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_29--group'><input type='hidden' value='0' name='lidex[domain_29]'><div class='form-check'><input value='29' type='checkbox' class='form-check-input' name='lidex[domain_29]' id='lidex--domain_29'><label for='lidex--domain_29' class='form-check-label'>Stock exchange<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_152--group'><input type='hidden' value='0' name='lidex[domain_152]'><div class='form-check'><input value='152' type='checkbox' class='form-check-input' name='lidex[domain_152]' id='lidex--domain_152'><label for='lidex--domain_152' class='form-check-label'>HR<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_31--group'><input type='hidden' value='0' name='lidex[domain_31]'><div class='form-check'><input value='31' type='checkbox' class='form-check-input' name='lidex[domain_31]' id='lidex--domain_31'><label for='lidex--domain_31' class='form-check-label'>Real estate trade<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_30--group'><input type='hidden' value='0' name='lidex[domain_30]'><div class='form-check'><input value='30' type='checkbox' class='form-check-input' name='lidex[domain_30]' id='lidex--domain_30'><label for='lidex--domain_30' class='form-check-label'>Foreign trade<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_33--group'><input type='hidden' value='0' name='lidex[domain_33]'><div class='form-check'><input value='33' type='checkbox' class='form-check-input' name='lidex[domain_33]' id='lidex--domain_33'><label for='lidex--domain_33' class='form-check-label'>Accounting<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_37--group'><input type='hidden' value='0' name='lidex[domain_37]'><div class='form-check'><input value='37' type='checkbox' class='form-check-input' name='lidex[domain_37]' id='lidex--domain_37'><label for='lidex--domain_37' class='form-check-label'>Logistics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_34--group'><input type='hidden' value='0' name='lidex[domain_34]'><div class='form-check'><input value='34' type='checkbox' class='form-check-input' name='lidex[domain_34]' id='lidex--domain_34'><label for='lidex--domain_34' class='form-check-label'>Taxes<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_38--group'><input type='hidden' value='0' name='lidex[domain_38]'><div class='form-check'><input value='38' type='checkbox' class='form-check-input' name='lidex[domain_38]' id='lidex--domain_38'><label for='lidex--domain_38' class='form-check-label'>Forwarding<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_36--group'><input type='hidden' value='0' name='lidex[domain_36]'><div class='form-check'><input value='36' type='checkbox' class='form-check-input' name='lidex[domain_36]' id='lidex--domain_36'><label for='lidex--domain_36' class='form-check-label'>Management<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_67--group'><input type='hidden' value='0' name='lidex[domain_67]'><div class='form-check'><input value='67' onclick='document.getElementById(&#039;subdomains_of_67&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_67]' id='lidex--domain_67'><label for='lidex--domain_67' class='form-check-label'>Marketing and Advertising<\/label><\/div><\/div>            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_42--group'><input type='hidden' value='0' name='lidex[domain_42]'><div class='form-check'><input value='42' onclick='document.getElementById(&#039;subdomains_of_42&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_42]' id='lidex--domain_42'><label for='lidex--domain_42' class='form-check-label'>History and Politics<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_42\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_47--group'><input type='hidden' value='0' name='lidex[domain_47]'><div class='form-check'><input value='47' type='checkbox' class='form-check-input' name='lidex[domain_47]' id='lidex--domain_47'><label for='lidex--domain_47' class='form-check-label'>Journalism<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_44--group'><input type='hidden' value='0' name='lidex[domain_44]'><div class='form-check'><input value='44' type='checkbox' class='form-check-input' name='lidex[domain_44]' id='lidex--domain_44'><label for='lidex--domain_44' class='form-check-label'>History<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_46--group'><input type='hidden' value='0' name='lidex[domain_46]'><div class='form-check'><input value='46' type='checkbox' class='form-check-input' name='lidex[domain_46]' id='lidex--domain_46'><label for='lidex--domain_46' class='form-check-label'>Politics<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_48--group'><input type='hidden' value='0' name='lidex[domain_48]'><div class='form-check'><input value='48' onclick='document.getElementById(&#039;subdomains_of_48&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_48]' id='lidex--domain_48'><label for='lidex--domain_48' class='form-check-label'>IT, Internet and Telecommunications<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_48\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_49--group'><input type='hidden' value='0' name='lidex[domain_49]'><div class='form-check'><input value='49' type='checkbox' class='form-check-input' name='lidex[domain_49]' id='lidex--domain_49'><label for='lidex--domain_49' class='form-check-label'>Information Technology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_50--group'><input type='hidden' value='0' name='lidex[domain_50]'><div class='form-check'><input value='50' type='checkbox' class='form-check-input' name='lidex[domain_50]' id='lidex--domain_50'><label for='lidex--domain_50' class='form-check-label'>Internet<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_51--group'><input type='hidden' value='0' name='lidex[domain_51]'><div class='form-check'><input value='51' type='checkbox' class='form-check-input' name='lidex[domain_51]' id='lidex--domain_51'><label for='lidex--domain_51' class='form-check-label'>Software localisation<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_52--group'><input type='hidden' value='0' name='lidex[domain_52]'><div class='form-check'><input value='52' type='checkbox' class='form-check-input' name='lidex[domain_52]' id='lidex--domain_52'><label for='lidex--domain_52' class='form-check-label'>Localisation of websites<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_55--group'><input type='hidden' value='0' name='lidex[domain_55]'><div class='form-check'><input value='55' type='checkbox' class='form-check-input' name='lidex[domain_55]' id='lidex--domain_55'><label for='lidex--domain_55' class='form-check-label'>Telecommunications<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_56--group'><input type='hidden' value='0' name='lidex[domain_56]'><div class='form-check'><input value='56' onclick='document.getElementById(&#039;subdomains_of_56&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_56]' id='lidex--domain_56'><label for='lidex--domain_56' class='form-check-label'>Cosmetics<\/label><\/div><\/div>            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_59--group'><input type='hidden' value='0' name='lidex[domain_59]'><div class='form-check'><input value='59' onclick='document.getElementById(&#039;subdomains_of_59&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_59]' id='lidex--domain_59'><label for='lidex--domain_59' class='form-check-label'>Culture and Arts<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_59\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_64--group'><input type='hidden' value='0' name='lidex[domain_64]'><div class='form-check'><input value='64' type='checkbox' class='form-check-input' name='lidex[domain_64]' id='lidex--domain_64'><label for='lidex--domain_64' class='form-check-label'>Philosophy<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_60--group'><input type='hidden' value='0' name='lidex[domain_60]'><div class='form-check'><input value='60' type='checkbox' class='form-check-input' name='lidex[domain_60]' id='lidex--domain_60'><label for='lidex--domain_60' class='form-check-label'>History of art<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_66--group'><input type='hidden' value='0' name='lidex[domain_66]'><div class='form-check'><input value='66' type='checkbox' class='form-check-input' name='lidex[domain_66]' id='lidex--domain_66'><label for='lidex--domain_66' class='form-check-label'>Language studies<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_61--group'><input type='hidden' value='0' name='lidex[domain_61]'><div class='form-check'><input value='61' type='checkbox' class='form-check-input' name='lidex[domain_61]' id='lidex--domain_61'><label for='lidex--domain_61' class='form-check-label'>Literature<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_62--group'><input type='hidden' value='0' name='lidex[domain_62]'><div class='form-check'><input value='62' type='checkbox' class='form-check-input' name='lidex[domain_62]' id='lidex--domain_62'><label for='lidex--domain_62' class='form-check-label'>Painting and sculpture<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_153--group'><input type='hidden' value='0' name='lidex[domain_153]'><div class='form-check'><input value='153' type='checkbox' class='form-check-input' name='lidex[domain_153]' id='lidex--domain_153'><label for='lidex--domain_153' class='form-check-label'>Music<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_65--group'><input type='hidden' value='0' name='lidex[domain_65]'><div class='form-check'><input value='65' type='checkbox' class='form-check-input' name='lidex[domain_65]' id='lidex--domain_65'><label for='lidex--domain_65' class='form-check-label'>Religious studies<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_63--group'><input type='hidden' value='0' name='lidex[domain_63]'><div class='form-check'><input value='63' type='checkbox' class='form-check-input' name='lidex[domain_63]' id='lidex--domain_63'><label for='lidex--domain_63' class='form-check-label'>Theatre and film<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_97--group'><input type='hidden' value='0' name='lidex[domain_97]'><div class='form-check'><input value='97' onclick='document.getElementById(&#039;subdomains_of_97&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_97]' id='lidex--domain_97'><label for='lidex--domain_97' class='form-check-label'>Law<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_97\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_99--group'><input type='hidden' value='0' name='lidex[domain_99]'><div class='form-check'><input value='99' type='checkbox' class='form-check-input' name='lidex[domain_99]' id='lidex--domain_99'><label for='lidex--domain_99' class='form-check-label'>Copyright law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_100--group'><input type='hidden' value='0' name='lidex[domain_100]'><div class='form-check'><input value='100' type='checkbox' class='form-check-input' name='lidex[domain_100]' id='lidex--domain_100'><label for='lidex--domain_100' class='form-check-label'>Civil law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_107--group'><input type='hidden' value='0' name='lidex[domain_107]'><div class='form-check'><input value='107' type='checkbox' class='form-check-input' name='lidex[domain_107]' id='lidex--domain_107'><label for='lidex--domain_107' class='form-check-label'>Official journals<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_101--group'><input type='hidden' value='0' name='lidex[domain_101]'><div class='form-check'><input value='101' type='checkbox' class='form-check-input' name='lidex[domain_101]' id='lidex--domain_101'><label for='lidex--domain_101' class='form-check-label'>Criminal law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_102--group'><input type='hidden' value='0' name='lidex[domain_102]'><div class='form-check'><input value='102' type='checkbox' class='form-check-input' name='lidex[domain_102]' id='lidex--domain_102'><label for='lidex--domain_102' class='form-check-label'>Constitutional law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_103--group'><input type='hidden' value='0' name='lidex[domain_103]'><div class='form-check'><input value='103' type='checkbox' class='form-check-input' name='lidex[domain_103]' id='lidex--domain_103'><label for='lidex--domain_103' class='form-check-label'>International law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_109--group'><input type='hidden' value='0' name='lidex[domain_109]'><div class='form-check'><input value='109' type='checkbox' class='form-check-input' name='lidex[domain_109]' id='lidex--domain_109'><label for='lidex--domain_109' class='form-check-label'>Tender documentation<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_104--group'><input type='hidden' value='0' name='lidex[domain_104]'><div class='form-check'><input value='104' type='checkbox' class='form-check-input' name='lidex[domain_104]' id='lidex--domain_104'><label for='lidex--domain_104' class='form-check-label'>Patent law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_105--group'><input type='hidden' value='0' name='lidex[domain_105]'><div class='form-check'><input value='105' type='checkbox' class='form-check-input' name='lidex[domain_105]' id='lidex--domain_105'><label for='lidex--domain_105' class='form-check-label'>Labour law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_106--group'><input type='hidden' value='0' name='lidex[domain_106]'><div class='form-check'><input value='106' type='checkbox' class='form-check-input' name='lidex[domain_106]' id='lidex--domain_106'><label for='lidex--domain_106' class='form-check-label'>Company law<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_39--group'><input type='hidden' value='0' name='lidex[domain_39]'><div class='form-check'><input value='39' type='checkbox' class='form-check-input' name='lidex[domain_39]' id='lidex--domain_39'><label for='lidex--domain_39' class='form-check-label'>Insurance<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_40--group'><input type='hidden' value='0' name='lidex[domain_40]'><div class='form-check'><input value='40' type='checkbox' class='form-check-input' name='lidex[domain_40]' id='lidex--domain_40'><label for='lidex--domain_40' class='form-check-label'>Insurance - pension funds<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_108--group'><input type='hidden' value='0' name='lidex[domain_108]'><div class='form-check'><input value='108' type='checkbox' class='form-check-input' name='lidex[domain_108]' id='lidex--domain_108'><label for='lidex--domain_108' class='form-check-label'>Contracts<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_142--group'><input type='hidden' value='0' name='lidex[domain_142]'><div class='form-check'><input value='142' onclick='document.getElementById(&#039;subdomains_of_142&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_142]' id='lidex--domain_142'><label for='lidex--domain_142' class='form-check-label'>European Union<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_142\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_143--group'><input type='hidden' value='0' name='lidex[domain_143]'><div class='form-check'><input value='143' type='checkbox' class='form-check-input' name='lidex[domain_143]' id='lidex--domain_143'><label for='lidex--domain_143' class='form-check-label'>Directives<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_144--group'><input type='hidden' value='0' name='lidex[domain_144]'><div class='form-check'><input value='144' type='checkbox' class='form-check-input' name='lidex[domain_144]' id='lidex--domain_144'><label for='lidex--domain_144' class='form-check-label'>Information and descriptions<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_1--group'><input type='hidden' value='0' name='lidex[domain_1]'><div class='form-check'><input value='1' onclick='document.getElementById(&#039;subdomains_of_1&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_1]' id='lidex--domain_1'><label for='lidex--domain_1' class='form-check-label'>Security and National Defence<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_1\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_3--group'><input type='hidden' value='0' name='lidex[domain_3]'><div class='form-check'><input value='3' type='checkbox' class='form-check-input' name='lidex[domain_3]' id='lidex--domain_3'><label for='lidex--domain_3' class='form-check-label'>The Police<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_7--group'><input type='hidden' value='0' name='lidex[domain_7]'><div class='form-check'><input value='7' type='checkbox' class='form-check-input' name='lidex[domain_7]' id='lidex--domain_7'><label for='lidex--domain_7' class='form-check-label'>The Fire Service<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_9--group'><input type='hidden' value='0' name='lidex[domain_9]'><div class='form-check'><input value='9' type='checkbox' class='form-check-input' name='lidex[domain_9]' id='lidex--domain_9'><label for='lidex--domain_9' class='form-check-label'>The Military<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_110--group'><input type='hidden' value='0' name='lidex[domain_110]'><div class='form-check'><input value='110' onclick='document.getElementById(&#039;subdomains_of_110&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_110]' id='lidex--domain_110'><label for='lidex--domain_110' class='form-check-label'>Industry and technology<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_110\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_111--group'><input type='hidden' value='0' name='lidex[domain_111]'><div class='form-check'><input value='111' type='checkbox' class='form-check-input' name='lidex[domain_111]' id='lidex--domain_111'><label for='lidex--domain_111' class='form-check-label'>Acoustics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_112--group'><input type='hidden' value='0' name='lidex[domain_112]'><div class='form-check'><input value='112' type='checkbox' class='form-check-input' name='lidex[domain_112]' id='lidex--domain_112'><label for='lidex--domain_112' class='form-check-label'>Automatics and robotics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_141--group'><input type='hidden' value='0' name='lidex[domain_141]'><div class='form-check'><input value='141' type='checkbox' class='form-check-input' name='lidex[domain_141]' id='lidex--domain_141'><label for='lidex--domain_141' class='form-check-label'>Health and safety<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_113--group'><input type='hidden' value='0' name='lidex[domain_113]'><div class='form-check'><input value='113' type='checkbox' class='form-check-input' name='lidex[domain_113]' id='lidex--domain_113'><label for='lidex--domain_113' class='form-check-label'>Heat engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_114--group'><input type='hidden' value='0' name='lidex[domain_114]'><div class='form-check'><input value='114' type='checkbox' class='form-check-input' name='lidex[domain_114]' id='lidex--domain_114'><label for='lidex--domain_114' class='form-check-label'>Electronics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_115--group'><input type='hidden' value='0' name='lidex[domain_115]'><div class='form-check'><input value='115' type='checkbox' class='form-check-input' name='lidex[domain_115]' id='lidex--domain_115'><label for='lidex--domain_115' class='form-check-label'>Energy industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_116--group'><input type='hidden' value='0' name='lidex[domain_116]'><div class='form-check'><input value='116' type='checkbox' class='form-check-input' name='lidex[domain_116]' id='lidex--domain_116'><label for='lidex--domain_116' class='form-check-label'>Mining industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_117--group'><input type='hidden' value='0' name='lidex[domain_117]'><div class='form-check'><input value='117' type='checkbox' class='form-check-input' name='lidex[domain_117]' id='lidex--domain_117'><label for='lidex--domain_117' class='form-check-label'>Iron and steel industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_118--group'><input type='hidden' value='0' name='lidex[domain_118]'><div class='form-check'><input value='118' type='checkbox' class='form-check-input' name='lidex[domain_118]' id='lidex--domain_118'><label for='lidex--domain_118' class='form-check-label'>Chemical engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_119--group'><input type='hidden' value='0' name='lidex[domain_119]'><div class='form-check'><input value='119' type='checkbox' class='form-check-input' name='lidex[domain_119]' id='lidex--domain_119'><label for='lidex--domain_119' class='form-check-label'>Civil engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_120--group'><input type='hidden' value='0' name='lidex[domain_120]'><div class='form-check'><input value='120' type='checkbox' class='form-check-input' name='lidex[domain_120]' id='lidex--domain_120'><label for='lidex--domain_120' class='form-check-label'>Manufacturing engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_121--group'><input type='hidden' value='0' name='lidex[domain_121]'><div class='form-check'><input value='121' type='checkbox' class='form-check-input' name='lidex[domain_121]' id='lidex--domain_121'><label for='lidex--domain_121' class='form-check-label'>Sanitary engineering<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_122--group'><input type='hidden' value='0' name='lidex[domain_122]'><div class='form-check'><input value='122' type='checkbox' class='form-check-input' name='lidex[domain_122]' id='lidex--domain_122'><label for='lidex--domain_122' class='form-check-label'>Railroad industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_123--group'><input type='hidden' value='0' name='lidex[domain_123]'><div class='form-check'><input value='123' type='checkbox' class='form-check-input' name='lidex[domain_123]' id='lidex--domain_123'><label for='lidex--domain_123' class='form-check-label'>Forestry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_124--group'><input type='hidden' value='0' name='lidex[domain_124]'><div class='form-check'><input value='124' type='checkbox' class='form-check-input' name='lidex[domain_124]' id='lidex--domain_124'><label for='lidex--domain_124' class='form-check-label'>Aviation<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_125--group'><input type='hidden' value='0' name='lidex[domain_125]'><div class='form-check'><input value='125' type='checkbox' class='form-check-input' name='lidex[domain_125]' id='lidex--domain_125'><label for='lidex--domain_125' class='form-check-label'>Mechanics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_126--group'><input type='hidden' value='0' name='lidex[domain_126]'><div class='form-check'><input value='126' type='checkbox' class='form-check-input' name='lidex[domain_126]' id='lidex--domain_126'><label for='lidex--domain_126' class='form-check-label'>Precision mechanics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_127--group'><input type='hidden' value='0' name='lidex[domain_127]'><div class='form-check'><input value='127' type='checkbox' class='form-check-input' name='lidex[domain_127]' id='lidex--domain_127'><label for='lidex--domain_127' class='form-check-label'>Metallurgy<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_128--group'><input type='hidden' value='0' name='lidex[domain_128]'><div class='form-check'><input value='128' type='checkbox' class='form-check-input' name='lidex[domain_128]' id='lidex--domain_128'><label for='lidex--domain_128' class='form-check-label'>Automotive industry - technology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_129--group'><input type='hidden' value='0' name='lidex[domain_129]'><div class='form-check'><input value='129' type='checkbox' class='form-check-input' name='lidex[domain_129]' id='lidex--domain_129'><label for='lidex--domain_129' class='form-check-label'>Automotive industry - advertising<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_140--group'><input type='hidden' value='0' name='lidex[domain_140]'><div class='form-check'><input value='140' type='checkbox' class='form-check-input' name='lidex[domain_140]' id='lidex--domain_140'><label for='lidex--domain_140' class='form-check-label'>Standards and patent descriptions<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_130--group'><input type='hidden' value='0' name='lidex[domain_130]'><div class='form-check'><input value='130' type='checkbox' class='form-check-input' name='lidex[domain_130]' id='lidex--domain_130'><label for='lidex--domain_130' class='form-check-label'>Environmental protection<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_131--group'><input type='hidden' value='0' name='lidex[domain_131]'><div class='form-check'><input value='131' type='checkbox' class='form-check-input' name='lidex[domain_131]' id='lidex--domain_131'><label for='lidex--domain_131' class='form-check-label'>Heavy industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_132--group'><input type='hidden' value='0' name='lidex[domain_132]'><div class='form-check'><input value='132' type='checkbox' class='form-check-input' name='lidex[domain_132]' id='lidex--domain_132'><label for='lidex--domain_132' class='form-check-label'>Light industry <\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_133--group'><input type='hidden' value='0' name='lidex[domain_133]'><div class='form-check'><input value='133' type='checkbox' class='form-check-input' name='lidex[domain_133]' id='lidex--domain_133'><label for='lidex--domain_133' class='form-check-label'>Oil industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_134--group'><input type='hidden' value='0' name='lidex[domain_134]'><div class='form-check'><input value='134' type='checkbox' class='form-check-input' name='lidex[domain_134]' id='lidex--domain_134'><label for='lidex--domain_134' class='form-check-label'>Food industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_135--group'><input type='hidden' value='0' name='lidex[domain_135]'><div class='form-check'><input value='135' type='checkbox' class='form-check-input' name='lidex[domain_135]' id='lidex--domain_135'><label for='lidex--domain_135' class='form-check-label'>Shipbuilding industry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_136--group'><input type='hidden' value='0' name='lidex[domain_136]'><div class='form-check'><input value='136' type='checkbox' class='form-check-input' name='lidex[domain_136]' id='lidex--domain_136'><label for='lidex--domain_136' class='form-check-label'>Agriculture<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_137--group'><input type='hidden' value='0' name='lidex[domain_137]'><div class='form-check'><input value='137' type='checkbox' class='form-check-input' name='lidex[domain_137]' id='lidex--domain_137'><label for='lidex--domain_137' class='form-check-label'>Transportation<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_139--group'><input type='hidden' value='0' name='lidex[domain_139]'><div class='form-check'><input value='139' type='checkbox' class='form-check-input' name='lidex[domain_139]' id='lidex--domain_139'><label for='lidex--domain_139' class='form-check-label'>Industrial design<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_138--group'><input type='hidden' value='0' name='lidex[domain_138]'><div class='form-check'><input value='138' type='checkbox' class='form-check-input' name='lidex[domain_138]' id='lidex--domain_138'><label for='lidex--domain_138' class='form-check-label'>Textile industry<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_90--group'><input type='hidden' value='0' name='lidex[domain_90]'><div class='form-check'><input value='90' onclick='document.getElementById(&#039;subdomains_of_90&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_90]' id='lidex--domain_90'><label for='lidex--domain_90' class='form-check-label'>Science<\/label><\/div><\/div>        <div class=\"row\" id=\"subdomains_of_90\" \n        hidden    >\n        <i>including, in particular:<\/i>\n        <div class=\"subdomains\">\n                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_91--group'><input type='hidden' value='0' name='lidex[domain_91]'><div class='form-check'><input value='91' type='checkbox' class='form-check-input' name='lidex[domain_91]' id='lidex--domain_91'><label for='lidex--domain_91' class='form-check-label'>Astronomy<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_74--group'><input type='hidden' value='0' name='lidex[domain_74]'><div class='form-check'><input value='74' type='checkbox' class='form-check-input' name='lidex[domain_74]' id='lidex--domain_74'><label for='lidex--domain_74' class='form-check-label'>Biology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_76--group'><input type='hidden' value='0' name='lidex[domain_76]'><div class='form-check'><input value='76' type='checkbox' class='form-check-input' name='lidex[domain_76]' id='lidex--domain_76'><label for='lidex--domain_76' class='form-check-label'>Chemistry<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_92--group'><input type='hidden' value='0' name='lidex[domain_92]'><div class='form-check'><input value='92' type='checkbox' class='form-check-input' name='lidex[domain_92]' id='lidex--domain_92'><label for='lidex--domain_92' class='form-check-label'>Physics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_45--group'><input type='hidden' value='0' name='lidex[domain_45]'><div class='form-check'><input value='45' type='checkbox' class='form-check-input' name='lidex[domain_45]' id='lidex--domain_45'><label for='lidex--domain_45' class='form-check-label'>Geography<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_93--group'><input type='hidden' value='0' name='lidex[domain_93]'><div class='form-check'><input value='93' type='checkbox' class='form-check-input' name='lidex[domain_93]' id='lidex--domain_93'><label for='lidex--domain_93' class='form-check-label'>Mathematics<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_96--group'><input type='hidden' value='0' name='lidex[domain_96]'><div class='form-check'><input value='96' type='checkbox' class='form-check-input' name='lidex[domain_96]' id='lidex--domain_96'><label for='lidex--domain_96' class='form-check-label'>Psychology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_95--group'><input type='hidden' value='0' name='lidex[domain_95]'><div class='form-check'><input value='95' type='checkbox' class='form-check-input' name='lidex[domain_95]' id='lidex--domain_95'><label for='lidex--domain_95' class='form-check-label'>Sociology<\/label><\/div><\/div>                    <div class='form-group cus-check subdomain app_html_checkbox' id='lidex--domain_94--group'><input type='hidden' value='0' name='lidex[domain_94]'><div class='form-check'><input value='94' type='checkbox' class='form-check-input' name='lidex[domain_94]' id='lidex--domain_94'><label for='lidex--domain_94' class='form-check-label'>Statistics<\/label><\/div><\/div>                <\/div>\n    <\/div>\n            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_145--group'><input type='hidden' value='0' name='lidex[domain_145]'><div class='form-check'><input value='145' onclick='document.getElementById(&#039;subdomains_of_145&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_145]' id='lidex--domain_145'><label for='lidex--domain_145' class='form-check-label'>Tourism, Sports and Recreation<\/label><\/div><\/div>            <div class='form-group col-12 cus-check domain app_html_checkbox' id='lidex--domain_146--group'><input type='hidden' value='0' name='lidex[domain_146]'><div class='form-check'><input value='146' onclick='document.getElementById(&#039;subdomains_of_146&#039;).hidden = !this.checked;' type='checkbox' class='form-check-input' name='lidex[domain_146]' id='lidex--domain_146'><label for='lidex--domain_146' class='form-check-label'>World Cuisine<\/label><\/div><\/div>    \n                <\/div>\n                    \n                    \n<div class='form-group col-12 app_html_text' id='lidex--other_translation_fields--group'><input placeholder='Other subject areas' aria-label='Other subject areas' type='text' class='form-control' name='lidex[other_translation_fields]' id='lidex--other_translation_fields' value=''><\/div>                <div class=\"c-sec\">\n                    <h3 class=\"c-h\">\n                        Optional document scans                    <\/h3>\n                    <div class=\"form-group\">\n                        <div class=\"upload\">\n                            <input id=\"attachments_input\" type=\"file\" name=\"files[]\" multiple>\n                        <\/div>\n                    <\/div>\n                    <ul class=\"box-list mt-20\">\n                        <li>E.g. diplomas, references, certificates<\/li>\n                        <li>Maximum file size: 35 MB.<\/li>\n                        <li>Supported file formats: .doc, .docx, .rtf, .odt, .txt, .xls, .xlsx, .ppt, .pps, .pptx, .ppsx, .pdf, .gif, .jpg, .png, .jpeg, .bmp, .zip, .7z                        <\/li>\n                    <\/ul>\n<div class='form-group col-12 app_html_textarea' id='lidex--l_additional_comment--group'><textarea placeholder='Additional comment' aria-label='Additional comment' maxlength='500' oninput='this.style.height = &quot;&quot;;this.style.height = Math.max(70, this.scrollHeight) + &quot;px&quot;' class='form-control' name='lidex[l_additional_comment]' id='lidex--l_additional_comment'><\/textarea><\/div>                   \n<div class='form-group col-12 cus-check app_html_checkbox' id='lidex--rodo--group'><input type='hidden' value='0' name='lidex[rodo]'><div class='form-check'><input placeholder=' * I consent to the processing of my personal data by LIDEX Sp. z o.o. for the purposes of the recruitment process (in accordance with the Act of 10 May 2018 on the protection of personal data (Journal of Laws of 2018, item 1000) and in accordance with Regulation (EU) 2016\/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95\/46\/EC (GDPR)).' aria-label='I consent to the processing of my personal data by LIDEX Sp. z o.o. for the purposes of the recruitment process (in accordance with the Act of 10 May 2018 on the protection of personal data (Journal of Laws of 2018, item 1000) and in accordance with Regulation (EU) 2016\/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95\/46\/EC (GDPR)).' required='required' type='checkbox' class='form-check-input' value='1' name='lidex[rodo]' id='lidex--rodo'><label for='lidex--rodo' class='form-check-label'> * I consent to the processing of my personal data by LIDEX Sp. z o.o. for the purposes of the recruitment process (in accordance with the Act of 10 May 2018 on the protection of personal data (Journal of Laws of 2018, item 1000) and in accordance with Regulation (EU) 2016\/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95\/46\/EC (GDPR)).<\/label><\/div><\/div>                <\/div>\n\n<div class='form-group  app_html_submit_with_recaptcha' id='lidex--submit--group'><div class='g-recaptcha' data-sitekey='6LdamfojAAAAAM3huwbXyXb2ubJPLug9Y0G6aPV6' data-callback='onSubmit_69d10ba75e22c' data-action='submit' data-size='invisible'><\/div><input value='Submit application form' type='submit' id='lidex--submit'>\n        <script src='https:\/\/www.google.com\/recaptcha\/api.js?render=6LdamfojAAAAAM3huwbXyXb2ubJPLug9Y0G6aPV6'><\/script>\n        <script>\n        document.getElementById('lidex--submit').closest('form').addEventListener('submit', function(event) {\n          event.preventDefault();\n          const form = this.closest('form'); \n          \n          \/\/ if is defined function form_validate() then call it\n          if (typeof form_validate === 'function') {\n            if (!form_validate(form)) {\n              return;\n            }\n          }\n\n          grecaptcha.ready(function() {\n            grecaptcha.execute('6LdamfojAAAAAM3huwbXyXb2ubJPLug9Y0G6aPV6', {action: 'submit'}).then(function(token) {\n              console.log(token);\n              let form = document.getElementById('lidex--submit').closest('form');\n              \/\/ check if input of name g-recaptcha-response exists and if not then create it and fill with token\n              if (!form.querySelector('input[name=\"g-recaptcha-response\"]')) {\n                form.insertAdjacentHTML('beforeend', '<input type=\"hidden\" name=\"g-recaptcha-response\" value=\"' + token + '\">');\n              } else {\n                form.querySelector('input[name=\"g-recaptcha-response\"]').value = token;\n              }\n              form.submit();\n            });\n          });\n        });\n        <\/script>\n      <\/div>\n                <hr>\n<ul>\n<li>The fields marked with an asterisk (*) are mandatory.<\/li>\n<\/ul>   \n\n            <\/div>\n\n\n\n        <\/div>\n    <\/div>\n<\/form>      <script>\n        \/\/ when DOMContentLoader is ready, find form with id $id\n        document.addEventListener('DOMContentLoaded', function() {\n          var form = document.getElementById('form-tlumacz');\n          if (form) {\n            \/\/ add event listener to every input, select and textarea\n            var inputs = form.querySelectorAll('input, select, textarea');\n            \/\/ if there exists sibling element with class \"invalid-feedback\" then remove it\n            inputs.forEach(function(input) {\n              input.addEventListener('input', function() {\n                var invalid_feedback = input.parentNode.querySelector('.invalid-feedback');\n                if (invalid_feedback) {\n                  invalid_feedback.remove();\n                }\n              });\n            });\n\n            var checkboxes = form.querySelectorAll('input[type=\"checkbox\"]');\n            checkboxes.forEach(function(checkbox) {\n              checkbox.addEventListener('click', function() {\n                this.classList.remove('is-invalid');\n\n                var invalid_feedback = checkbox.parentNode.querySelector('.invalid-feedback');\n                if (invalid_feedback) {\n                  invalid_feedback.remove();\n                }\n              });\n            });\n          }\n        });\n      <\/script>\n      <\/p>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-group lidex_thankyou show-on-form-submitted\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"134\" height=\"134\" src=\"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2023\/01\/Tick_in_circle.svg\" alt=\"\" class=\"wp-image-3354\"\/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading has-text-align-center\">Your form has been sent<\/h3>\n\n\n\n<p>Thank you for your interest in establishing cooperation with Lidex and for the time devoted to completing the Translator Application Form. We will carefully read the information about your career path provided to us.<\/p>\n\n\n\n<p>We would like to inform you that we reserve the right to contact you only if we wish to continue the process of establishing cooperation.<\/p>\n\n\n\n<p>Best regards and thank you again for your time.<\/p>\n\n\n\n<p>Service Quality Department Team<\/p>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Lidex &#8211; a leader<br \/>\nthere can be only one leader in the translation and interpretation market in Poland<br \/>\nCooperation with translators and interpreters<br \/>\nWe cordially invite to cooperate with us translators and interpreters of all languages with a specialised university degree (philology\/applied linguistics) in the declared language and\/or documented minimum 2 years of professional experience.<br \/>\nAdditionally welcome:<br \/>\nIf you want to join our group of translators, please fill out the form below. <\/p>\n<p>Your form has been sent<br \/>\nThank you for your interest in establishing cooperation with Lidex and for the time devoted to completing the Translator Application Form.<\/p>\n","protected":false},"author":4,"featured_media":0,"parent":6189,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4768","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Translator\/interpreter form - Lidex<\/title>\n<meta name=\"description\" content=\"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Translator\/interpreter form - Lidex\" \/>\n<meta property=\"og:description\" content=\"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/\" \/>\n<meta property=\"og:site_name\" content=\"Lidex translations and conferences\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-21T08:52:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/\",\"url\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/\",\"name\":\"Translator\\\/interpreter form - Lidex\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/MG_8983_edit-2k2.jpg\",\"datePublished\":\"2022-03-07T17:15:01+00:00\",\"dateModified\":\"2024-06-21T08:52:21+00:00\",\"description\":\"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/MG_8983_edit-2k2.jpg\",\"contentUrl\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/MG_8983_edit-2k2.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/translator-interpreter-form\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Career\",\"item\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/career\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Translator\\\/interpreter form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/\",\"name\":\"Lidex translations and conferences\",\"description\":\"Likwidujemy bariery w kontaktach mi\u0119dzyludzkich\",\"publisher\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#organization\",\"name\":\"Lidex translations and conferences\",\"url\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/logotyp_en.png\",\"contentUrl\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/logotyp_en.png\",\"width\":243,\"height\":243,\"caption\":\"Lidex translations and conferences\"},\"image\":{\"@id\":\"https:\\\/\\\/lidex-staging.utb.pl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Translator\/interpreter form - Lidex","description":"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Translator\/interpreter form - Lidex","og_description":"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations","og_url":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/","og_site_name":"Lidex translations and conferences","article_modified_time":"2024-06-21T08:52:21+00:00","og_image":[{"url":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/","url":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/","name":"Translator\/interpreter form - Lidex","isPartOf":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/#primaryimage"},"image":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/#primaryimage"},"thumbnailUrl":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg","datePublished":"2022-03-07T17:15:01+00:00","dateModified":"2024-06-21T08:52:21+00:00","description":"Job or cooperation offer for interpreters, translators and proofreaders with experience in working with CAT tools and in post-editing of machine translations","breadcrumb":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/#primaryimage","url":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg","contentUrl":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2022\/12\/MG_8983_edit-2k2.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/lidex-staging.utb.pl\/en\/career\/translator-interpreter-form\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lidex-staging.utb.pl\/en\/"},{"@type":"ListItem","position":2,"name":"Career","item":"https:\/\/lidex-staging.utb.pl\/en\/career\/"},{"@type":"ListItem","position":3,"name":"Translator\/interpreter form"}]},{"@type":"WebSite","@id":"https:\/\/lidex-staging.utb.pl\/en\/#website","url":"https:\/\/lidex-staging.utb.pl\/en\/","name":"Lidex translations and conferences","description":"Likwidujemy bariery w kontaktach mi\u0119dzyludzkich","publisher":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lidex-staging.utb.pl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/lidex-staging.utb.pl\/en\/#organization","name":"Lidex translations and conferences","url":"https:\/\/lidex-staging.utb.pl\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lidex-staging.utb.pl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2023\/06\/logotyp_en.png","contentUrl":"https:\/\/lidex-staging.utb.pl\/wp-content\/uploads\/2023\/06\/logotyp_en.png","width":243,"height":243,"caption":"Lidex translations and conferences"},"image":{"@id":"https:\/\/lidex-staging.utb.pl\/en\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/pages\/4768","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/comments?post=4768"}],"version-history":[{"count":4,"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/pages\/4768\/revisions"}],"predecessor-version":[{"id":8899,"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/pages\/4768\/revisions\/8899"}],"up":[{"embeddable":true,"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/pages\/6189"}],"wp:attachment":[{"href":"https:\/\/lidex-staging.utb.pl\/en\/wp-json\/wp\/v2\/media?parent=4768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}