Created
December 8, 2025 13:46
-
-
Save dexit/06be043ee05f6ec8a8142c724d68805f to your computer and use it in GitHub Desktop.
Elementor Popup based LearnerEnquiry Form Hubspot hutk pagename, pageurl, and input masks for phone and postcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const debuggerMode = true; | |
| const retryCount = 3; // Retry count for setting hutk value | |
| const hutkFieldSelector = '#form-field-hutk'; | |
| const pageUriSelector = '#form-field-pageUri'; | |
| const formSelector = '#learner_enquiry'; // Use the form ID or a class to select the form | |
| function log(message) { | |
| if (debuggerMode) { | |
| console.log(message); | |
| } | |
| } | |
| document.addEventListener('DOMContentLoaded', () => { | |
| if (typeof jQuery !== 'undefined') { | |
| // Listen for the Elementor popup open event | |
| jQuery(document).on('elementor/popup/show', (event, id, instance) => { | |
| log(`Popup with ID ${id} opened`); | |
| initializeForm(); | |
| }); | |
| } else { | |
| log('jQuery is not loaded.'); | |
| } | |
| }); | |
| function attachFormSubmitListener() { | |
| const form = document.querySelector(formSelector); | |
| if (form) { | |
| form.addEventListener('submit', (event) => { | |
| event.preventDefault(); // Prevent default submission initially | |
| log('Form submit intercepted'); | |
| initializeForm() | |
| .then(() => { | |
| log('Form initialization complete, submitting form'); | |
| form.submit(); // Submit the form programmatically | |
| }) | |
| .catch(error => { | |
| log(`Error during form initialization: ${error}`); | |
| form.submit(); // Optionally submit the form even if initialization fails | |
| }); | |
| }); | |
| } else { | |
| log('Form not found'); | |
| } | |
| } | |
| function initializeForm() { | |
| return new Promise((resolve, reject) => { | |
| log(`Initializing form scripts`); | |
| disableSelectFields(); | |
| setPageUri(); | |
| setHutkValue(); | |
| resolve(); | |
| }); | |
| } | |
| function disableSelectFields() { | |
| document.querySelectorAll('select').forEach(select => { | |
| const firstOption = select.options[0]; | |
| if (select.options.length && firstOption.label === "Please Select..." && (firstOption.value.toLowerCase() === "none")) { | |
| firstOption.disabled = true; | |
| firstOption.value = ''; | |
| log(`Disabled first option in select: ${select.id}`); | |
| } | |
| }); | |
| } | |
| const getCookie = name => { | |
| const value = `; ${document.cookie}`; | |
| const parts = value.split(`; ${name}=`); | |
| return parts.length === 2 ? parts.pop().split(';').shift() : ''; | |
| }; | |
| const setHutkValue = (retries = retryCount) => { | |
| return new Promise((resolve, reject) => { | |
| const hutkField = document.querySelector(hutkFieldSelector); | |
| if (!hutkField) return reject('Hutk field not found'); | |
| const attemptToSetValue = attempt => { | |
| const hutkValue = getCookie('hubspotutk'); | |
| if (hutkValue) { | |
| hutkField.value = hutkValue; | |
| log(`Set hutk value: ${hutkValue}`); | |
| resolve(); | |
| } else if (attempt < retries) { | |
| log(`Hutk value empty, retry ${attempt + 1}/${retries}`); | |
| setTimeout(() => attemptToSetValue(attempt + 1), 3500); | |
| } else { | |
| //reject('Failed to retrieve hutk value'); | |
| console.log('Failed to retrieve hutk value'); | |
| resolve(); | |
| } | |
| }; | |
| attemptToSetValue(0); | |
| }); | |
| }; | |
| const setPageUri = () => { | |
| const uriField = document.querySelector(pageUriSelector); | |
| if (uriField) { | |
| uriField.value = window.location.href; | |
| log(`Set URI value: ${uriField.value}`); | |
| } | |
| }; | |
| function setInputMask(selector, options) { | |
| jQuery(selector).inputmask({ | |
| ...options, | |
| oncomplete: function() { | |
| jQuery(this).removeClass('pgNotValid').addClass('pgValid'); | |
| }, | |
| onincomplete: function() { | |
| jQuery(this).removeClass('pgValid').addClass('pgNotValid'); | |
| }, | |
| oncleared: function() { | |
| jQuery(this).removeClass('pgNotValid pgValid'); | |
| } | |
| }); | |
| console.log(`Set: ${selector}, field mask`); | |
| } | |
| jQuery(document).ready(function($) { | |
| setTimeout(function(){ | |
| const maskOptions = { | |
| placeholder: "_", | |
| greedy: false, | |
| casing: "upper", | |
| clearMaskOnLostFocus: false | |
| }; | |
| const fields = [ | |
| // '#form-field-national_insurance_number', | |
| '#form-field-zip', | |
| // '#form-field-sb1_4_1_postcodeofemployer', | |
| '#form-field-mobilephone', | |
| // '#form-field-phone', | |
| // '#form-field-sk1_emgcontactnumber', | |
| // '#form-field-sb1_4_1phonenumber' | |
| ]; | |
| fields.forEach(field => setInputMask(field, maskOptions)); | |
| }, 3000 ); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "content": [ | |
| { | |
| "id": "16255237", | |
| "settings": { | |
| "layout": "full_width", | |
| "flex_gap": { | |
| "size": 0, | |
| "unit": "px", | |
| "column": "0", | |
| "row": "0", | |
| "isLinked": true | |
| }, | |
| "min_height": { "unit": "px", "size": "" }, | |
| "flex_align_items": "stretch", | |
| "content_position": "middle", | |
| "background_color": "#FFFFFFB3", | |
| "background_color_b": "rgba(0,0,0,0.54)", | |
| "margin_mobile": { | |
| "unit": "px", | |
| "top": "", | |
| "right": 0, | |
| "bottom": "", | |
| "left": 0, | |
| "isLinked": true | |
| }, | |
| "reverse_order_mobile": "reverse-mobile", | |
| "eael_parallax_layers_list": [], | |
| "eael_cl_logics": [{ "_id": "17d5692" }], | |
| "flex_direction": "row", | |
| "padding": { | |
| "unit": "px", | |
| "top": "16", | |
| "right": "16", | |
| "bottom": "26", | |
| "left": "16", | |
| "isLinked": false | |
| }, | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "fbab5f7" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "bd2be6a" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "17347aa" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "c154e2d" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "1cb3399" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "fc98de4" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "c6e9924" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "721e8c9" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "7c4fe39" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [ | |
| { | |
| "id": "2d97b762", | |
| "settings": { | |
| "_column_size": 100, | |
| "width": { "size": null, "unit": "%" }, | |
| "background_overlay_color": "rgba(0,0,0,0.93)", | |
| "background_overlay_color_b": "rgba(0,63,255,0.82)", | |
| "width_tablet": { "size": 80, "unit": "%" }, | |
| "background_color": "rgba(255,255,255,0.5)", | |
| "eael_cl_logics": [{ "_id": "096b5e1" }], | |
| "flex_direction": "column", | |
| "flex_justify_content": "center", | |
| "flex_align_items": "stretch", | |
| "flex_gap": { | |
| "unit": "px", | |
| "size": 0, | |
| "sizes": [], | |
| "column": "0", | |
| "row": "0", | |
| "isLinked": true | |
| }, | |
| "margin": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0", | |
| "isLinked": true | |
| }, | |
| "padding": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0", | |
| "isLinked": true | |
| }, | |
| "eael_parallax_layers_list": [], | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "2be717e" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "55948ce" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "4460ea7" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "ea7dd1f" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "e1854a9" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "a748055" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "9fc673b" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "572b42d" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "126d89b" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [ | |
| { | |
| "id": "e90aee3", | |
| "settings": { | |
| "width": { "unit": "px", "size": 400 }, | |
| "padding_mobile": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "25", | |
| "bottom": "0", | |
| "left": "25", | |
| "isLinked": false | |
| }, | |
| "eael_parallax_layers_list": [], | |
| "eael_cl_logics": [{ "_id": "e8ab781" }], | |
| "flex_direction": "row", | |
| "flex_align_items": "center", | |
| "flex_gap": { | |
| "size": 10, | |
| "unit": "px", | |
| "column": "10", | |
| "row": "10", | |
| "isLinked": true | |
| }, | |
| "content_width": "full", | |
| "min_height": { "unit": "px", "size": 100, "sizes": [] }, | |
| "flex_justify_content": "center", | |
| "padding": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0", | |
| "isLinked": true | |
| }, | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "14a7294" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "e9f5b90" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "fe9ee20" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "43606aa" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "4f5abde" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "cc95478" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "8da6821" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "a6f913c" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "381a7c2" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [ | |
| { | |
| "id": "6a33b98e", | |
| "settings": { | |
| "image": { | |
| "id": 12, | |
| "url": "https://pathwayskillszone.ac.uk/wp-content/uploads/2022/11/Pathway-SKILLSZONE.png", | |
| "alt": "", | |
| "source": "library" | |
| }, | |
| "eael_tooltip_section_content": "I am a tooltip", | |
| "eael_ext_content_protection_password_placeholder": "Enter Password", | |
| "eael_ext_content_protection_password_submit_btn_txt": "Submit", | |
| "eael_ext_content_protection_password_incorrect_message": "Password does not match.", | |
| "eael_cl_logics": [{ "_id": "2918c3f" }], | |
| "image_size": "medium_large", | |
| "width": { "unit": "%", "size": 100, "sizes": [] }, | |
| "height": { "unit": "px", "size": 75, "sizes": [] }, | |
| "object-fit": "contain", | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "4468cda" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "d489ebd" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "b426a04" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "2b0d709" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "8fd6242" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "8d2f8c5" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "052d220" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "cd89988" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "7e366d6" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [], | |
| "isInner": false, | |
| "widgetType": "image", | |
| "elType": "widget" | |
| } | |
| ], | |
| "isInner": true, | |
| "elType": "container" | |
| }, | |
| { | |
| "id": "3e6bb90f", | |
| "settings": { | |
| "_column_size": 100, | |
| "width": { "size": null, "unit": "%" }, | |
| "eael_cl_logics": [{ "_id": "23bd907" }], | |
| "content_width": "full", | |
| "padding": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0", | |
| "isLinked": true | |
| }, | |
| "eael_parallax_layers_list": [], | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "453979b" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "dd5a3b2" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "68b085e" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "3ece9f1" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "8d2d23b" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "dc59f4d" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "97cfbb8" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "d7d7673" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "0c8b7a9" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [ | |
| { | |
| "id": "48c48737", | |
| "settings": { | |
| "title": "Register for more information", | |
| "header_size": "h5", | |
| "align": "center", | |
| "typography_typography": "custom", | |
| "typography_font_family": "Francois One", | |
| "typography_font_size": { | |
| "unit": "px", | |
| "size": 26, | |
| "sizes": [] | |
| }, | |
| "typography_font_weight": "400", | |
| "eael_vto_writing_gradient_color_repeater": [ | |
| { | |
| "eael_vto_writing_gradient_color": "#7C62FF", | |
| "eael_vto_writing_gradient_color_location": { | |
| "unit": "%", | |
| "size": 50 | |
| }, | |
| "_id": "8b4f042" | |
| }, | |
| { | |
| "eael_vto_writing_gradient_color": "#FF6464", | |
| "eael_vto_writing_gradient_color_location": { | |
| "unit": "%", | |
| "size": 90 | |
| }, | |
| "_id": "ca68569" | |
| } | |
| ], | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "c08ddcd" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "f59239f" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "7d3d769" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "40d4939" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "a6b1813" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "b2e25ca" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "ad40fd7" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "03b82e3" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "f92426a" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [], | |
| "isInner": false, | |
| "widgetType": "heading", | |
| "elType": "widget" | |
| }, | |
| { | |
| "id": "14652c40", | |
| "settings": { | |
| "form_name": "Learner Enquiry", | |
| "form_fields": [ | |
| { | |
| "custom_id": "firstname", | |
| "field_label": "First Name", | |
| "placeholder": "First Name", | |
| "_id": "8ba9a14", | |
| "required": "true", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "width": "50", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "custom_id": "lastname", | |
| "field_label": "Last Name", | |
| "placeholder": "Last Name", | |
| "required": "true", | |
| "_id": "4f032fe", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "width": "50", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "custom_id": "zip", | |
| "field_label": "Postcode", | |
| "placeholder": "Postcode", | |
| "required": "true", | |
| "_id": "0689177", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "width": "50", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1", | |
| "field_type": "yee_input_masks", | |
| "yee_input_masks_type": "custom", | |
| "yee_input_masks_type_custom": "(A[A]9[9] 9AA|A9 9AA|A99 9AA)", | |
| "yee_input_masks_placeholder": "___ ___" | |
| }, | |
| { | |
| "custom_id": "mobilephone", | |
| "required": "true", | |
| "field_label": "Contact Number", | |
| "placeholder": "Contact Number", | |
| "_id": "7469df6", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "width": "50", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1", | |
| "field_type": "yee_input_masks", | |
| "yee_input_masks_type": "custom", | |
| "yee_input_masks_type_custom": "0##########", | |
| "yee_input_masks_placeholder": "0__________" | |
| }, | |
| { | |
| "custom_id": "email", | |
| "field_type": "email", | |
| "required": "true", | |
| "field_label": "Email", | |
| "placeholder": "Email", | |
| "_id": "e88ca9b", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "custom_id": "age_group", | |
| "field_type": "select", | |
| "field_label": "Age Group", | |
| "placeholder": "Message", | |
| "_id": "045b0d3", | |
| "required": "true", | |
| "field_options": "Please select...|none\nAged 15 to 17\nAged 18 to 24\nAged 25 to 34\nAged 35 to 44\nAged 44 to 54\nAged 55 and over", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "_id": "64d9770", | |
| "field_type": "select", | |
| "field_label": "Emloyment Status", | |
| "required": "true", | |
| "field_options": "Please select...|none\nEmployed\nSelf Employed\nUnemployed", | |
| "custom_id": "employment_status", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "_id": "130f33c", | |
| "field_type": "honeypot", | |
| "custom_id": "field_130f33c", | |
| "recaptcha_badge": "inline", | |
| "previous_button": "", | |
| "next_button": "", | |
| "file_sizes": "", | |
| "file_types": "", | |
| "allow_multiple_upload": "", | |
| "max_files": "", | |
| "acceptance_text": "", | |
| "checked_by_default": "", | |
| "field_min": "", | |
| "field_max": "", | |
| "min_date": "", | |
| "max_date": "", | |
| "use_native_date": "", | |
| "use_native_time": "", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "_id": "9a1cd16", | |
| "field_type": "hidden", | |
| "field_label": "pageName", | |
| "custom_id": "pageName", | |
| "__dynamic__": { | |
| "field_value": "[elementor-tag id=\"9dcb883\" name=\"post-title\" settings=\"%7B%7D\"]" | |
| }, | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "field_type": "hidden", | |
| "field_label": "pageUri", | |
| "custom_id": "pageUri", | |
| "__dynamic__": [], | |
| "_id": "2d0818f", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "_id": "a7341ef", | |
| "field_type": "hidden", | |
| "field_label": "hutk", | |
| "custom_id": "hutk", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "field_type": "hidden", | |
| "field_label": "formGuid", | |
| "field_value": "17e717e9-053c-44bc-9b62-b10ad9248e54", | |
| "custom_id": "formGuid", | |
| "_id": "2fb8ac8", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "field_type": "hidden", | |
| "field_label": "hs_lead_status", | |
| "field_value": "NEW", | |
| "custom_id": "hs_lead_status", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1", | |
| "_id": "63ee873" | |
| }, | |
| { | |
| "field_type": "hidden", | |
| "field_label": "lifecyclestage", | |
| "field_value": "lead", | |
| "custom_id": "lifecyclestage", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1", | |
| "_id": "b922e95" | |
| }, | |
| { | |
| "field_type": "hidden", | |
| "field_label": "portalId", | |
| "field_value": "139581107", | |
| "custom_id": "portalId", | |
| "_id": "d5d790b", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_formatted_number_locale": "auto", | |
| "dce_formatted_number_currency": "USD", | |
| "dce_counter_step": "1" | |
| }, | |
| { | |
| "_id": "82975ec", | |
| "field_type": "hidden", | |
| "field_label": "learner_employer_", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_counter_step": "1", | |
| "field_value": "Learner", | |
| "custom_id": "learner_employer_" | |
| }, | |
| { | |
| "_id": "cb4be80", | |
| "field_type": "hidden", | |
| "field_label": "pg_form_id", | |
| "format": "yy-mm-dd", | |
| "add_button": "Add more...", | |
| "repeater_title": "Guest", | |
| "dce_counter_step": "1", | |
| "field_value": "LearnerEnquiryForm", | |
| "custom_id": "pg_form_id" | |
| } | |
| ], | |
| "input_size": "md", | |
| "button_size": "md", | |
| "step_next_label": "Next", | |
| "step_previous_label": "Previous", | |
| "button_text": "Send", | |
| "email_content": "[all-fields]\n\nThe form was submitted from :<br> [field id=\"course_title\"] page.", | |
| "email_content_2": "[all-fields]", | |
| "success_message": "The form was sent successfully.", | |
| "error_message": "An error occurred.", | |
| "required_field_message": "This field is required.", | |
| "invalid_message": "There's something wrong. The form is invalid.", | |
| "label_color": "#000000", | |
| "html_color": "#000000", | |
| "field_text_color": "#000000", | |
| "field_typography_typography": "custom", | |
| "field_typography_font_family": "Poppins", | |
| "field_typography_font_weight": "400", | |
| "button_typography_typography": "custom", | |
| "button_typography_text_transform": "uppercase", | |
| "button_background_color": "#049B6A", | |
| "button_text_color": "#FFFFFF", | |
| "previous_button_background_color": "#35383B", | |
| "step_inactive_primary_color": "#000000", | |
| "step_active_primary_color": "#049B6A", | |
| "step_completed_primary_color": "#049B6A", | |
| "eael_tooltip_section_content": "I am a tooltip", | |
| "eael_ext_content_protection_password_placeholder": "Enter Password", | |
| "eael_ext_content_protection_password_submit_btn_txt": "Submit", | |
| "eael_ext_content_protection_password_incorrect_message": "Password does not match.", | |
| "mark_required": "yes", | |
| "eael_cl_logics": [{ "_id": "a52407b" }], | |
| "server_message": "Your submission failed because of a server error.", | |
| "column_gap": { "unit": "px", "size": 18, "sizes": [] }, | |
| "row_gap": { "unit": "px", "size": 26, "sizes": [] }, | |
| "field_border_color": "#54595F2B", | |
| "field_border_radius": { | |
| "unit": "px", | |
| "top": "10", | |
| "right": "10", | |
| "bottom": "10", | |
| "left": "10", | |
| "isLinked": true | |
| }, | |
| "button_background_hover_color": "#03CA8A", | |
| "button_hover_color": "#000000", | |
| "button_border_radius": { | |
| "unit": "px", | |
| "top": "10", | |
| "right": "10", | |
| "bottom": "10", | |
| "left": "10", | |
| "isLinked": true | |
| }, | |
| "__globals__": { | |
| "field_border_color": "", | |
| "button_background_hover_color": "", | |
| "button_hover_color": "globals/colors?id=primary", | |
| "label_typography_typography": "", | |
| "html_typography_typography": "globals/typography?id=46e682c", | |
| "field_typography_typography": "", | |
| "button_typography_typography": "", | |
| "message_typography_typography": "", | |
| "success_message_color": "globals/colors?id=secondary", | |
| "error_message_color": "globals/colors?id=3ac152b", | |
| "inline_message_color": "globals/colors?id=3ac152b", | |
| "previous_button_background_color": "globals/colors?id=3ac152b", | |
| "step_progress_bar_color": "globals/colors?id=f37af1a", | |
| "step_progress_bar_background_color": "", | |
| "step_progress_bar_percentage_color": "globals/colors?id=c171c30", | |
| "step_progress_bar_percentage__typography_typography": "" | |
| }, | |
| "form_metadata": [ | |
| "date", | |
| "time", | |
| "page_url", | |
| "user_agent", | |
| "remote_ip" | |
| ], | |
| "form_id": "learner_enquiry", | |
| "submit_actions": ["save-to-database", "email", "webhook"], | |
| "webhooks": "https://pg-hubspot-formsubmit.pathway-group.workers.dev/", | |
| "webhooks_advanced_data": "yes", | |
| "custom_messages": "yes", | |
| "label_spacing": { "unit": "px", "size": 6, "sizes": [] }, | |
| "label_typography_typography": "custom", | |
| "label_typography_font_family": "Francois One", | |
| "label_typography_font_size": { | |
| "unit": "px", | |
| "size": 18, | |
| "sizes": [] | |
| }, | |
| "label_typography_font_size_mobile": { | |
| "unit": "px", | |
| "size": 16, | |
| "sizes": [] | |
| }, | |
| "label_typography_font_weight": "300", | |
| "label_typography_line_height": { | |
| "unit": "em", | |
| "size": 1.3, | |
| "sizes": [] | |
| }, | |
| "html_spacing": { "unit": "px", "size": 6, "sizes": [] }, | |
| "html_typography_typography": "custom", | |
| "html_typography_font_family": "Poppins", | |
| "html_typography_font_size_mobile": { | |
| "unit": "em", | |
| "size": 1.15, | |
| "sizes": [] | |
| }, | |
| "html_typography_font_weight": "400", | |
| "html_typography_line_height_mobile": { | |
| "unit": "em", | |
| "size": 1.5, | |
| "sizes": [] | |
| }, | |
| "field_typography_font_size": { | |
| "unit": "px", | |
| "size": 16, | |
| "sizes": [] | |
| }, | |
| "field_typography_font_size_tablet": { | |
| "unit": "em", | |
| "size": "", | |
| "sizes": [] | |
| }, | |
| "field_typography_font_size_mobile": { | |
| "unit": "px", | |
| "size": 12, | |
| "sizes": [] | |
| }, | |
| "field_typography_line_height": { | |
| "unit": "em", | |
| "size": 1.3, | |
| "sizes": [] | |
| }, | |
| "field_border_width": { | |
| "unit": "px", | |
| "top": "1", | |
| "right": "1", | |
| "bottom": "1", | |
| "left": "1", | |
| "isLinked": true | |
| }, | |
| "button_typography_font_family": "Poppins", | |
| "button_typography_font_size": { | |
| "unit": "px", | |
| "size": 21, | |
| "sizes": [] | |
| }, | |
| "button_typography_font_size_mobile": { | |
| "unit": "em", | |
| "size": 1.15, | |
| "sizes": [] | |
| }, | |
| "button_typography_font_weight": "600", | |
| "button_typography_line_height_mobile": { | |
| "unit": "em", | |
| "size": 1.5, | |
| "sizes": [] | |
| }, | |
| "message_typography_typography": "custom", | |
| "message_typography_font_family": "Poppins", | |
| "message_typography_font_size": { | |
| "unit": "em", | |
| "size": 1.25, | |
| "sizes": [] | |
| }, | |
| "message_typography_font_size_tablet": { | |
| "unit": "em", | |
| "size": "", | |
| "sizes": [] | |
| }, | |
| "message_typography_font_size_mobile": { | |
| "unit": "em", | |
| "size": 1.15, | |
| "sizes": [] | |
| }, | |
| "message_typography_font_weight": "400", | |
| "message_typography_line_height": { | |
| "unit": "em", | |
| "size": 1.35, | |
| "sizes": [] | |
| }, | |
| "message_typography_line_height_mobile": { | |
| "unit": "em", | |
| "size": 1.5, | |
| "sizes": [] | |
| }, | |
| "success_message_color": "#54595F", | |
| "error_message_color": "#35383B", | |
| "inline_message_color": "#35383B", | |
| "steps_gap": { "unit": "px", "size": 26, "sizes": [] }, | |
| "steps_gap_tablet": { | |
| "unit": "px", | |
| "size": 20, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_color": "#049B6A", | |
| "step_progress_bar_background_color": "#F1F1F1", | |
| "step_progress_bar_height": { | |
| "unit": "px", | |
| "size": 30, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_height_tablet": { | |
| "unit": "px", | |
| "size": 30, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_border_radius": { | |
| "unit": "px", | |
| "size": 8, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_percentage__typography_typography": "custom", | |
| "step_progress_bar_percentage__typography_font_family": "Poppins", | |
| "step_progress_bar_percentage__typography_font_size": { | |
| "unit": "px", | |
| "size": 16, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_percentage__typography_font_size_tablet": { | |
| "unit": "em", | |
| "size": 1.25, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_percentage__typography_font_size_mobile": { | |
| "unit": "em", | |
| "size": "", | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_percentage__typography_font_weight": "500", | |
| "step_progress_bar_percentage__typography_line_height": { | |
| "unit": "em", | |
| "size": 2, | |
| "sizes": [] | |
| }, | |
| "step_progress_bar_percentage_color": "#FFFFFF", | |
| "_padding": { | |
| "unit": "em", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0.5", | |
| "isLinked": false | |
| }, | |
| "_padding_tablet": { | |
| "unit": "em", | |
| "top": "", | |
| "right": "", | |
| "bottom": "", | |
| "left": "", | |
| "isLinked": true | |
| }, | |
| "_padding_mobile": { | |
| "unit": "em", | |
| "top": "0.5", | |
| "right": "0.5", | |
| "bottom": "0.5", | |
| "left": "1", | |
| "isLinked": false | |
| }, | |
| "_element_width": "inherit", | |
| "_flex_align_self": "center", | |
| "_css_classes": "specil", | |
| "_element_cache": "yes", | |
| "custom_css": ".mymylist li a {\n color:black;\n}\n.mymylist li a:hover {\n color:#049b6a;\n}\n\n\n.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option {\n padding-inline-end: 0px!important;\n}", | |
| "dce_form_pdf_converter": "svg", | |
| "dce_conditional_validations": [ | |
| { | |
| "disabled": "yes", | |
| "error_message": "Your name should be Joe", | |
| "expression": "name == \"Joe\"", | |
| "error_field_id": "name", | |
| "_id": "c761a07" | |
| } | |
| ], | |
| "dce_max_submissions_error_message": "Too many submissions, sorry", | |
| "post_custom_fields": [], | |
| "post_taxonomies": [], | |
| "dce_form_pdf_svg_code_repeater": [], | |
| "dce_form_redirect_repeater": [], | |
| "eael_image_masking_custom_clip_path": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_masking_custom_clip_path_hover": "clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);", | |
| "eael_image_morphing_exclude_selectors": ".avatar, .exclude", | |
| "eael_clip_paths": [ | |
| { | |
| "eael_clip_path_title": "Shape 1", | |
| "eael_clip_path": "clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);", | |
| "_id": "dc61ea4" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 2", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 50%, 90% 100%, 12% 99%, 0% 50%);\n", | |
| "_id": "d566c3e" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 3", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 73% 50%, 90% 100%, 12% 99%, 24% 50%);", | |
| "_id": "ca06b18" | |
| }, | |
| { | |
| "eael_clip_path_title": "Shape 4", | |
| "eael_clip_path": "clip-path: polygon(11% 0, 89% 0, 100% 37%, 90% 100%, 12% 99%, 0 70%);", | |
| "_id": "ef77d3e" | |
| } | |
| ], | |
| "eael_svg_paths_custom": [ | |
| { | |
| "eael_svg_path_title": "SVG 1", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "8c39015" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 2", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62.8,-19.7C72,7.8,63.5,41.8,44,54.6C24.4,67.5,-6.2,59.1,-25.2,43.3C-44.2,27.5,-51.5,4.2,-45.3,-19.1C-39.2,-42.5,-19.6,-65.8,3.6,-67C26.8,-68.2,53.7,-47.2,62.8,-19.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "ec8d511" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 3", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M62,-36.5C75.7,-12,79.2,17.9,67.1,41.3C55,64.8,27.5,82,6,78.6C-15.6,75.1,-31.2,51.1,-42.4,28.1C-53.7,5.1,-60.5,-16.9,-52.7,-38C-44.9,-59.1,-22.5,-79.4,0.8,-79.9C24.1,-80.3,48.2,-61.1,62,-36.5Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "2899c29" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 4", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34,-19.6C42.7,-4.5,47.5,12.9,41.2,30.6C34.9,48.4,17.4,66.6,-3.8,68.9C-25.1,71.1,-50.3,57.3,-61.6,36.6C-72.9,15.9,-70.5,-11.7,-57.9,-29C-45.4,-46.3,-22.7,-53.4,-5,-50.5C12.6,-47.6,25.2,-34.7,34,-19.6Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "900ebaa" | |
| }, | |
| { | |
| "eael_svg_path_title": "SVG 5", | |
| "eael_svg_path": "<svg viewBox=\"0 0 200 200\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M56.3,-30.7C66.7,-14.5,64.6,10.8,53.1,22.4C41.6,34.1,20.8,32.1,-1,32.7C-22.8,33.3,-45.6,36.4,-50.2,28.7C-54.8,21.1,-41.1,2.6,-29.7,-14.1C-18.3,-30.9,-9.1,-45.9,6.9,-49.9C23,-53.9,45.9,-46.8,56.3,-30.7Z\" transform=\"translate(100 100)\" /></svg>", | |
| "_id": "0bd54f6" | |
| } | |
| ], | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "elements": [], | |
| "isInner": false, | |
| "widgetType": "form", | |
| "elType": "widget" | |
| } | |
| ], | |
| "isInner": true, | |
| "elType": "container" | |
| } | |
| ], | |
| "isInner": true, | |
| "elType": "container" | |
| } | |
| ], | |
| "isInner": false, | |
| "elType": "container" | |
| } | |
| ], | |
| "page_settings": { | |
| "eael_ext_toc_title": "Table of Contents", | |
| "width": { "unit": "px", "size": 425, "sizes": [] }, | |
| "height": { "unit": "px", "size": 545, "sizes": [] }, | |
| "content_position": "center", | |
| "entrance_animation": "fadeInUp", | |
| "exit_animation": "fadeInUp", | |
| "entrance_animation_duration": { "unit": "px", "size": 0.8, "sizes": [] }, | |
| "border_border": "solid", | |
| "border_radius": { | |
| "unit": "px", | |
| "top": "15", | |
| "right": "15", | |
| "bottom": "15", | |
| "left": "15", | |
| "isLinked": true | |
| }, | |
| "avoid_multiple_popups": "yes", | |
| "padding": { | |
| "unit": "px", | |
| "top": "0", | |
| "right": "0", | |
| "bottom": "0", | |
| "left": "0", | |
| "isLinked": true | |
| }, | |
| "__globals__": { "border_color": "globals/colors?id=f37af1a" }, | |
| "custom_css": ".inner-top-main.elementor-sticky--active {\n box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.16)!important;\n z-index: 999;\n}\n.titleed h3 {\n text-decoration-thickness: 7px!important;\n text-underline-offset: 10px;\n text-decoration-color: #049b6a!important;\n}\n.inner-top-main {\n box-shadow: 0px 0px 0 0 rgb(0 0 0 / 0%)!important;\n}\n.e-form__indicators__indicator__progress__meter {\n padding-left: 6px;\n}\n.ast-container {\n max-width: 1240px;\n}\n\n.elementor-field-group:not(.elementor-field-type-upload) .elementor-field:not(.elementor-select-wrapper):focus,.elementor-field-group:not(.elementor-field-type-upload) .elementor-field:not(.elementor-select-wrapper):hover, .elementor-field-group .elementor-select-wrapper select:focus, .elementor-field-group .elementor-select-wrapper select:hover{\n border-color:var(--e-global-color-f37af1a)!important;\ncursor:pointer!important;\n}\n.elementor-field-group > label,.elementor-field-group:hover > input::placeholder {\n transition:color 120ms linear,opacity 120ms linear;\n}\n.elementor-field-group:hover > input:focus::placeholder {\n opacity: 1;\n \n}\n.elementor-field-group:hover > label {\n color:var(--e-global-color-f37af1a)!important;\n}\n.elementor-field-group.elementor-column {\n align-items: flex-start!important;\n align-content: flex-start!important;\n}\n\n\n.elementor-field-group .elementor-field-option input[type=\"checkbox\"],\n.elementor-field-group .elementor-field-option input[type=\"radio\"]{\n\tdisplay: block;\nheight:0;\n\twidth:0;\n}\n\n.elementor-field-subgroup.elementor-subgroup-inline {\n gap:1em 0.5em!important;\n}\nspan.elementor-field-option input[type=\"checkbox\"] + label, span.elementor-field-option input[type=\"radio\"] + label {\n margin: 0;\n font-size: 0.9em;\n padding: 0.5em 0.85em;\n background-color: #e9ecee;\n border: 2px solid #cacece;\n display: inline-flex;\n position: relative;\n transition: all 220ms linear;\n min-width: 40px !important;\n width: 100% !important;\n display: flex !important;\n text-align: center !important;\n flex-wrap: wrap;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n align-content: stretch;\n background-color: #ffffff;\n border-color: #54595f1f;\n border-radius: 0.45em;\n color: gray !important;\n}\nspan.elementor-field-option input[type=\"radio\"] + label:active,\nspan.elementor-field-option input[type=\"radio\"]:checked + label:active, \nspan.elementor-field-option input[type=\"checkbox\"] + label:active,\nspan.elementor-field-option input[type=\"checkbox\"]:checked + label:active {\n\tbox-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.0.01);\n}\nspan.elementor-field-option input[type=\"radio\"]:checked + label,\nspan.elementor-field-option input[type=\"checkbox\"]:checked + label {\n\tbackground-color: #049b6a;\n\tborder: 2px solid #adb8c0;\ncursor:pointer;\n\tbox-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);\n\tcolor: #fff!important;\n font-family: inherit;\n}\nspan.elementor-field-option input[type=\"checkbox\"]:hover + label:after {\n \n}\nspan.elementor-field-option input[type=\"checkbox\"]:checked:hover +label,\nspan.elementor-field-option input[type=\"radio\"]:checked:hover +label{\n color: #049b6a!important;\n}\nspan.elementor-field-option input[type=\"checkbox\"]:hover + label,\nspan.elementor-field-option input[type=\"radio\"]:hover + label {\n\tbackground-color: #fff;\n\tborder: 2px solid #049b6a!important;\ncursor:pointer;\n\tcolor: #049b6a;\n font-family: inherit;\n}\nspan.elementor-field-option input[type=\"radio\"]:checked + label:after,\nspan.elementor-field-option input[type=\"radio\"]:checked:hover + label:after,\nspan.elementor-field-option input[type=\"checkbox\"]:checked + label:after,\nspan.elementor-field-option input[type=\"checkbox\"]:checked:hover + label:after {\n content: 'selected';\n font-size: 0.45em;\n position: absolute;\n bottom: -50%;\n left: 0%;\n transform: translate(-0%, -20%);\n background-color: #049b6a;\n border-radius: 3px;\n text-transform: uppercase;\n font-family: inherit;\n letter-spacing: 0.1em;\n font-weight: 500;\n color: white;\n line-height: 1.25;\n padding: 2px;\n min-width: 100%;\n}\n\n.elementor-field-group.elementor-column.elementor-field-type-checkbox {\n border: 2px solid lightgray;\n border-radius: 1em;\n padding: 1.65em 1.25em;\n transition: border 180ms linear 10ms;\n margin-right: calc(18px / 2);\n margin-left: calc(18px / 2);\n margin-bottom: 26px;\n}\n\n.elementor-field-group.elementor-column.elementor-field-type-checkbox:hover {\n border-color: #049b6a;\n}\n\n.onefifth {\n display: flex;\n gap: 0;\n padding: 0;\n margin: 0;\n justify-content: center;\n flex-wrap: wrap;\n height: min-content;\n padding-block-start: 0;\n padding-block-end: 0;\n font-size: 10px !important;\n border-collapse: collapse;\n max-width: min-content;\n line-height: 1.5;\n}\n\n\n\n.q13 {\n font-family: 'Poppins';\n font-size: 0.85em;\n text-wrap: wrap;\n display: flex;\n flex-wrap: wrap;\n flex-direction: row;\n line-height: 1.35em;\n color: dimgray;\n}\n.q9 {\n font-family: 'Poppins';\n font-size: 0.65em !important;\n text-wrap: wrap;\n display: flex;\n flex-wrap: wrap;\n flex-direction: row;\n line-height: 1.7em;\n margin-bottom: 16px ! Important;\n color: dimgray;\n}\n\n .elementor-labels-above .elementor-field-group > label {\n padding-bottom: 16px;\n}\n\n.elementor-field-type-html label, label.elementor-field-label{\n font-size: 1.5em !important;\n line-height: 1em !important;\n}\n\n\n\n#initialAssessmentEnglish .eng-test.q14 {\n font-weight: 600;\n}\n\n#initialAssessmentEnglish .eng-test.q14 i {\n font-weight: 300 !important;\n line-height: 3em;\n}\n\n#initialAssessmentEnglish .eng-test.q14 ul {\n margin-block-start: 8px !important;\n margin-block-end: 8px !important;\n font-weight: 400;\n}\n\n\n\nform#initialAssessmentMaths,form#initialAssessmentEnglish {\n min-height: 350px;\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n justify-content: space-between;\n\t align-content: stretch;\n align-items: stretch;\n}\n\n.e-form__step:not(.elementor-hidden) {\n display: flex;\n flex-wrap: wrap;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n min-height: 300px;\n align-content: space-between;\n}\n.elementor-field-type-radio.elementor-field-group.elementor-column.elementor-col-100.elementor-field-required {\n gap: 26px;\n}\n\n#initialAssessmentEnglish .elementor-field-type-html label,#initialAssessmentMaths .elementor-field-type-html label, label.elementor-field-label {\n font-size: 1.5em !important;\n line-height: 1em !important;\n}\n\n\nlabel[for=\"form-field-IA_MATHS_QUESTION_11\"].elementor-field-label {\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n justify-content: flex-start;\n align-items: center;\n align-content: flex-start;\n}\n\n\n\n.elementor-field-group.elementor-colum.elementor-col-100.elementor-field-required:not(.elementor-field-group-email) {\n min-height: 300px;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n flex-wrap: wrap;\n align-content: center;\n align-items: stretch;\n}\n\n.elementor-field-type-radio.elementor-field-group.elementor-column {\n gap: 26px!important;\n}\n\n.mymy{\n text-decoration-thickness: 7px !important;\n text-underline-offset: 10px;\n text-decoration-color: #049b6a !important;\n}\n\n.elementor-field-type-upload.elementor-field-group.elementor-column, label.elementor-field-label,\n label.elementor-field-label {\n font-size: 90% !important; line-height: 1.35em !important; font-weight: 500!Important; text-transform: uppercase; letter-spacing: 0em; padding: 7px 0px; /* font-family: 'Poppins', sans-serif !important; */ text-align: left;\n};\n \ninput[data-gtm-form-interact-field-id] {\n border-color: var(--e-global-color-f37af1a) !important;\n cursor: pointer !important;\n}\n\n.elementor-field-type-html.elementor-field-group.elementor-column {\n /* margin: 0; */\n border-bottom: solid 7px #049b6a;\n padding-left:0!important;\n padding-right: calc(18px / 2);\n}\n\n.elementor-field-type-html.elementor-field-group.elementor-column.elementor-col-100 h3 {\n margin-bottom: 0;\n padding: 7px 0px;\n}\n.elementor-field-group.elementor-column.elementor-field-type-html.elementor-col-100 {\n padding-bottom: 16px;\n}\n.elementor-field-type-select.elementor-field-group.elementor-column, .elementor-field-type-select.elementor-field-group.elementor-column label {\n padding-left: 0;\n padding-right: calc(18px / 2);\n}\n\nh5.mymy {\n text-transform: uppercase!important;\n}\n\n.elementor-field-type-select.elementor-field-group.elementor-column {\n padding-left: 0!important;\n padding-right: calc(18px / 2);\n}\n\n.elementor-field-type-textarea.elementor-field-group.elementor-column {\n padding-left: 0 !important;\n}\n\n.elementor-field-type-text.elementor-field-group.elementor-column.elementor-field-required {\n padding-left: 0 !important;\n padding-right: calc(18px / 2);\n}\n\n.elementor-field-type-email.elementor-field-group.elementor-column {\n padding-left: 0 !important;\n}\n\n.elementor-field-type-upload.elementor-field-group.elementor-column,label[for=\"form-field-proof_of_id\"] {\n padding-left: 0!important;\n}\n\n.elementor-field-type-upload.elementor-field-group.elementor-column.elementor-field-group-proof_of_id.elementor-col-100 {}\n\nlabel.elementor-field-label {\n padding-left: 0;\n padding-right: calc(18px / 2);\n}\n.elementor-field-group.elementor-column.elementor-field-type-submit.elementor-col-100.e-form__buttons {\n padding: 0;\n \n}\n.elementor-field-group.elementor-column.elementor-field-type-date.elementor-col-33.elementor-field-required {\n padding-right: calc(18px / 2);\n}\n.elementor-form-fields-wrapper.elementor-labels-above {}\n.elementor-field-type-date.elementor-field-group.elementor-column {\n padding-left: 0!important;\n}\n\n.elementor-field-type-checkbox.elementor-field-group.elementor-column {\n border: none!important;\n}\n\n.elementor-field-type-checkbox.elementor-field-group.elementor-column {\n padding-left: 0 !important;\n margin-left: 0 !important;\n}\n.elementor-field-type-date.elementor-field-group.elementor-column {\n padding-left: 0!Important;\n}\n.elementor-field-type-text.elementor-field-group.elementor-column {\n padding-left: 0 !important;\n}\n.elementor-field-type-text.elementor-field-group.elementor-column.elementor-col-50,\n.elementor-field-type-date.elementor-field-group.elementor-column.elementor-col-50 {\n padding-left: 0 !important;\n}\n\n.elementor-field-group.elementor-column.elementor-field-type-checkbox {\nborder:none!important;\nmargin-left:0!important;\npadding-left:0!important;\n}\n\n\n.elementor-field-group .elementor-field-textual::placeholder {\n color: inherit;\n font-family: inherit;\n opacity: 1;\n}\n\n@media (max-width:768px) {\n table.rihtest1 tbody {\n display: flex;\n align-content: space-around;\n align-items: stretch;\n justify-content: space-between;\n flex-direction: row;\n flex-wrap: wrap;\n}\n\n table.rihtest1 tr:first-child {\n display: inline-flex;\n flex-direction: row;\n flex-wrap: wrap;\n align-content: space-around;\n justify-content: space-between;\n align-items: stretch;\n width: 70%;\n}\n\n table.rihtest1 tbody tr td {\n display: flex;\n flex-direction: row;\n align-items: stretch;\n align-content: space-between;\n width: 100%;\n flex-wrap: wrap;\n justify-content: space-between;\n}\n\n table.rihtest1 tr:nth-child(2) {\n display: flex;\n flex-direction: column;\n flex-wrap: wrap;\n align-content: center;\n justify-content: space-between;\n align-items: baseline;\n width: 30%;\n}\n\n table.rihtest1 tbody tr:nth-child(2) td {display: flex;flex-direction: row;justify-content: center;font-weight: 550;font-size: larger;/* line-height: 1em; *//* align-items: flex-start; */align-content: stretch;flex-wrap: wrap;}\n\n}\n\n.specil h5 {\n font-size: 1.75rem;\n line-height: 1em;\n}\n\n.elementor-field-group > label,.elementor-field-group:hover > input::placeholder {\n transition:color 120ms linear,opacity 120ms linear;\n}\n.elementor-field-group:hover > input:focus::placeholder {\n opacity: 1;\n \n}\n\n.elementor-field-group input::placeholder {\n opacity: 0.6 !important;\n}", | |
| "eael_custom_cursor_svg_code": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_custom_cursor_svg_code_pointer": "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.0\" id=\"Layer_1\" width=\"100\" height=\"100\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path fill=\"#F76D57\" d=\"M32,52.789l-12-18C18.5,32,16,28.031,16,24c0-8.836,7.164-16,16-16s16,7.164,16,16 c0,4.031-2.055,8-4,10.789L32,52.789z\"/><g><path fill=\"#394240\" d=\"M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289 l16,24C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289 C54.289,34.008,56,29.219,56,24C56,10.746,45.254,0,32,0z M44,34.789l-12,18l-12-18C18.5,32,16,28.031,16,24 c0-8.836,7.164-16,16-16s16,7.164,16,16C48,28.031,45.945,32,44,34.789z\"/><circle fill=\"#394240\" cx=\"32\" cy=\"24\" r=\"8\"/></g></g></svg>", | |
| "eael_cursor_snowflake_emojis": "\u2744\ufe0f" | |
| }, | |
| "version": "0.4", | |
| "title": "LearnerEnquiryForm", | |
| "type": "popup" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment