{"id":469,"date":"2023-02-02T13:01:32","date_gmt":"2023-02-02T13:01:32","guid":{"rendered":"https:\/\/bevas.com\/en\/?page_id=469"},"modified":"2026-01-06T07:26:22","modified_gmt":"2026-01-06T07:26:22","slug":"shop-our-blends","status":"publish","type":"page","link":"https:\/\/bevas.com\/en\/shop-our-blends\/","title":{"rendered":"Shop Our Blends"},"content":{"rendered":"<h1>Shop Our Blends<\/h1>\n<div>\n<p>Made from premium 100% Arabica and Robusta coffee beans. Available as whole beans, ground coffee or Nespresso\u00ae Original capsules.<\/p>\n<\/div>\n<div>\n<p>    <script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {<\/p>\n<p>    \/\/ --- IMPORTANT: ---\n    \/\/ 1. Identify the closest common parent element that contains ALL your '.bevas-blend-panel' divs.\n    \/\/ 2. Replace '#panel-container-id' with the actual ID or a unique CSS selector for that parent.\n    \/\/ Using a closer parent is better than 'document.body' for performance if possible.\n    const container = document.querySelector('#panel-container-id');<\/p>\n<p>    \/\/ Exit if the container isn't found on the page\n    if (!container) {\n        \/\/ console.warn('Blend panel container not found. Click handler not attached.'); \/\/ Optional warning\n        return;\n    }<\/p>\n<p>    let isSelectingText = false; \/\/ Flag to track if text selection is happening<\/p>\n<p>    \/\/ Listen for mousedown on the CONTAINER\n    container.addEventListener('mousedown', function(event) {\n        \/\/ Check if the interaction started inside a panel\n        if (event.target.closest('.bevas-blend-panel')) {\n           isSelectingText = false; \/\/ Reset selection flag when interaction starts within a panel\n        }\n    });<\/p>\n<p>    \/\/ Listen for mouseup on the CONTAINER\n    container.addEventListener('mouseup', function(event) {\n        \/\/ Check if the interaction ended inside a panel\n         if (event.target.closest('.bevas-blend-panel')) {\n            \/\/ Check if any text was selected\n            const selection = window.getSelection().toString();\n            if (selection.length > 0) {\n                isSelectingText = true; \/\/ Mark as selecting if text is selected\n            }\n         }\n    });<\/p>\n<p>    \/\/ Listen for click on the CONTAINER\n    container.addEventListener('click', function(event) {\n        \/\/ Find the specific panel the click originated from (or is within)\n        const panel = event.target.closest('.bevas-blend-panel');<\/p>\n<p>        \/\/ Proceed only if a panel was actually clicked AND we are not selecting text\n        if (panel && !isSelectingText) {\n            \/\/ Find the anchor link within that specific panel\n            const anchor = panel.querySelector('a.uk-button');<\/p>\n<p>            \/\/ Check if the anchor exists AND the click wasn't directly on the anchor itself\n            \/\/ (or an element inside the anchor) to prevent potential loops.\n            if (anchor && event.target !== anchor && !anchor.contains(event.target)) {\n                anchor.click(); \/\/ Programmatically click the anchor\n            }\n        }<\/p>\n<p>        \/\/ The isSelectingText flag is reset by the next mousedown event\n    });<\/p>\n<p>});\n<\/script>\n<\/div>\n<div>\n<p>    <script>\nwindow.dataLayer = window.dataLayer || [];\nwindow.dataLayer.push({\n    event: 'view_item_list',\n    ecommerce: {\n        item_list_id: \"shopOurBlends\",\n        item_list_name: \"Shop our blends\",\n        items: []\n    }\n});\n<\/script><\/p>\n<\/div>\n<ul>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<\/ul>\n<ul>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<li>\n<\/li>\n<\/ul>\n<div>\n<p>    <script><\/p>\n<p>document.addEventListener('DOMContentLoaded', function () {<\/p>\n<p>\u00a0 \u00a0 \/\/ Select all buttons with the specified classes<\/p>\n<p>\u00a0 \u00a0 const buttons = document.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');<\/p>\n<p>\u00a0 \u00a0 \/\/ Track the currently selected button<\/p>\n<p>\u00a0 \u00a0 let currentlySelectedButton = null;<\/p>\n<p>\u00a0 \u00a0 \/\/ Add click event listener to each button<\/p>\n<p>\u00a0 \u00a0 buttons.forEach(function (button) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 button.addEventListener('click', function (event) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 event.preventDefault(); \/\/ Prevent default action<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Find the closest modal container<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 const modal = button.closest('.el-sublayout-modal');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 if (modal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 handleButtonClick(button, modal); \/\/ Pass the modal context<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 currentlySelectedButton = button; \/\/ Update the currently selected button<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 \/\/ Function to handle button clicks<\/p>\n<p>\u00a0 \u00a0 function handleButtonClick(button, modal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Find the closest parent container that holds the relevant select elements<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const container = modal.querySelector('.product-container');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Check if container is found<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (!container) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.error('No product container found for this button.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 return; \/\/ Exit the function if the container is not found<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Remove 'selected' class from all buttons within the modal<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const allButtonsInModal = modal.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 allButtonsInModal.forEach(function (btn) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 btn.classList.remove('selected');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Add 'selected' class to the clicked button<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 button.classList.add('selected');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Get format and size from the button's data attributes<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const formatValue = button.getAttribute('data-format');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const sizeValue = button.getAttribute('data-size');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 console.log('Button clicked:', button);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 console.log('Format value:', formatValue);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 console.log('Size value:', sizeValue);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Reset the select elements before updating<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 resetSelectElements(container);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Set the values of the select elements<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 updateSelectElements(container, formatValue, sizeValue);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Get the index from the data-index attribute<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const index = button.getAttribute('data-index');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 console.log('Slider index:', index);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Show the slider based on the index<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 showSlider(index, modal); \/\/ Pass the modal context to showSlider<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Update the URL with a hash when the modal opens<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 history.pushState(null, null, '#modal-open');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Attach a hidden event listener to reset selections on modal close<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 UIkit.util.on(modal, 'hide', function() {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 resetSelections(modal); \/\/ Reset selections when the modal is closed<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Modal closed. Selections reset.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Remove the hash from the URL when the modal closes<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 history.pushState(null, null, window.location.pathname); \/\/ Reset to the original path<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \/\/ Function to reset selections when modal closes<\/p>\n<p>\u00a0 \u00a0 function resetSelections(modal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const container = modal.querySelector('.product-container');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Reset the select elements<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 resetSelectElements(container);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Remove 'selected' class from all buttons in the modal<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const allButtonsInModal = modal.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 allButtonsInModal.forEach(function (btn) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 btn.classList.remove('selected');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Re-add the selected button after resetting<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (currentlySelectedButton) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 currentlySelectedButton.classList.add('selected');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \/\/ Function to reset the select elements<\/p>\n<p>\u00a0 \u00a0 function resetSelectElements(container) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const formatSelect = container.querySelector('#pa_format');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const sizeSelect = container.querySelector('#pa_size');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Reset format select to default<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (formatSelect) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 formatSelect.value = \"\"; \/\/ Assuming the first option is the default<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 formatSelect.dispatchEvent(new Event('change', { bubbles: true })); \/\/ Trigger change event<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Format select reset to default');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 } else {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.warn('Format select not found in container.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Reset size select to default<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (sizeSelect) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 sizeSelect.value = \"\"; \/\/ Assuming the first option is the default<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 sizeSelect.dispatchEvent(new Event('change', { bubbles: true })); \/\/ Trigger change event<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Size select reset to default');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 } else {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.warn('Size select not found in container.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \/\/ Function to update the select elements<\/p>\n<p>\u00a0 \u00a0 function updateSelectElements(container, formatValue, sizeValue) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const formatSelect = container.querySelector('#pa_format');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const sizeSelect = container.querySelector('#pa_size');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Check if formatSelect exists before setting value<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (formatSelect) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 formatSelect.value = formatValue;<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 formatSelect.dispatchEvent(new Event('change', { bubbles: true })); \/\/ Trigger change event for WooCommerce<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Format select updated to:', formatValue);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \/\/ Check if sizeSelect exists before setting value<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (sizeSelect) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 sizeSelect.value = sizeValue;<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 sizeSelect.dispatchEvent(new Event('change', { bubbles: true })); \/\/ Trigger change event for WooCommerce<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Size select updated to:', sizeValue);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \/\/ Function to show the slider<\/p>\n<p>\u00a0 \u00a0 function showSlider(index, modal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const slider = modal.querySelector('.bevas-variations-image-slider'); \/\/ Scoped to the current modal<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (slider && index !== null) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 UIkit.slideshow(slider).show(Number(index) - 1); \/\/ Convert index to a number (adjusted to zero-based)<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Showing slider at index:', index);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 } else {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.warn('No valid index provided for slider or slider not found.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \/\/ Event listener for when a modal is shown<\/p>\n<p>\u00a0 \u00a0 UIkit.util.on('.el-sublayout-modal', 'beforeshow', function(event) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const modal = event.target; \/\/ The modal that has been shown<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const firstButton = modal.querySelector('.attribute-button-1'); \/\/ Get the first button in the modal<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (firstButton) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Programmatically click the first button to select it<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 firstButton.click(); \/\/ This will trigger the button's click event<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 \/\/ Listen for the WooCommerce event for adding to cart using jQuery<\/p>\n<p>\u00a0 \u00a0 jQuery(document).ready(function() {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 jQuery(document).on('added_to_cart', function(event) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Get the currently open modal<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 const activeModal = document.querySelector('.el-sublayout-modal.uk-open');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 if (activeModal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Do not reset the button selection<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 if (currentlySelectedButton) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Adding to cart, currently selected button:', currentlySelectedButton);<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 } else {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.warn('No currently selected button found in the active modal after adding to cart.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 } else {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.warn('No active modal found when item added to cart.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0 \/\/ Handle back navigation to close the modal<\/p>\n<p>\u00a0 \u00a0 window.addEventListener('popstate', function(event) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 const activeModal = document.querySelector('.el-sublayout-modal.uk-open');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 if (activeModal) {<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \/\/ Close the modal when the back button is pressed<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 UIkit.modal(activeModal).hide();<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 console.log('Modal closed via back navigation.');<\/p>\n<p>\u00a0 \u00a0 \u00a0 \u00a0 }<\/p>\n<p>\u00a0 \u00a0 });<\/p>\n<p>\u00a0 \u00a0\u00a0<\/p>\n<p>});<\/p>\n<p>\u00a0 \u00a0\u00a0<\/p>\n<p><\/script>\n<\/div>\n<div>\n<p>    <script>\n(function($) {\n    $(document).on('found_variation', function(event, variation) {\n        console.log({ variation });<\/p>\n<p>        \/\/ Find the closest product container from the event target (the element triggering the event)\n        var $target = $(event.target); \/\/ The element that triggered the event\n        var $productContainer = $target.closest('.product-container'); \/\/ Get the closest product container<\/p>\n<p>        if ($productContainer.length) { \/\/ Check if the product container exists\n            var $stockStatus = $productContainer.find('.stock-status'); \/\/ Select the stock status element within the product container\n            if (variation.is_in_stock) {\n            $stockStatus.addClass('uk-invisible'); \/\/ Remove the class if in stock\n        } else {\n            $stockStatus.removeClass('uk-invisible'); \/\/ Add the class for out of stock\n        }\n        } else {\n            console.warn('No product container found for this variation.');\n        }\n    });\n})(jQuery);\n<\/script><\/p>\n<\/div>\n<div>\n<p>    <script>\n(function($) {\n    $(document).ready(function() {\n        \/\/ Use event delegation on a common parent container\n        $('.bevas-item').on('mouseenter', 'a.uk-button-primary', function() {\n            \/\/ Add the 'no-hover' class to the parent .bevas-item on button hover\n            $(this).closest('.bevas-item').addClass('no-hover');\n        }).on('mouseleave', 'a.uk-button-primary', function() {\n            \/\/ Remove the 'no-hover' class from the parent .bevas-item when button hover ends\n            $(this).closest('.bevas-item').removeClass('no-hover');\n        });\n    });\n})(jQuery);<\/p>\n<p><\/script><\/p>\n<\/div>\n<div>\n<p>    <script><\/p>\n<p><\/script>\n<\/div>\n<p><!--more--><br \/>\n<!-- {\"type\":\"layout\",\"children\":[{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"image_size\":\"cover\",\"padding\":\"xsmall\",\"section_image_column\":\"hide\",\"section_width\":\"x-large\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"headline\",\"props\":{\"content\":\"\n\n<p>Our blends<\\\/p>\",\"content_de_de\":\"\n\n<p>Unsere Mischungen<\\\/p>\",\"css\":\".el-element {\\n    color: var(--color-white, #fff);\\n    \\\/* Subtitle *\\\/\\n    font-size: 16px;\\n    font-family: ABC Arizona Flare;\\n    font-weight: 500;\\n    line-height: 25px;\\n    letter-spacing: 2.4px;\\n    text-transform: uppercase;\\n    \\n}\\n.el-element p {margin: 0;}\",\"margin\":\"default\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"status\":\"disabled\",\"text_align\":\"center\",\"title_element\":\"h2\"}},{\"type\":\"headline\",\"props\":{\"class\":\"bevas-wrap-balance\",\"content\":\"Shop Our Blends\",\"content_de_de\":\"Unsere Mischungen\",\"css\":\".el-element {\\n    color: #fff;\\n}\",\"margin_remove_top\":true,\"text_align\":\"center\",\"title_color\":\"primary\",\"title_element\":\"h1\",\"title_style\":\"h1\"}},{\"type\":\"text\",\"props\":{\"block_align\":\"center\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<p>Made from premium 100% Arabica and Robusta coffee beans. Available as whole beans, ground coffee or Nespresso\\u00ae Original capsules.<\\\/p>\",\"content_de_de\":\"\n\n<p>Hergestellt aus 100 Prozent hochwertigen Arabica- und Robusta-Kaffeebohnen. Erh\\u00e4ltlich als ganze Bohnen, gemahlener Kaffee oder Nespresso\\u00ae Original-Kapseln.<\\\/p>\",\"css\":\".el-element {\\n    color: #fff;\\n}\",\"margin\":\"default\",\"maxwidth\":\"2xlarge\",\"text_align\":\"center\",\"text_color\":\"primary\"}}]}]}],\"name\":\"Hero\"},{\"type\":\"section\",\"props\":{\"css\":\".el-section {\\n    height: 1px;\\n    padding: 0;\\n    margin: 0;\\n}\\n.el-section .uk-container {\\n    height: 1px;\\n}\",\"image_position\":\"center-center\",\"section_image_column\":\"hide\",\"section_width\":\"fullwidth\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"html\",\"props\":{\"content\":\"<script>\\ndocument.addEventListener(\\\"DOMContentLoaded\\\", function() {\\n\\n    \\\/\\\/ --- IMPORTANT: ---\\n    \\\/\\\/ 1. Identify the closest common parent element that contains ALL your '.bevas-blend-panel' divs.\\n    \\\/\\\/ 2. Replace '#panel-container-id' with the actual ID or a unique CSS selector for that parent.\\n    \\\/\\\/ Using a closer parent is better than 'document.body' for performance if possible.\\n    const container = document.querySelector('#panel-container-id');\\n\\n    \\\/\\\/ Exit if the container isn't found on the page\\n    if (!container) {\\n        \\\/\\\/ console.warn('Blend panel container not found. Click handler not attached.'); \\\/\\\/ Optional warning\\n        return;\\n    }\\n\\n    let isSelectingText = false; \\\/\\\/ Flag to track if text selection is happening\\n\\n    \\\/\\\/ Listen for mousedown on the CONTAINER\\n    container.addEventListener('mousedown', function(event) {\\n        \\\/\\\/ Check if the interaction started inside a panel\\n        if (event.target.closest('.bevas-blend-panel')) {\\n           isSelectingText = false; \\\/\\\/ Reset selection flag when interaction starts within a panel\\n        }\\n    });\\n\\n    \\\/\\\/ Listen for mouseup on the CONTAINER\\n    container.addEventListener('mouseup', function(event) {\\n        \\\/\\\/ Check if the interaction ended inside a panel\\n         if (event.target.closest('.bevas-blend-panel')) {\\n            \\\/\\\/ Check if any text was selected\\n            const selection = window.getSelection().toString();\\n            if (selection.length > 0) {\\n                isSelectingText = true; \\\/\\\/ Mark as selecting if text is selected\\n            }\\n         }\\n    });\\n\\n    \\\/\\\/ Listen for click on the CONTAINER\\n    container.addEventListener('click', function(event) {\\n        \\\/\\\/ Find the specific panel the click originated from (or is within)\\n        const panel = event.target.closest('.bevas-blend-panel');\\n\\n        \\\/\\\/ Proceed only if a panel was actually clicked AND we are not selecting text\\n        if (panel && !isSelectingText) {\\n            \\\/\\\/ Find the anchor link within that specific panel\\n            const anchor = panel.querySelector('a.uk-button');\\n\\n            \\\/\\\/ Check if the anchor exists AND the click wasn't directly on the anchor itself\\n            \\\/\\\/ (or an element inside the anchor) to prevent potential loops.\\n            if (anchor && event.target !== anchor && !anchor.contains(event.target)) {\\n                anchor.click(); \\\/\\\/ Programmatically click the anchor\\n            }\\n        }\\n\\n        \\\/\\\/ The isSelectingText flag is reset by the next mousedown event\\n    });\\n\\n});\\n<\\\/script>\"}},{\"type\":\"html\",\"props\":{\"content\":\"<script>\\nwindow.dataLayer = window.dataLayer || [];\\nwindow.dataLayer.push({\\n    event: 'view_item_list',\\n    ecommerce: {\\n        item_list_id: \\\"shopOurBlends\\\",\\n        item_list_name: \\\"Shop our blends\\\",\\n        items: []\\n    }\\n});\\n<\\\/script>\\n\"}}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"section_image_column\":\"hide\",\"section_width\":\"fullwidth\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"},\"children\":[{\"type\":\"fs_grid\",\"props\":{\"advanced_enable_grid_1_custom\":true,\"advanced_enable_grid_2_custom\":true,\"advanced_enable_grid_3_custom\":true,\"advanced_enable_grid_4_custom\":false,\"advanced_enable_grid_5_custom\":false,\"advanced_enable_grid_6_custom\":false,\"advanced_enable_grids_empty_disable\":false,\"advanced_enable_grids_empty_notification\":true,\"advanced_enable_grids_hightlight\":false,\"advanced_grid\":true,\"advanced_item_layout\":false,\"content_column_breakpoint\":\"m\",\"content_limit_length\":\"80\",\"css\":\".fs-grid-fieldset-1 .uk-panel > div:first-of-type,\\n.fs-grid-fieldset-3 .uk-panel > div:first-of-type{text-align: center;}\\n.el-element .uk-card-body {padding: 30px;}\\n.fs-grid-nested-2-container {\\n    visibility: hidden;\\n    position: absolute;\\n    top: 30px;\\n    left: 30px;\\n    right: 30px;\\n    bottom: 30px;\\n}\\n.bevas-item:hover .fs-grid-nested-2-container {\\n    visibility: hidden;\\n}\\n.bevas-item:hover .fs-grid-nested-1-container {\\n    visibility: visible;\\n}\\n.bevas-item:hover {\\n    background: #BFD2CA;\\n}\\n.bevas-item.no-hover {\\n\\tbackground: #fdf9f4;\\n}\\n.el-item {\\n}\\n.fs-grid-meta-1,\\n.fs-grid-meta-3 {\\n    font-family: \\\"ABC Arizona Flare Variable\\\";\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}\\n.fs-grid-text-2 {\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 25px; \\\/* 166.667% *\\\/\\n}\\n.uk-button-primary {\\n        position: absolute !important;\\n    bottom: -25px;\\n    width: calc(100% - 60px);\\n\\tborder-radius: 5px;\\n\\tborder: 1px solid var(--Black, #000);\\n    background: #fff;\\n    color: var(--Black, #000);\\n    align-items: center;\\n    display: inline-flex;\\n    justify-content: center;\\n}\\n\\n.el-item .uk-button-primary:hover {\\n\\tborder-color: transparent;\\n    background: var(--Red-Variant-A, #EE462D);\\n    color: var(--White, #FFF);\\n}\\n.el-item.offers:hover {\\n    background-color: var(--color-green-dark);\\n}\\n.el-item.offers {\\n    background-image: url(https:\\\/\\\/bevas.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Card.png);\\n    background-size: 100% 100%;\\n    background-position: center;\\n}\\n.el-item.offers > div.uk-flex{justify-content: flex-end;}\\n.el-item.offers .fs-grid-fieldset-5 .fs-grid-image-5 {width: 100%;}\\n.el-item.offers .fs-grid-fieldset-5 .fs-grid-meta {\\ncolor: var(--White, #FFF);\\ntext-align: center;\\n\\n\\\/* Heading 3 *\\\/\\nfont-family: \\\"ABC Arizona Flare Variable\\\";\\nfont-size: 30px;\\nfont-style: normal;\\nfont-weight: 700;\\nline-height: 36px; \\\/* 120% *\\\/\\nletter-spacing: 1.8px;\\n}\\n.el-item.offers .fs-grid-fieldset-6 .fs-grid-meta {\\n    margin-bottom: 70px;\\ncolor: var(--White, #FFF);\\ntext-align: center;\\n\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}\\n.el-item.offers .fs-grid-fieldset-6 .fs-grid-text .uk-button{\\n    display: flex;\\npadding: 15px 25px;\\njustify-content: center;\\nalign-items: center;\\ngap: 10px;\\nalign-self: stretch;\\n    background: var(--White, #FFF);\\ncolor: #000;\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 20px; \\\/* 133.333% *\\\/\\nletter-spacing: 2.25px;\\ntext-transform: uppercase;\\n}\\n.el-item.offers .fs-grid-text-6 {\\n\\tmargin-top: 0 !important;\\n    position: absolute;\\n    margin: 0;\\n    bottom: -58px;\\n    width: 100%;\\n}\\n\\n.el-item.offers .fs-grid-text-6 a:hover{\\n\\tborder-color: transparent!important;\\n    background: var(--Red-Variant-A, #EE462D)!important;\\n    color: var(--White, #FFF)!important;\\n}\",\"custom_10_element\":\"div\",\"custom_10_grid\":\"1\",\"custom_10_limit_length\":\"80\",\"custom_10_margin\":\"remove\",\"custom_10_meta_element\":\"div\",\"custom_10_meta_margin\":\"remove\",\"custom_10_meta_position\":\"above-custom-text\",\"custom_11_element\":\"div\",\"custom_11_grid\":\"1\",\"custom_11_limit_length\":\"80\",\"custom_11_margin\":\"remove\",\"custom_11_meta_element\":\"div\",\"custom_11_meta_margin\":\"remove\",\"custom_11_meta_position\":\"above-custom-text\",\"custom_12_element\":\"div\",\"custom_12_grid\":\"1\",\"custom_12_limit_length\":\"80\",\"custom_12_margin\":\"remove\",\"custom_12_meta_element\":\"div\",\"custom_12_meta_margin\":\"remove\",\"custom_12_meta_position\":\"above-custom-text\",\"custom_13_element\":\"div\",\"custom_13_grid\":\"1\",\"custom_13_limit_length\":\"80\",\"custom_13_margin\":\"remove\",\"custom_13_meta_element\":\"div\",\"custom_13_meta_margin\":\"remove\",\"custom_13_meta_position\":\"above-custom-text\",\"custom_14_element\":\"div\",\"custom_14_grid\":\"1\",\"custom_14_limit_length\":\"80\",\"custom_14_margin\":\"remove\",\"custom_14_meta_element\":\"div\",\"custom_14_meta_margin\":\"remove\",\"custom_14_meta_position\":\"above-custom-text\",\"custom_15_element\":\"div\",\"custom_15_grid\":\"1\",\"custom_15_limit_length\":\"80\",\"custom_15_margin\":\"remove\",\"custom_15_meta_element\":\"div\",\"custom_15_meta_margin\":\"remove\",\"custom_15_meta_position\":\"above-custom-text\",\"custom_16_element\":\"div\",\"custom_16_grid\":\"1\",\"custom_16_limit_length\":\"80\",\"custom_16_margin\":\"remove\",\"custom_16_meta_element\":\"div\",\"custom_16_meta_margin\":\"remove\",\"custom_16_meta_position\":\"above-custom-text\",\"custom_17_element\":\"div\",\"custom_17_grid\":\"1\",\"custom_17_limit_length\":\"80\",\"custom_17_margin\":\"remove\",\"custom_17_meta_element\":\"div\",\"custom_17_meta_margin\":\"remove\",\"custom_17_meta_position\":\"above-custom-text\",\"custom_18_element\":\"div\",\"custom_18_grid\":\"1\",\"custom_18_limit_length\":\"80\",\"custom_18_margin\":\"remove\",\"custom_18_meta_element\":\"div\",\"custom_18_meta_margin\":\"remove\",\"custom_18_meta_position\":\"above-custom-text\",\"custom_19_element\":\"div\",\"custom_19_grid\":\"1\",\"custom_19_limit_length\":\"80\",\"custom_19_margin\":\"remove\",\"custom_19_meta_element\":\"div\",\"custom_19_meta_margin\":\"remove\",\"custom_19_meta_position\":\"above-custom-text\",\"custom_1_element\":\"div\",\"custom_1_grid\":\"1\",\"custom_1_limit_length\":\"80\",\"custom_1_margin\":\"remove\",\"custom_1_meta_color\":\"danger\",\"custom_1_meta_element\":\"h3\",\"custom_1_meta_margin\":\"remove\",\"custom_1_meta_position\":\"above-custom-text\",\"custom_1_meta_style\":\"h3\",\"custom_20_element\":\"div\",\"custom_20_grid\":\"1\",\"custom_20_limit_length\":\"80\",\"custom_20_margin\":\"remove\",\"custom_20_meta_element\":\"div\",\"custom_20_meta_margin\":\"remove\",\"custom_20_meta_position\":\"above-custom-text\",\"custom_2_element\":\"div\",\"custom_2_grid\":\"1\",\"custom_2_hover_style\":\"reset\",\"custom_2_limit_length\":\"80\",\"custom_2_margin\":\"remove\",\"custom_2_meta_element\":\"div\",\"custom_2_meta_margin\":\"remove\",\"custom_2_meta_position\":\"above-custom-text\",\"custom_3_element\":\"div\",\"custom_3_grid\":\"2\",\"custom_3_limit_length\":\"80\",\"custom_3_margin\":\"remove\",\"custom_3_meta_color\":\"danger\",\"custom_3_meta_element\":\"h3\",\"custom_3_meta_margin\":\"remove\",\"custom_3_meta_position\":\"above-custom-text\",\"custom_3_meta_style\":\"h3\",\"custom_4_element\":\"div\",\"custom_4_grid\":\"2\",\"custom_4_limit_length\":\"80\",\"custom_4_margin\":\"remove\",\"custom_4_meta_element\":\"div\",\"custom_4_meta_margin\":\"remove\",\"custom_4_meta_position\":\"above-custom-text\",\"custom_5_element\":\"div\",\"custom_5_grid\":\"3\",\"custom_5_limit_length\":\"80\",\"custom_5_margin\":\"remove\",\"custom_5_meta_element\":\"div\",\"custom_5_meta_margin\":\"remove\",\"custom_5_meta_position\":\"above-custom-text\",\"custom_6_element\":\"div\",\"custom_6_grid\":\"3\",\"custom_6_limit_length\":\"80\",\"custom_6_margin\":\"large\",\"custom_6_meta_element\":\"div\",\"custom_6_meta_margin\":\"remove\",\"custom_6_meta_position\":\"above-custom-text\",\"custom_7_element\":\"div\",\"custom_7_grid\":\"1\",\"custom_7_limit_length\":\"80\",\"custom_7_margin\":\"remove\",\"custom_7_meta_element\":\"div\",\"custom_7_meta_margin\":\"remove\",\"custom_7_meta_position\":\"above-custom-text\",\"custom_8_element\":\"div\",\"custom_8_grid\":\"1\",\"custom_8_limit_length\":\"80\",\"custom_8_margin\":\"remove\",\"custom_8_meta_element\":\"div\",\"custom_8_meta_margin\":\"remove\",\"custom_8_meta_position\":\"above-custom-text\",\"custom_9_element\":\"div\",\"custom_9_grid\":\"1\",\"custom_9_limit_length\":\"80\",\"custom_9_margin\":\"remove\",\"custom_9_meta_element\":\"div\",\"custom_9_meta_margin\":\"remove\",\"custom_9_meta_position\":\"above-custom-text\",\"custom_field_sets\":20,\"custom_filters\":10,\"custom_grids\":6,\"filter\":false,\"filter_align\":\"left\",\"filter_all\":true,\"filter_dropdown_grid_default\":\"1-1\",\"filter_grid_breakpoint\":\"m\",\"filter_grid_width\":\"auto\",\"filter_no_items_placeholder\":\"No items found\",\"filter_position\":\"top\",\"filter_sorting\":false,\"filter_sorting_key\":\"\",\"filter_sorting_order\":\"desc\",\"filter_style\":\"tab\",\"grid_1_custom_column_gap\":\"small\",\"grid_1_custom_default\":\"1-1\",\"grid_1_custom_icon_width\":80,\"grid_1_custom_image_align\":\"top\",\"grid_1_custom_image_attr_fetchpriority\":true,\"grid_1_custom_image_attr_loading\":true,\"grid_1_custom_image_grid_breakpoint\":\"@m\",\"grid_1_custom_image_grid_width\":\"1-2\",\"grid_1_custom_image_height\":\"280\",\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_image_svg_color\":\"emphasis\",\"grid_1_custom_panel_padding\":\"small\",\"grid_1_custom_position\":\"item-top\",\"grid_1_custom_row_gap\":\"small\",\"grid_2_custom_column_gap\":\"small\",\"grid_2_custom_default\":\"1-1\",\"grid_2_custom_icon_width\":80,\"grid_2_custom_image_align\":\"top\",\"grid_2_custom_image_grid_breakpoint\":\"@m\",\"grid_2_custom_image_grid_width\":\"1-2\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_image_svg_color\":\"emphasis\",\"grid_2_custom_image_width\":\"110\",\"grid_2_custom_panel_padding\":\"small\",\"grid_2_custom_position\":\"item-top\",\"grid_2_custom_row_gap\":\"small\",\"grid_3_custom_column_gap\":\"small\",\"grid_3_custom_default\":\"1-1\",\"grid_3_custom_icon_width\":80,\"grid_3_custom_image_align\":\"bottom\",\"grid_3_custom_image_attr_fetchpriority\":true,\"grid_3_custom_image_attr_loading\":true,\"grid_3_custom_image_grid_breakpoint\":\"@m\",\"grid_3_custom_image_grid_width\":\"1-2\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin\",\"grid_3_custom_image_svg_color\":\"emphasis\",\"grid_3_custom_panel_padding\":\"small\",\"grid_3_custom_position\":\"above-content\",\"grid_3_custom_row_gap\":\"small\",\"grid_4_custom_column_gap\":\"small\",\"grid_4_custom_default\":\"1-1\",\"grid_4_custom_icon_width\":80,\"grid_4_custom_image_align\":\"top\",\"grid_4_custom_image_grid_breakpoint\":\"@m\",\"grid_4_custom_image_grid_width\":\"1-2\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_image_svg_color\":\"emphasis\",\"grid_4_custom_panel_padding\":\"small\",\"grid_4_custom_position\":\"bellow-content\",\"grid_4_custom_row_gap\":\"small\",\"grid_5_custom_column_gap\":\"small\",\"grid_5_custom_default\":\"1-1\",\"grid_5_custom_icon_width\":80,\"grid_5_custom_image_align\":\"top\",\"grid_5_custom_image_grid_breakpoint\":\"@m\",\"grid_5_custom_image_grid_width\":\"1-2\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_image_svg_color\":\"emphasis\",\"grid_5_custom_panel_padding\":\"small\",\"grid_5_custom_position\":\"bellow-content\",\"grid_5_custom_row_gap\":\"small\",\"grid_6_custom_column_gap\":\"small\",\"grid_6_custom_default\":\"1-1\",\"grid_6_custom_icon_width\":80,\"grid_6_custom_image_align\":\"top\",\"grid_6_custom_image_grid_breakpoint\":\"@m\",\"grid_6_custom_image_grid_width\":\"1-2\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_image_svg_color\":\"emphasis\",\"grid_6_custom_panel_padding\":\"small\",\"grid_6_custom_position\":\"bellow-content\",\"grid_6_custom_row_gap\":\"small\",\"grid_column_gap\":\"medium\",\"grid_default\":\"1-1\",\"grid_medium\":\"1-3\",\"grid_row_gap\":\"large\",\"grid_small\":\"1-2\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_svg_color\":\"emphasis\",\"item_animation\":true,\"lightbox\":false,\"link_button_bottom\":true,\"link_fullwidth\":true,\"link_style\":\"primary\",\"link_text\":\"<span uk-icon=\\\"icon: cart; width: 20; height: 20;\\\" class=\\\"uk-icon uk-margin-small-right\\\"><\\\/span>Quick Buy\",\"link_text_de_de\":\"<span uk-icon=\\\"icon: cart; width: 20; height: 20;\\\" class=\\\"uk-icon uk-margin-small-right\\\"><\\\/span>Schnell zugreifen\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_limit_length\":\"80\",\"meta_style\":\"text-meta\",\"nav\":\"dotnav\",\"nav_align\":\"center\",\"nav_breakpoint\":\"s\",\"panel_link\":true,\"panel_size\":\"small\",\"panel_style\":\"card-secondary\",\"rating_star_background_color\":\"#e5e5e5\",\"rating_star_color\":\"#fc0\",\"rating_star_size\":\"25\",\"rating_star_spacing\":\"3\",\"search\":false,\"search_input_placeholder\":\"Search...\",\"search_input_placeholder_de_de\":\"Search...\",\"search_no_items_placeholder\":\"No items found matching keyword:\",\"search_no_items_placeholder_de_de\":\"No items found matching keyword:\",\"search_title\":true,\"show_content\":false,\"show_custom_1\":true,\"show_custom_10\":false,\"show_custom_11\":false,\"show_custom_12\":false,\"show_custom_13\":false,\"show_custom_14\":false,\"show_custom_15\":false,\"show_custom_16\":false,\"show_custom_17\":false,\"show_custom_18\":false,\"show_custom_19\":false,\"show_custom_2\":true,\"show_custom_20\":false,\"show_custom_3\":true,\"show_custom_4\":true,\"show_custom_5\":true,\"show_custom_6\":true,\"show_custom_7\":false,\"show_custom_8\":false,\"show_custom_9\":false,\"show_custom_filter_1\":false,\"show_custom_filter_10\":false,\"show_custom_filter_11\":false,\"show_custom_filter_12\":false,\"show_custom_filter_13\":false,\"show_custom_filter_14\":false,\"show_custom_filter_15\":false,\"show_custom_filter_16\":false,\"show_custom_filter_17\":false,\"show_custom_filter_18\":false,\"show_custom_filter_19\":false,\"show_custom_filter_2\":false,\"show_custom_filter_20\":false,\"show_custom_filter_3\":false,\"show_custom_filter_4\":false,\"show_custom_filter_5\":false,\"show_custom_filter_6\":false,\"show_custom_filter_7\":false,\"show_custom_filter_8\":false,\"show_custom_filter_9\":false,\"show_custom_image_1\":true,\"show_custom_image_10\":true,\"show_custom_image_11\":true,\"show_custom_image_12\":true,\"show_custom_image_13\":true,\"show_custom_image_14\":true,\"show_custom_image_15\":true,\"show_custom_image_16\":true,\"show_custom_image_17\":true,\"show_custom_image_18\":true,\"show_custom_image_19\":true,\"show_custom_image_2\":true,\"show_custom_image_20\":true,\"show_custom_image_3\":true,\"show_custom_image_4\":true,\"show_custom_image_5\":true,\"show_custom_image_6\":true,\"show_custom_image_7\":true,\"show_custom_image_8\":true,\"show_custom_image_9\":true,\"show_custom_link_1\":true,\"show_custom_link_10\":true,\"show_custom_link_11\":true,\"show_custom_link_12\":true,\"show_custom_link_13\":true,\"show_custom_link_14\":true,\"show_custom_link_15\":true,\"show_custom_link_16\":true,\"show_custom_link_17\":true,\"show_custom_link_18\":true,\"show_custom_link_19\":true,\"show_custom_link_2\":true,\"show_custom_link_20\":true,\"show_custom_link_3\":true,\"show_custom_link_4\":true,\"show_custom_link_5\":true,\"show_custom_link_6\":true,\"show_custom_link_7\":true,\"show_custom_link_8\":true,\"show_custom_link_9\":true,\"show_custom_meta_1\":true,\"show_custom_meta_10\":true,\"show_custom_meta_11\":true,\"show_custom_meta_12\":true,\"show_custom_meta_13\":true,\"show_custom_meta_14\":true,\"show_custom_meta_15\":true,\"show_custom_meta_16\":true,\"show_custom_meta_17\":true,\"show_custom_meta_18\":true,\"show_custom_meta_19\":true,\"show_custom_meta_2\":true,\"show_custom_meta_20\":true,\"show_custom_meta_3\":true,\"show_custom_meta_4\":true,\"show_custom_meta_5\":true,\"show_custom_meta_6\":true,\"show_custom_meta_7\":true,\"show_custom_meta_8\":true,\"show_custom_meta_9\":true,\"show_custom_settings\":\"all\",\"show_custom_text_1\":true,\"show_custom_text_10\":true,\"show_custom_text_11\":true,\"show_custom_text_12\":true,\"show_custom_text_13\":true,\"show_custom_text_14\":true,\"show_custom_text_15\":true,\"show_custom_text_16\":true,\"show_custom_text_17\":true,\"show_custom_text_18\":true,\"show_custom_text_19\":true,\"show_custom_text_2\":true,\"show_custom_text_20\":true,\"show_custom_text_3\":true,\"show_custom_text_4\":true,\"show_custom_text_5\":true,\"show_custom_text_6\":true,\"show_custom_text_7\":true,\"show_custom_text_8\":true,\"show_custom_text_9\":true,\"show_element_settings\":\"element_link\",\"show_image\":false,\"show_link\":true,\"show_meta\":false,\"show_rating\":false,\"show_sublayout\":true,\"show_title\":false,\"slidenav\":\"default\",\"slidenav_breakpoint\":\"s\",\"slidenav_grid\":\"default\",\"slidenav_margin\":\"\",\"slidenav_outside_breakpoint\":\"xl\",\"slider\":false,\"slider_autoplay_pause\":true,\"slider_width_default\":\"1-1\",\"sublayout_align\":\"bottom\",\"sublayout_margin\":\"small\",\"sublayout_modal_padding\":\"remove\",\"sublayout_modal_width\":\"1060\",\"sublayout_modal_wrap\":\"all\",\"sublayout_modal_wrap_custom\":\"1\",\"sublayout_mode\":\"mixed\",\"sublayout_position\":\"grid_2\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_limit_length\":\"80\",\"use_custom_fields\":true,\"visibility\":\"s\"},\"children\":[{\"type\":\"fs_grid_item\",\"props\":{\"custom_link_2_toggle\":false,\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_item_margin\":\"inherit\",\"grid_1_custom_item_text_align_breakpoint\":\"inherit\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_item_margin\":\"inherit\",\"grid_2_custom_item_text_align_breakpoint\":\"inherit\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin-small\",\"grid_3_custom_item_margin\":\"inherit\",\"grid_3_custom_item_text_align_breakpoint\":\"inherit\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_item_margin\":\"inherit\",\"grid_4_custom_item_text_align_breakpoint\":\"inherit\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_item_margin\":\"inherit\",\"grid_5_custom_item_text_align_breakpoint\":\"inherit\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_item_column_gap\":\"small\",\"grid_6_custom_item_margin\":\"inherit\",\"grid_6_custom_item_text_align_breakpoint\":\"inherit\",\"item_class\":\"bevas-item\",\"item_disable_custom_grid_2\":false,\"item_disable_custom_grid_3\":true,\"link_advanced\":false,\"link_item_toggle\":true,\"show_custom_fields\":\"fieldset_1\",\"show_custom_settings\":\"all\"},\"source\":{\"props\":{\"custom_image_1\":{\"filters\":{\"search\":\"\"},\"name\":\"featuredImage.url\"},\"custom_meta_1\":{\"filters\":{\"search\":\"\"},\"name\":\"title\"},\"custom_text_1\":{\"filters\":{\"search\":\"\"},\"name\":\"excerpt\"},\"custom_text_2\":{\"filters\":{\"search\":\"\"},\"name\":\"woocommerce.price\"},\"custom_meta_3\":{\"filters\":{\"search\":\"\"},\"name\":\"title\"},\"custom_image_3\":{\"filters\":{\"search\":\"\"},\"name\":\"featuredImage.url\"},\"title\":{\"filters\":{\"search\":\"\"},\"name\":\"title\"},\"link_panel_custom\":{\"filters\":{\"search\":\"\"},\"name\":\"link\"}},\"query\":{\"name\":\"products.customProduct\",\"arguments\":{\"terms\":[],\"product_cat_operator\":\"IN\",\"product_tag_operator\":\"IN\",\"product_visibility_operator\":\"IN\",\"users\":[],\"users_operator\":\"IN\",\"offset\":0,\"order\":\"date\",\"order_direction\":\"DESC\",\"id\":1470,\"pa_blend_operator\":\"IN\",\"pa_format_operator\":\"IN\",\"pa_size_operator\":\"IN\",\"product_brand_operator\":\"IN\"}}},\"children\":[{\"type\":\"fragment\",\"props\":{\"class\":\"product-container\",\"css\":\".uk-modal-close-outside {display: none!important;}\",\"margin\":\"default\",\"margin_remove_bottom\":true},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"css\":\".el-column {\\n    background: #FDF9F4;\\n}\\n@media (max-width: 1199px) {\\n\\t.el-column {\\n \\t   background-color: transparent;\\n\\t}\\t\\n}\",\"image_position\":\"center-center\",\"padding\":\"none\",\"position_sticky_breakpoint\":\"m\",\"style\":\"tile-muted\",\"vertical_align\":\"middle\",\"width_large\":\"large\",\"width_medium\":\"1-1\",\"width_small\":\"1-1\"},\"children\":[{\"type\":\"fs_grid\",\"props\":{\"advanced_enable_grid_1_custom\":true,\"advanced_enable_grid_2_custom\":false,\"advanced_enable_grid_3_custom\":false,\"advanced_enable_grid_4_custom\":false,\"advanced_enable_grid_5_custom\":false,\"advanced_enable_grid_6_custom\":false,\"advanced_enable_grids_empty_disable\":false,\"advanced_enable_grids_empty_notification\":true,\"advanced_enable_grids_hightlight\":true,\"advanced_grid\":false,\"advanced_item_layout\":false,\"class\":\"bevas-variations-image-slider\",\"content_column_breakpoint\":\"m\",\"content_limit_length\":\"80\",\"css\":\".el-element {background: #FDF9F4;padding: 40px 30px 10px 30px;}\",\"custom_10_element\":\"div\",\"custom_10_grid\":\"1\",\"custom_10_limit_length\":\"80\",\"custom_10_margin\":\"remove\",\"custom_10_meta_element\":\"div\",\"custom_10_meta_margin\":\"remove\",\"custom_10_meta_position\":\"above-custom-text\",\"custom_11_element\":\"div\",\"custom_11_grid\":\"1\",\"custom_11_limit_length\":\"80\",\"custom_11_margin\":\"remove\",\"custom_11_meta_element\":\"div\",\"custom_11_meta_margin\":\"remove\",\"custom_11_meta_position\":\"above-custom-text\",\"custom_12_element\":\"div\",\"custom_12_grid\":\"1\",\"custom_12_limit_length\":\"80\",\"custom_12_margin\":\"remove\",\"custom_12_meta_element\":\"div\",\"custom_12_meta_margin\":\"remove\",\"custom_12_meta_position\":\"above-custom-text\",\"custom_13_element\":\"div\",\"custom_13_grid\":\"1\",\"custom_13_limit_length\":\"80\",\"custom_13_margin\":\"remove\",\"custom_13_meta_element\":\"div\",\"custom_13_meta_margin\":\"remove\",\"custom_13_meta_position\":\"above-custom-text\",\"custom_14_element\":\"div\",\"custom_14_grid\":\"1\",\"custom_14_limit_length\":\"80\",\"custom_14_margin\":\"remove\",\"custom_14_meta_element\":\"div\",\"custom_14_meta_margin\":\"remove\",\"custom_14_meta_position\":\"above-custom-text\",\"custom_15_element\":\"div\",\"custom_15_grid\":\"1\",\"custom_15_limit_length\":\"80\",\"custom_15_margin\":\"remove\",\"custom_15_meta_element\":\"div\",\"custom_15_meta_margin\":\"remove\",\"custom_15_meta_position\":\"above-custom-text\",\"custom_16_element\":\"div\",\"custom_16_grid\":\"1\",\"custom_16_limit_length\":\"80\",\"custom_16_margin\":\"remove\",\"custom_16_meta_element\":\"div\",\"custom_16_meta_margin\":\"remove\",\"custom_16_meta_position\":\"above-custom-text\",\"custom_17_element\":\"div\",\"custom_17_grid\":\"1\",\"custom_17_limit_length\":\"80\",\"custom_17_margin\":\"remove\",\"custom_17_meta_element\":\"div\",\"custom_17_meta_margin\":\"remove\",\"custom_17_meta_position\":\"above-custom-text\",\"custom_18_element\":\"div\",\"custom_18_grid\":\"1\",\"custom_18_limit_length\":\"80\",\"custom_18_margin\":\"remove\",\"custom_18_meta_element\":\"div\",\"custom_18_meta_margin\":\"remove\",\"custom_18_meta_position\":\"above-custom-text\",\"custom_19_element\":\"div\",\"custom_19_grid\":\"1\",\"custom_19_limit_length\":\"80\",\"custom_19_margin\":\"remove\",\"custom_19_meta_element\":\"div\",\"custom_19_meta_margin\":\"remove\",\"custom_19_meta_position\":\"above-custom-text\",\"custom_1_element\":\"div\",\"custom_1_grid\":\"1\",\"custom_1_limit_length\":\"80\",\"custom_1_margin\":\"remove\",\"custom_1_meta_element\":\"div\",\"custom_1_meta_margin\":\"remove\",\"custom_1_meta_position\":\"above-custom-text\",\"custom_20_element\":\"div\",\"custom_20_grid\":\"1\",\"custom_20_limit_length\":\"80\",\"custom_20_margin\":\"remove\",\"custom_20_meta_element\":\"div\",\"custom_20_meta_margin\":\"remove\",\"custom_20_meta_position\":\"above-custom-text\",\"custom_2_element\":\"div\",\"custom_2_grid\":\"1\",\"custom_2_limit_length\":\"80\",\"custom_2_margin\":\"remove\",\"custom_2_meta_element\":\"div\",\"custom_2_meta_margin\":\"remove\",\"custom_2_meta_position\":\"above-custom-text\",\"custom_3_element\":\"div\",\"custom_3_grid\":\"1\",\"custom_3_limit_length\":\"80\",\"custom_3_margin\":\"remove\",\"custom_3_meta_element\":\"div\",\"custom_3_meta_margin\":\"remove\",\"custom_3_meta_position\":\"above-custom-text\",\"custom_4_element\":\"div\",\"custom_4_grid\":\"1\",\"custom_4_limit_length\":\"80\",\"custom_4_margin\":\"remove\",\"custom_4_meta_element\":\"div\",\"custom_4_meta_margin\":\"remove\",\"custom_4_meta_position\":\"above-custom-text\",\"custom_5_element\":\"div\",\"custom_5_grid\":\"1\",\"custom_5_limit_length\":\"80\",\"custom_5_margin\":\"remove\",\"custom_5_meta_element\":\"div\",\"custom_5_meta_margin\":\"remove\",\"custom_5_meta_position\":\"above-custom-text\",\"custom_6_element\":\"div\",\"custom_6_grid\":\"1\",\"custom_6_limit_length\":\"80\",\"custom_6_margin\":\"remove\",\"custom_6_meta_element\":\"div\",\"custom_6_meta_margin\":\"remove\",\"custom_6_meta_position\":\"above-custom-text\",\"custom_7_element\":\"div\",\"custom_7_grid\":\"1\",\"custom_7_limit_length\":\"80\",\"custom_7_margin\":\"remove\",\"custom_7_meta_element\":\"div\",\"custom_7_meta_margin\":\"remove\",\"custom_7_meta_position\":\"above-custom-text\",\"custom_8_element\":\"div\",\"custom_8_grid\":\"1\",\"custom_8_limit_length\":\"80\",\"custom_8_margin\":\"remove\",\"custom_8_meta_element\":\"div\",\"custom_8_meta_margin\":\"remove\",\"custom_8_meta_position\":\"above-custom-text\",\"custom_9_element\":\"div\",\"custom_9_grid\":\"1\",\"custom_9_limit_length\":\"80\",\"custom_9_margin\":\"remove\",\"custom_9_meta_element\":\"div\",\"custom_9_meta_margin\":\"remove\",\"custom_9_meta_position\":\"above-custom-text\",\"custom_field_sets\":20,\"custom_filters\":10,\"custom_grids\":6,\"filter\":false,\"filter_align\":\"left\",\"filter_all\":true,\"filter_dropdown_grid_default\":\"1-1\",\"filter_grid_breakpoint\":\"m\",\"filter_grid_width\":\"auto\",\"filter_no_items_placeholder\":\"No items found\",\"filter_position\":\"top\",\"filter_sorting\":false,\"filter_sorting_key\":\"\",\"filter_sorting_order\":\"desc\",\"filter_style\":\"tab\",\"grid_1_custom_column_gap\":\"small\",\"grid_1_custom_default\":\"1-1\",\"grid_1_custom_icon_width\":80,\"grid_1_custom_image_align\":\"top\",\"grid_1_custom_image_grid_breakpoint\":\"@m\",\"grid_1_custom_image_grid_width\":\"1-2\",\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_image_svg_color\":\"emphasis\",\"grid_1_custom_panel_padding\":\"small\",\"grid_1_custom_position\":\"above-content\",\"grid_1_custom_row_gap\":\"small\",\"grid_2_custom_column_gap\":\"small\",\"grid_2_custom_default\":\"1-1\",\"grid_2_custom_icon_width\":80,\"grid_2_custom_image_align\":\"top\",\"grid_2_custom_image_grid_breakpoint\":\"@m\",\"grid_2_custom_image_grid_width\":\"1-2\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_image_svg_color\":\"emphasis\",\"grid_2_custom_panel_padding\":\"small\",\"grid_2_custom_position\":\"above-content\",\"grid_2_custom_row_gap\":\"small\",\"grid_3_custom_column_gap\":\"small\",\"grid_3_custom_default\":\"1-1\",\"grid_3_custom_icon_width\":80,\"grid_3_custom_image_align\":\"top\",\"grid_3_custom_image_grid_breakpoint\":\"@m\",\"grid_3_custom_image_grid_width\":\"1-2\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin-small\",\"grid_3_custom_image_svg_color\":\"emphasis\",\"grid_3_custom_panel_padding\":\"small\",\"grid_3_custom_position\":\"above-content\",\"grid_3_custom_row_gap\":\"small\",\"grid_4_custom_column_gap\":\"small\",\"grid_4_custom_default\":\"1-1\",\"grid_4_custom_icon_width\":80,\"grid_4_custom_image_align\":\"top\",\"grid_4_custom_image_grid_breakpoint\":\"@m\",\"grid_4_custom_image_grid_width\":\"1-2\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_image_svg_color\":\"emphasis\",\"grid_4_custom_panel_padding\":\"small\",\"grid_4_custom_position\":\"bellow-content\",\"grid_4_custom_row_gap\":\"small\",\"grid_5_custom_column_gap\":\"small\",\"grid_5_custom_default\":\"1-1\",\"grid_5_custom_icon_width\":80,\"grid_5_custom_image_align\":\"top\",\"grid_5_custom_image_grid_breakpoint\":\"@m\",\"grid_5_custom_image_grid_width\":\"1-2\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_image_svg_color\":\"emphasis\",\"grid_5_custom_panel_padding\":\"small\",\"grid_5_custom_position\":\"bellow-content\",\"grid_5_custom_row_gap\":\"small\",\"grid_6_custom_column_gap\":\"small\",\"grid_6_custom_default\":\"1-1\",\"grid_6_custom_icon_width\":80,\"grid_6_custom_image_align\":\"top\",\"grid_6_custom_image_grid_breakpoint\":\"@m\",\"grid_6_custom_image_grid_width\":\"1-2\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_image_svg_color\":\"emphasis\",\"grid_6_custom_panel_padding\":\"small\",\"grid_6_custom_position\":\"bellow-content\",\"grid_6_custom_row_gap\":\"small\",\"grid_default\":\"1-1\",\"grid_masonry\":false,\"grid_medium\":\"\",\"icon_width\":80,\"image_align\":\"top\",\"image_grid_breakpoint\":\"m\",\"image_grid_width\":\"1-2\",\"image_height\":\"300\",\"image_svg_color\":\"emphasis\",\"item_animation\":true,\"lightbox\":false,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_limit_length\":\"80\",\"meta_style\":\"text-meta\",\"nav\":\"\",\"nav_align\":\"center\",\"nav_breakpoint\":\"s\",\"rating_star_background_color\":\"#e5e5e5\",\"rating_star_color\":\"#fc0\",\"rating_star_size\":\"25\",\"rating_star_spacing\":\"3\",\"search\":false,\"search_input_placeholder\":\"Search...\",\"search_input_placeholder_de_de\":\"Search...\",\"search_no_items_placeholder\":\"No items found matching keyword:\",\"search_no_items_placeholder_de_de\":\"No items found matching keyword:\",\"search_title\":true,\"show_content\":true,\"show_custom_1\":false,\"show_custom_10\":false,\"show_custom_11\":false,\"show_custom_12\":false,\"show_custom_13\":false,\"show_custom_14\":false,\"show_custom_15\":false,\"show_custom_16\":false,\"show_custom_17\":false,\"show_custom_18\":false,\"show_custom_19\":false,\"show_custom_2\":false,\"show_custom_20\":false,\"show_custom_3\":false,\"show_custom_4\":false,\"show_custom_5\":false,\"show_custom_6\":false,\"show_custom_7\":false,\"show_custom_8\":false,\"show_custom_9\":false,\"show_custom_filter_1\":false,\"show_custom_filter_10\":false,\"show_custom_filter_11\":false,\"show_custom_filter_12\":false,\"show_custom_filter_13\":false,\"show_custom_filter_14\":false,\"show_custom_filter_15\":false,\"show_custom_filter_16\":false,\"show_custom_filter_17\":false,\"show_custom_filter_18\":false,\"show_custom_filter_19\":false,\"show_custom_filter_2\":false,\"show_custom_filter_20\":false,\"show_custom_filter_3\":false,\"show_custom_filter_4\":false,\"show_custom_filter_5\":false,\"show_custom_filter_6\":false,\"show_custom_filter_7\":false,\"show_custom_filter_8\":false,\"show_custom_filter_9\":false,\"show_custom_image_1\":true,\"show_custom_image_10\":true,\"show_custom_image_11\":true,\"show_custom_image_12\":true,\"show_custom_image_13\":true,\"show_custom_image_14\":true,\"show_custom_image_15\":true,\"show_custom_image_16\":true,\"show_custom_image_17\":true,\"show_custom_image_18\":true,\"show_custom_image_19\":true,\"show_custom_image_2\":true,\"show_custom_image_20\":true,\"show_custom_image_3\":true,\"show_custom_image_4\":true,\"show_custom_image_5\":true,\"show_custom_image_6\":true,\"show_custom_image_7\":true,\"show_custom_image_8\":true,\"show_custom_image_9\":true,\"show_custom_link_1\":true,\"show_custom_link_10\":true,\"show_custom_link_11\":true,\"show_custom_link_12\":true,\"show_custom_link_13\":true,\"show_custom_link_14\":true,\"show_custom_link_15\":true,\"show_custom_link_16\":true,\"show_custom_link_17\":true,\"show_custom_link_18\":true,\"show_custom_link_19\":true,\"show_custom_link_2\":true,\"show_custom_link_20\":true,\"show_custom_link_3\":true,\"show_custom_link_4\":true,\"show_custom_link_5\":true,\"show_custom_link_6\":true,\"show_custom_link_7\":true,\"show_custom_link_8\":true,\"show_custom_link_9\":true,\"show_custom_meta_1\":true,\"show_custom_meta_10\":true,\"show_custom_meta_11\":true,\"show_custom_meta_12\":true,\"show_custom_meta_13\":true,\"show_custom_meta_14\":true,\"show_custom_meta_15\":true,\"show_custom_meta_16\":true,\"show_custom_meta_17\":true,\"show_custom_meta_18\":true,\"show_custom_meta_19\":true,\"show_custom_meta_2\":true,\"show_custom_meta_20\":true,\"show_custom_meta_3\":true,\"show_custom_meta_4\":true,\"show_custom_meta_5\":true,\"show_custom_meta_6\":true,\"show_custom_meta_7\":true,\"show_custom_meta_8\":true,\"show_custom_meta_9\":true,\"show_custom_settings\":\"all\",\"show_custom_text_1\":true,\"show_custom_text_10\":true,\"show_custom_text_11\":true,\"show_custom_text_12\":true,\"show_custom_text_13\":true,\"show_custom_text_14\":true,\"show_custom_text_15\":true,\"show_custom_text_16\":true,\"show_custom_text_17\":true,\"show_custom_text_18\":true,\"show_custom_text_19\":true,\"show_custom_text_2\":true,\"show_custom_text_20\":true,\"show_custom_text_3\":true,\"show_custom_text_4\":true,\"show_custom_text_5\":true,\"show_custom_text_6\":true,\"show_custom_text_7\":true,\"show_custom_text_8\":true,\"show_custom_text_9\":true,\"show_element_settings\":\"all\",\"show_image\":true,\"show_link\":true,\"show_meta\":true,\"show_rating\":false,\"show_title\":true,\"slidenav\":\"\",\"slidenav_breakpoint\":\"s\",\"slidenav_grid\":\"default\",\"slidenav_margin\":\"\",\"slidenav_outside_breakpoint\":\"xl\",\"slider\":true,\"slider_autoplay_pause\":true,\"slider_center\":true,\"slider_width_default\":\"1-1\",\"status\":\"disabled\",\"sublayout_align\":\"top\",\"sublayout_modal_wrap\":\"all\",\"sublayout_mode\":\"native\",\"sublayout_position\":\"bellow-content\",\"text_align\":\"center\",\"title_align\":\"top\",\"title_element\":\"h3\",\"title_grid_breakpoint\":\"m\",\"title_grid_width\":\"1-2\",\"title_hover_style\":\"reset\",\"title_limit_length\":\"80\",\"use_custom_fields\":false},\"children\":[{\"type\":\"fs_grid_item\",\"props\":{\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_item_margin\":\"inherit\",\"grid_1_custom_item_text_align_breakpoint\":\"inherit\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_item_margin\":\"inherit\",\"grid_2_custom_item_text_align_breakpoint\":\"inherit\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin-small\",\"grid_3_custom_item_margin\":\"inherit\",\"grid_3_custom_item_text_align_breakpoint\":\"inherit\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_item_margin\":\"inherit\",\"grid_4_custom_item_text_align_breakpoint\":\"inherit\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_item_margin\":\"inherit\",\"grid_5_custom_item_text_align_breakpoint\":\"inherit\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_item_column_gap\":\"small\",\"grid_6_custom_item_margin\":\"inherit\",\"grid_6_custom_item_text_align_breakpoint\":\"inherit\",\"image\":\"wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png\",\"image_de_de\":\"wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png\",\"item_attrs_tag\":\"data-format=3\",\"show_custom_fields\":\"fieldset_1\",\"show_custom_settings\":\"all\"}},{\"type\":\"fs_grid_item\",\"props\":{\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_item_margin\":\"inherit\",\"grid_1_custom_item_text_align_breakpoint\":\"inherit\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_item_margin\":\"inherit\",\"grid_2_custom_item_text_align_breakpoint\":\"inherit\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin-small\",\"grid_3_custom_item_margin\":\"inherit\",\"grid_3_custom_item_text_align_breakpoint\":\"inherit\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_item_margin\":\"inherit\",\"grid_4_custom_item_text_align_breakpoint\":\"inherit\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_item_margin\":\"inherit\",\"grid_5_custom_item_text_align_breakpoint\":\"inherit\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_item_column_gap\":\"small\",\"grid_6_custom_item_margin\":\"inherit\",\"grid_6_custom_item_text_align_breakpoint\":\"inherit\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Whole-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png\",\"item_attrs_tag\":\"data-format=1\",\"show_custom_fields\":\"fieldset_1\",\"show_custom_settings\":\"all\"}},{\"type\":\"fs_grid_item\",\"props\":{\"grid_1_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_1_custom_image_margin_top\":\"uk-margin-small\",\"grid_1_custom_item_margin\":\"inherit\",\"grid_1_custom_item_text_align_breakpoint\":\"inherit\",\"grid_2_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_2_custom_image_margin_top\":\"uk-margin-small\",\"grid_2_custom_item_margin\":\"inherit\",\"grid_2_custom_item_text_align_breakpoint\":\"inherit\",\"grid_3_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_3_custom_image_margin_top\":\"uk-margin-small\",\"grid_3_custom_item_margin\":\"inherit\",\"grid_3_custom_item_text_align_breakpoint\":\"inherit\",\"grid_4_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_4_custom_image_margin_top\":\"uk-margin-small\",\"grid_4_custom_item_margin\":\"inherit\",\"grid_4_custom_item_text_align_breakpoint\":\"inherit\",\"grid_5_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_5_custom_image_margin_top\":\"uk-margin-small\",\"grid_5_custom_item_margin\":\"inherit\",\"grid_5_custom_item_text_align_breakpoint\":\"inherit\",\"grid_6_custom_image_margin_bottom\":\"uk-margin-small\",\"grid_6_custom_image_margin_top\":\"uk-margin-small\",\"grid_6_custom_item_column_gap\":\"small\",\"grid_6_custom_item_margin\":\"inherit\",\"grid_6_custom_item_text_align_breakpoint\":\"inherit\",\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Ground-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png\",\"item_attrs_tag\":\"data-format=2\",\"show_custom_fields\":\"fieldset_1\",\"show_custom_settings\":\"all\"}}],\"name\":\"Attribute images\"},{\"type\":\"slideshow\",\"props\":{\"class\":\"bevas-variations-image-slider\",\"css\":\".el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\",\"image_loading\":true,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"nav\":\"\",\"nav_align\":\"center\",\"nav_breakpoint\":\"s\",\"nav_position\":\"bottom-center\",\"nav_position_margin\":\"medium\",\"overlay_animation\":\"parallax\",\"overlay_container\":\"default\",\"overlay_position\":\"center\",\"show_content\":true,\"show_link\":true,\"show_meta\":true,\"show_thumbnail\":true,\"show_title\":true,\"slidenav\":\"\",\"slidenav_breakpoint\":\"s\",\"slidenav_margin\":\"medium\",\"slidenav_outside_breakpoint\":\"xl\",\"slideshow_autoplay_pause\":true,\"slideshow_min_height\":\"\",\"slideshow_ratio\":\"3:4\",\"status\":\"disabled\",\"text_align\":\"center\",\"thumbnav_height\":\"75\",\"thumbnav_svg_color\":\"emphasis\",\"thumbnav_width\":\"100\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"},\"children\":[{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png\",\"image_de_de\":\"wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png\"}},{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Whole-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png\"}},{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Ground-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png\"}}],\"name\":\"Attribute images - slideshow\"},{\"type\":\"slideshow\",\"props\":{\"class\":\"bevas-variations-image-slider\",\"css\":\".el-element {\\n    background: #fdf9f4;\\n    height: 500px;\\n\\tpadding: 40px 30px 20px 30px;\\n}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\\n@media(max-width: 640px){\\n    .el-element {\\n        height: inherit;\\n    }\\n    .el-image {\\n        max-height: 300px;\\n    }\\n}\\n.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\",\"image_loading\":true,\"link_style\":\"default\",\"link_text\":\"Read more\",\"margin\":\"default\",\"meta_align\":\"below-title\",\"meta_element\":\"div\",\"meta_style\":\"text-meta\",\"nav\":\"\",\"nav_align\":\"center\",\"nav_breakpoint\":\"s\",\"nav_position\":\"bottom-center\",\"nav_position_margin\":\"medium\",\"overlay_animation\":\"parallax\",\"overlay_container\":\"default\",\"overlay_position\":\"center\",\"show_content\":true,\"show_link\":true,\"show_meta\":true,\"show_thumbnail\":true,\"show_title\":true,\"slidenav\":\"\",\"slidenav_breakpoint\":\"s\",\"slidenav_margin\":\"medium\",\"slidenav_outside_breakpoint\":\"xl\",\"slideshow_autoplay_pause\":true,\"slideshow_min_height\":\"\",\"slideshow_ratio\":\"3:4\",\"text_align\":\"center\",\"thumbnav_height\":\"75\",\"thumbnav_svg_color\":\"emphasis\",\"thumbnav_width\":\"100\",\"title_element\":\"h3\",\"title_hover_style\":\"reset\"},\"children\":[{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Focus.png\",\"image_alt\":\"Pods-English-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Fokus.png\"}},{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Ground-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png\"}},{\"type\":\"slideshow_item\",\"props\":{\"image\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png\",\"image_alt\":\"Standard-Pouch-English-Whole-Focus\",\"image_de_de\":\"wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png\"}}],\"name\":\"Phase 2 - Attribute images - slideshow - Focus\"}]},{\"type\":\"column\",\"props\":{\"css\":\".el-column {padding: 40px;}\",\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_large\":\"expand\",\"width_medium\":\"1-1\",\"width_small\":\"1-1\"},\"children\":[{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>\",\"css\":\".el-element {\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n    width: 100%;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(--color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}\",\"margin\":\"default\",\"text_align\":\"right\"},\"name\":\"Close button\"},{\"type\":\"fragment\",\"props\":{\"css\":\".el-element {\\n    color: var(--color-red);\\n}\",\"margin\":\"small\"},\"children\":[{\"type\":\"row\",\"props\":{\"layout\":\"3-5,2-5\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"3-5\",\"width_small\":\"3-5\"},\"children\":[{\"type\":\"headline\",\"props\":{\"css\":\".el-element {\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}\",\"margin\":\"small\",\"margin_remove_bottom\":true,\"margin_remove_top\":true,\"text_align\":\"left\",\"title_color\":\"primary\",\"title_element\":\"h3\",\"title_style\":\"h3\"},\"source_extended\":{\"props\":{\"content\":{\"name\":\"title\",\"query\":{\"name\":\"#parent\"}}}},\"name\":\"Headl - phase 2\",\"source\":[]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"vertical_align\":\"middle\",\"width_medium\":\"2-5\",\"width_small\":\"2-5\"},\"children\":[{\"type\":\"text\",\"props\":{\"class\":\"stock-status uk-invisible\",\"column_breakpoint\":\"m\",\"content\":\"Currently sold out\",\"content_de_de\":\"Aktuell ausverkauft\",\"margin\":\"default\",\"text_align\":\"right\"},\"name\":\"Out of stock - custom\"}]}]}],\"name\":\"Headline + stock\"},{\"type\":\"alert\",\"props\":{\"alert_size\":false,\"alert_style\":\"danger\",\"class\":\"uk-hidden\",\"content\":\"\n\n<p>Please select Format!<\\\/p>\",\"content_de_de\":\"\n\n<p>Bitte w\\u00e4hlen Sie Form!<\\\/p>\",\"content_margin\":\"remove\",\"id\":\"bevas-variation-alert\",\"text_align\":\"center\",\"title_element\":\"h3\"},\"name\":\"widg - 2\"},{\"type\":\"text\",\"props\":{\"column_breakpoint\":\"m\",\"content\":\"Vitamins B3, B6 and B12 contribute to normal energy-yielding metabolism, normal psychological function and the reduction of tiredness and fatigue. Zinc aids normal cognitive function. Vitamin B5 supports normal mental performance.\",\"content_de_de\":\"Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n\",\"css\":\".el-element {\\n    color: var(--Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\n}\",\"margin\":\"default\"},\"name\":\"Additional description\"},{\"type\":\"fragment\",\"props\":{\"class\":\"bevas-attribute-buttons\",\"margin\":\"remove-vertical\",\"margin_remove_top\":true},\"children\":[{\"type\":\"row\",\"props\":{\"class\":\"uk-grid-match\",\"column_gap\":\"collapse\",\"layout\":\"1-3,1-3,1-3\",\"parallax\":false,\"row_gap\":\"collapse\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_default\":\"1-3\"},\"children\":[{\"type\":\"button\",\"props\":{\"attributes\":\"data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules\",\"class\":\"attribute-button attribute-button-1 selected\",\"fullwidth\":true,\"grid_column_gap\":\"collapse\",\"grid_row_gap\":\"collapse\",\"margin\":\"default\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Nespresso\\u00ae Original capsules\",\"content_de_de\":\"Nespresso\\u00ae Originale Kapseln\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"#\"}}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_default\":\"1-3\"},\"children\":[{\"type\":\"button\",\"props\":{\"attributes\":\"data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g\",\"class\":\"attribute-button attribute-button-2\",\"fullwidth\":true,\"grid_column_gap\":\"collapse\",\"grid_row_gap\":\"collapse\",\"margin\":\"default\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Ground\",\"content_de_de\":\"Mittelfein gemahlen\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"#\"}}]}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_default\":\"1-3\"},\"children\":[{\"type\":\"button\",\"props\":{\"attributes\":\"data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g\",\"class\":\"attribute-button attribute-button-3 \",\"fullwidth\":true,\"grid_column_gap\":\"collapse\",\"grid_row_gap\":\"collapse\",\"margin\":\"default\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Whole&nbsp;Beans \",\"content_de_de\":\"Ganze Bohnen\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"#\"}}]}]}]}],\"name\":\"Attribute buttons\"},{\"type\":\"text\",\"props\":{\"class\":\"bevas-restricted-visible\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<p><strong>We're sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>\",\"content_de_de\":\"\n\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>\",\"margin\":\"default\",\"margin_remove_top\":false,\"text_color\":\"emphasis\",\"text_style\":\"small\"},\"name\":\"Reg Interest copy\"},{\"type\":\"text\",\"props\":{\"class\":\"bevas-restricted-visiblez\",\"column_breakpoint\":\"m\",\"content\":\"\n\n<p><span>We are sorry but due to exceptional demand, we are currently sold out of all BEVAS coffee. New stock is expected to arrive in the coming days.<\\\/span><\\\/p>\",\"content_de_de\":\"\n\n<p><span>Es tut uns sehr leid, aber aufgrund au\\u00dfergew\\u00f6hnlich hoher Nachfrage sind derzeit alle BEVAS-Mischungen ausverkauft. Neue Ware wird in den kommenden Tagen erwartet.<\\\/span><\\\/p>\",\"margin\":\"default\",\"margin_remove_top\":false,\"text_color\":\"emphasis\",\"text_style\":\"small\"},\"name\":\"Reg Interest copy - sold out\"},{\"type\":\"fragment\",\"props\":{\"class\":\"bevas-restricted-visiblez\",\"margin\":\"default\"},\"children\":[{\"type\":\"row\",\"props\":{\"column_gap\":\"small\",\"layout\":\"1-2,1-2\",\"row_gap\":\"medium\"},\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"button\",\"props\":{\"class\":\"bevas-restricted-visiblez\",\"fullwidth\":true,\"grid_column_gap\":\"small\",\"grid_row_gap\":\"small\",\"margin\":\"default\"},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"default\",\"content\":\"Explore\",\"content_de_de\":\"Entdecken\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link_aria_label\":\"Link to Blend page\",\"link_title\":\"Link to Blend page\"},\"source\":{\"props\":{\"link\":{\"filters\":{\"search\":\"\"},\"name\":\"link\"}},\"query\":{\"name\":\"#parent\"}}}],\"name\":\"Explore c2a for ph2\"}]},{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\",\"width_medium\":\"1-2\",\"width_small\":\"1-2\"},\"children\":[{\"type\":\"button\",\"props\":{\"fullwidth\":true,\"grid_column_gap\":\"small\",\"grid_row_gap\":\"small\",\"margin\":\"medium\",\"margin_remove_top\":true},\"children\":[{\"type\":\"button_item\",\"props\":{\"button_style\":\"primary\",\"content\":\"Register interest\",\"content_de_de\":\"Interesse anmelden\",\"dialog_layout\":\"modal\",\"dialog_offcanvas_flip\":true,\"icon_align\":\"left\",\"link\":\"register-interest\\\/\",\"link_aria_label\":\"Link to Register interest form\",\"link_title\":\"Link to Register interest form\"}}],\"name\":\"Reg isterest btn\"}]}]}],\"name\":\"Reg interest c2a\"},{\"type\":\"woo_add_to_cart_custom\",\"source_extended\":{\"props\":{\"product\":{\"name\":\"id\",\"query\":{\"name\":\"#parent\"}}}},\"props\":{\"class\":\"bevas-restricted\",\"css\":\".el-element .price {\\n    color: var(--color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}\",\"status\":\"disabled\"},\"source\":{}},{\"type\":\"html\",\"props\":{\"content\":\"<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"en-GB\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/uk.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;en_GB&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP &#8211; EN&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"de-DE\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/de.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;de_DE&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP DE&#8221;}]}],&#8221;props&#8221;:{&#8220;height_viewport&#8221;:500,&#8221;layout&#8221;:&#8221;large,expand&#8221;}}]},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list&#8221;,&#8221;props&#8221;:{&#8220;animation&#8221;:&#8221;none&#8221;,&#8221;class&#8221;:&#8221;panel-list&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;css&#8221;:&#8221;.el-content {\\n    color: var(&#8211;Grey-Dark, #595959);\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;image_align&#8221;:&#8221;left&#8221;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;image_vertical_align&#8221;:false,&#8221;list_element&#8221;:&#8221;ul&#8221;,&#8221;list_horizontal_separator&#8221;:&#8221;, &#8220;,&#8221;list_size&#8221;:&#8221;large&#8221;,&#8221;list_type&#8221;:&#8221;vertical&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Supports better metabolism<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>F\\u00f6rdert einen normalen Stoffwechsel<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-metabolism&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Reduces the effects of tiredness and fatigue<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verringert M\\u00fcdigkeit und Ersch\\u00f6pfung<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-fatigue&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Improves cognitive, psychological and mental performance<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verbessert die kognitive, psychische und mentale Leistungsf\\u00e4higkeit<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-mental-2&#8243;}}],&#8221;name&#8221;:&#8221;Details list &#8211; Focus&#8221;}]}]}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-{{ sources.b50e }}&#8221;,&#8221;sources&#8221;:{&#8220;b50e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;828c&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-{{ sources.093f }}-0&#8243;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_2&#8243;:false,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_2&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_text_2&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1471}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {\\n    background: #FDF9F4;\\n}\\n@media (max-width: 1199px) {\\n\\t.el-column {\\n \\t   background-color: transparent;\\n\\t}\\t\\n}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;padding&#8221;:&#8221;none&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;style&#8221;:&#8221;tile-muted&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_large&#8221;:&#8221;large&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {background: #FDF9F4;padding: 40px 30px 10px 30px;}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_masonry&#8221;:false,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;all&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    background: #fdf9f4;\\n    height: 500px;\\n\\tpadding: 40px 30px 20px 30px;\\n}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\\n@media(max-width: 640px){\\n    .el-element {\\n        height: inherit;\\n    }\\n    .el-image {\\n        max-height: 300px;\\n    }\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Energie.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;bevas energy pods&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Energy.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Energy&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Energy.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Energy&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Energy&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {padding: 40px;}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_large&#8221;:&#8221;expand&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n    width: 100%;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;3-5,2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;3-5&#8243;,&#8221;width_small&#8221;:&#8221;3-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;margin_remove_top&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_style&#8221;:&#8221;h3&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;name&#8221;:&#8221;Headl &#8211; phase 2&#8243;,&#8221;source&#8221;:[]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;2-5&#8243;,&#8221;width_small&#8221;:&#8221;2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom&#8221;}]}]}],&#8221;name&#8221;:&#8221;Headline + stock&#8221;},{&#8220;type&#8221;:&#8221;alert&#8221;,&#8221;props&#8221;:{&#8220;alert_size&#8221;:false,&#8221;alert_style&#8221;:&#8221;danger&#8221;,&#8221;class&#8221;:&#8221;uk-hidden&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p>Please select Format!<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Bitte w\\u00e4hlen Sie Form!<\\\/p>&#8220;,&#8221;content_margin&#8221;:&#8221;remove&#8221;,&#8221;id&#8221;:&#8221;bevas-variation-alert&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;},&#8221;name&#8221;:&#8221;widg &#8211; 2&#8243;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Vitamins B3, B6 and B12 contribute to normal energy-yielding metabolism, normal psychological function and the reduction of tiredness and fatigue. Zinc aids normal cognitive function. Vitamin B5 supports normal mental performance.&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1 selected&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole&nbsp;Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Explore&#8221;,&#8221;content_de_de&#8221;:&#8221;Entdecken&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"en-GB\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/uk.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;en_GB&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP &#8211; EN&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"de-DE\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/de.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;de_DE&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP DE&#8221;}]}],&#8221;props&#8221;:{&#8220;height_viewport&#8221;:500,&#8221;layout&#8221;:&#8221;large,expand&#8221;}}]},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list&#8221;,&#8221;props&#8221;:{&#8220;animation&#8221;:&#8221;none&#8221;,&#8221;class&#8221;:&#8221;panel-list&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;css&#8221;:&#8221;.el-content {\\n    color: var(&#8211;Grey-Dark, #595959);\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;image_align&#8221;:&#8221;left&#8221;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;image_vertical_align&#8221;:false,&#8221;list_element&#8221;:&#8221;ul&#8221;,&#8221;list_horizontal_separator&#8221;:&#8221;, &#8220;,&#8221;list_size&#8221;:&#8221;large&#8221;,&#8221;list_type&#8221;:&#8221;vertical&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Supports better metabolism<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>F\\u00f6rdert einen normalen Stoffwechsel<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-metabolism&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Reduces the effects of tiredness and fatigue<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verringert M\\u00fcdigkeit und Ersch\\u00f6pfung<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-fatigue&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Improves cognitive, psychological and mental performance<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verbessert die kognitive, psychische und mentale Leistungsf\\u00e4higkeit<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-mental-2&#8243;}}],&#8221;name&#8221;:&#8221;Details list &#8211; Focus&#8221;}]}]}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-{{ sources.b50e }}&#8221;,&#8221;sources&#8221;:{&#8220;b50e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;828c&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-{{ sources.093f }}-0&#8243;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_2&#8243;:false,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_2&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_text_2&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1472}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {\\n    background: #FDF9F4;\\n}\\n@media (max-width: 1199px) {\\n\\t.el-column {\\n \\t   background-color: transparent;\\n\\t}\\t\\n}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;padding&#8221;:&#8221;none&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;style&#8221;:&#8221;tile-muted&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_large&#8221;:&#8221;large&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {background: #FDF9F4;padding: 40px 30px 10px 30px;}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_masonry&#8221;:false,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;all&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    background: #fdf9f4;\\n    height: 500px;\\n\\tpadding: 40px 30px 20px 30px;\\n}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\\n@media(max-width: 640px){\\n    .el-element {\\n        height: inherit;\\n    }\\n    .el-image {\\n        max-height: 300px;\\n    }\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Anti-Aging.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Anti-Ageing.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Anti-Ageing&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Anti-Ageing.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Anti-Ageing&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; AA&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {padding: 40px;}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_large&#8221;:&#8221;expand&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n    width: 100%;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;3-5,2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;3-5&#8243;,&#8221;width_small&#8221;:&#8221;3-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;margin_remove_top&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_style&#8221;:&#8221;h3&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;name&#8221;:&#8221;Headl &#8211; phase 2&#8243;,&#8221;source&#8221;:[]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;2-5&#8243;,&#8221;width_small&#8221;:&#8221;2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom&#8221;}]}]}],&#8221;name&#8221;:&#8221;Headline + stock&#8221;},{&#8220;type&#8221;:&#8221;alert&#8221;,&#8221;props&#8221;:{&#8220;alert_size&#8221;:false,&#8221;alert_style&#8221;:&#8221;danger&#8221;,&#8221;class&#8221;:&#8221;uk-hidden&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p>Please select Format!<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Bitte w\\u00e4hlen Sie Form!<\\\/p>&#8220;,&#8221;content_margin&#8221;:&#8221;remove&#8221;,&#8221;id&#8221;:&#8221;bevas-variation-alert&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;},&#8221;name&#8221;:&#8221;widg &#8211; 2&#8243;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Vitamins B3, B6 and B12 contribute to normal energy-yielding metabolism, normal psychological function and the reduction of tiredness and fatigue. Zinc aids normal cognitive function. Vitamin B5 supports normal mental performance.&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1 selected&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole&nbsp;Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Explore&#8221;,&#8221;content_de_de&#8221;:&#8221;Entdecken&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"en-GB\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/uk.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;en_GB&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP &#8211; EN&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"de-DE\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/de.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;de_DE&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP DE&#8221;}]}],&#8221;props&#8221;:{&#8220;height_viewport&#8221;:500,&#8221;layout&#8221;:&#8221;large,expand&#8221;}}]},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list&#8221;,&#8221;props&#8221;:{&#8220;animation&#8221;:&#8221;none&#8221;,&#8221;class&#8221;:&#8221;panel-list&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;css&#8221;:&#8221;.el-content {\\n    color: var(&#8211;Grey-Dark, #595959);\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;image_align&#8221;:&#8221;left&#8221;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;image_vertical_align&#8221;:false,&#8221;list_element&#8221;:&#8221;ul&#8221;,&#8221;list_horizontal_separator&#8221;:&#8221;, &#8220;,&#8221;list_size&#8221;:&#8221;large&#8221;,&#8221;list_type&#8221;:&#8221;vertical&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Supports better metabolism<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>F\\u00f6rdert einen normalen Stoffwechsel<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-metabolism&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Reduces the effects of tiredness and fatigue<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verringert M\\u00fcdigkeit und Ersch\\u00f6pfung<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-fatigue&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Improves cognitive, psychological and mental performance<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verbessert die kognitive, psychische und mentale Leistungsf\\u00e4higkeit<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-mental-2&#8243;}}],&#8221;name&#8221;:&#8221;Details list &#8211; Focus&#8221;}]}]}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-{{ sources.b50e }}&#8221;,&#8221;sources&#8221;:{&#8220;b50e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;828c&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-{{ sources.093f }}-0&#8243;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_2&#8243;:false,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_2&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_text_2&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1473}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {\\n    background: #FDF9F4;\\n}\\n@media (max-width: 1199px) {\\n\\t.el-column {\\n \\t   background-color: transparent;\\n\\t}\\t\\n}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;padding&#8221;:&#8221;none&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;style&#8221;:&#8221;tile-muted&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_large&#8221;:&#8221;large&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {background: #FDF9F4;padding: 40px 30px 10px 30px;}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_masonry&#8221;:false,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;all&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    background: #fdf9f4;\\n    height: 500px;\\n\\tpadding: 40px 30px 20px 30px;\\n}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\\n@media(max-width: 640px){\\n    .el-element {\\n        height: inherit;\\n    }\\n    .el-image {\\n        max-height: 300px;\\n    }\\n}\\n.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Immunitat.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Immunity.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Immunity&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Immunity.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Immunity&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Immunity&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {padding: 40px;}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_large&#8221;:&#8221;expand&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n    width: 100%;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;3-5,2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;3-5&#8243;,&#8221;width_small&#8221;:&#8221;3-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;margin_remove_top&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_style&#8221;:&#8221;h3&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;name&#8221;:&#8221;Headl &#8211; phase 2&#8243;,&#8221;source&#8221;:[]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;2-5&#8243;,&#8221;width_small&#8221;:&#8221;2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom&#8221;}]}]}],&#8221;name&#8221;:&#8221;Headline + stock&#8221;},{&#8220;type&#8221;:&#8221;alert&#8221;,&#8221;props&#8221;:{&#8220;alert_size&#8221;:false,&#8221;alert_style&#8221;:&#8221;danger&#8221;,&#8221;class&#8221;:&#8221;uk-hidden&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p>Please select Format!<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Bitte w\\u00e4hlen Sie Form!<\\\/p>&#8220;,&#8221;content_margin&#8221;:&#8221;remove&#8221;,&#8221;id&#8221;:&#8221;bevas-variation-alert&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;},&#8221;name&#8221;:&#8221;widg &#8211; 2&#8243;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Vitamins B3, B6 and B12 contribute to normal energy-yielding metabolism, normal psychological function and the reduction of tiredness and fatigue. Zinc aids normal cognitive function. Vitamin B5 supports normal mental performance.&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1 selected&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole&nbsp;Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Explore&#8221;,&#8221;content_de_de&#8221;:&#8221;Entdecken&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"en-GB\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/uk.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;en_GB&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP &#8211; EN&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"de-DE\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/de.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;de_DE&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP DE&#8221;}]}],&#8221;props&#8221;:{&#8220;height_viewport&#8221;:500,&#8221;layout&#8221;:&#8221;large,expand&#8221;}}]},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list&#8221;,&#8221;props&#8221;:{&#8220;animation&#8221;:&#8221;none&#8221;,&#8221;class&#8221;:&#8221;panel-list&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;css&#8221;:&#8221;.el-content {\\n    color: var(&#8211;Grey-Dark, #595959);\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;image_align&#8221;:&#8221;left&#8221;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;image_vertical_align&#8221;:false,&#8221;list_element&#8221;:&#8221;ul&#8221;,&#8221;list_horizontal_separator&#8221;:&#8221;, &#8220;,&#8221;list_size&#8221;:&#8221;large&#8221;,&#8221;list_type&#8221;:&#8221;vertical&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Supports better metabolism<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>F\\u00f6rdert einen normalen Stoffwechsel<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-metabolism&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Reduces the effects of tiredness and fatigue<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verringert M\\u00fcdigkeit und Ersch\\u00f6pfung<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-fatigue&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Improves cognitive, psychological and mental performance<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verbessert die kognitive, psychische und mentale Leistungsf\\u00e4higkeit<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-mental-2&#8243;}}],&#8221;name&#8221;:&#8221;Details list &#8211; Focus&#8221;}]}]}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-{{ sources.b50e }}&#8221;,&#8221;sources&#8221;:{&#8220;b50e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;828c&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-{{ sources.093f }}-0&#8243;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_2&#8243;:false,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_2&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_text_2&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1474}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {\\n    background: #FDF9F4;\\n}\\n@media (max-width: 1199px) {\\n\\t.el-column {\\n \\t   background-color: transparent;\\n\\t}\\t\\n}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;padding&#8221;:&#8221;none&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;style&#8221;:&#8221;tile-muted&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_large&#8221;:&#8221;large&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {background: #FDF9F4;padding: 40px 30px 10px 30px;}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_masonry&#8221;:false,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;all&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    background: #fdf9f4;\\n    height: 500px;\\n\\tpadding: 40px 30px 20px 30px;\\n}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}\\n@media(max-width: 640px){\\n    .el-element {\\n        height: inherit;\\n    }\\n    .el-image {\\n        max-height: 300px;\\n    }\\n}\\n.el-element {background: transparent;height: 500px;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n\\tmax-height: 500px;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Prabiotisch.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Prebiotic.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Prebiotic&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Prebiotic.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Prebiotic&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Prebiotic&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-column {padding: 40px;}&#8221;,&#8221;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_large&#8221;:&#8221;expand&#8221;,&#8221;width_medium&#8221;:&#8221;1-1&#8243;,&#8221;width_small&#8221;:&#8221;1-1&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n    width: 100%;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;3-5,2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;3-5&#8243;,&#8221;width_small&#8221;:&#8221;3-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-size: 30px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 36px; \\\/* 120% *\\\/\\n    letter-spacing: 1.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;margin_remove_top&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_style&#8221;:&#8221;h3&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;name&#8221;:&#8221;Headl &#8211; phase 2&#8243;,&#8221;source&#8221;:[]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;,&#8221;width_medium&#8221;:&#8221;2-5&#8243;,&#8221;width_small&#8221;:&#8221;2-5&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom&#8221;}]}]}],&#8221;name&#8221;:&#8221;Headline + stock&#8221;},{&#8220;type&#8221;:&#8221;alert&#8221;,&#8221;props&#8221;:{&#8220;alert_size&#8221;:false,&#8221;alert_style&#8221;:&#8221;danger&#8221;,&#8221;class&#8221;:&#8221;uk-hidden&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p>Please select Format!<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Bitte w\\u00e4hlen Sie Form!<\\\/p>&#8220;,&#8221;content_margin&#8221;:&#8221;remove&#8221;,&#8221;id&#8221;:&#8221;bevas-variation-alert&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;},&#8221;name&#8221;:&#8221;widg &#8211; 2&#8243;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Vitamins B3, B6 and B12 contribute to normal energy-yielding metabolism, normal psychological function and the reduction of tiredness and fatigue. Zinc aids normal cognitive function. Vitamin B5 supports normal mental performance.&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1 selected&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole&nbsp;Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Explore&#8221;,&#8221;content_de_de&#8221;:&#8221;Entdecken&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"en-GB\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/uk.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;en_GB&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP &#8211; EN&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<!-- TrustBox widget - Micro Star -->\\n<\/p>\n<div class=\\\"trustpilot-widget\\\" data-locale=\\\"de-DE\\\" data-template-id=\\\"5419b732fbfb950b10de65e5\\\" data-businessunit-id=\\\"660beadebaae927d3621b993\\\" data-style-height=\\\"24px\\\" data-style-width=\\\"100%\\\" data-theme=\\\"light\\\">\\n  <a href=\\\"https:\\\/\\\/de.trustpilot.com\\\/review\\\/bevas.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\" style=\\\"text-align:center;visibility: hidden;\\\">Trustpilot<\\\/a>\\n<\\\/div>\\n<!-- End TrustBox widget -->&#8220;,&#8221;css&#8221;:&#8221;.el-element {margin-top: 20px;}&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;yooessentials_access_conditions&#8221;:[{&#8220;type&#8221;:&#8221;yooessentials_access_language&#8221;,&#8221;id&#8221;:&#8221;ci_4A737B&#8221;,&#8221;props&#8221;:{&#8220;languages&#8221;:[&#8220;de_DE&#8221;]}}],&#8221;yooessentials_access_mode&#8221;:&#8221;AND&#8221;},&#8221;name&#8221;:&#8221;TP DE&#8221;}]}],&#8221;props&#8221;:{&#8220;height_viewport&#8221;:500,&#8221;layout&#8221;:&#8221;large,expand&#8221;}}]},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list&#8221;,&#8221;props&#8221;:{&#8220;animation&#8221;:&#8221;none&#8221;,&#8221;class&#8221;:&#8221;panel-list&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;css&#8221;:&#8221;.el-content {\\n    color: var(&#8211;Grey-Dark, #595959);\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;image_align&#8221;:&#8221;left&#8221;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;image_vertical_align&#8221;:false,&#8221;list_element&#8221;:&#8221;ul&#8221;,&#8221;list_horizontal_separator&#8221;:&#8221;, &#8220;,&#8221;list_size&#8221;:&#8221;large&#8221;,&#8221;list_type&#8221;:&#8221;vertical&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Supports better metabolism<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>F\\u00f6rdert einen normalen Stoffwechsel<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-metabolism&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Reduces the effects of tiredness and fatigue<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verringert M\\u00fcdigkeit und Ersch\\u00f6pfung<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-fatigue&#8221;}},{&#8220;type&#8221;:&#8221;list_item&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<\/p>\n<p>Improves cognitive, psychological and mental performance<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p>Verbessert die kognitive, psychische und mentale Leistungsf\\u00e4higkeit<\\\/p>&#8220;,&#8221;icon&#8221;:&#8221;myicons&#8211;bevas-icon-mental-2&#8243;}}],&#8221;name&#8221;:&#8221;Details list &#8211; Focus&#8221;}]}]}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-{{ sources.b50e }}&#8221;,&#8221;sources&#8221;:{&#8220;b50e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;828c&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-{{ sources.093f }}-0&#8243;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_image_5&#8243;:&#8221;wp-content\\\/uploads\\\/2024\\\/11\\\/bevas-offers.jpg&#8221;,&#8221;custom_meta_5&#8243;:&#8221;OFFERS&#8221;,&#8221;custom_meta_6&#8243;:&#8221;Browse our online offers and discover our latest deals!&#8221;,&#8221;custom_text_6&#8243;:&#8221;<a class=\\\"uk-button uk-button-default uk-width-1-1\\\" href=\\\"\\\/en\\\/offers\\\">VIEW OFFERS<\\\/a>&#8220;,&#8221;custom_text_6_de_de&#8221;:&#8221;<a class=\\\"uk-button uk-button-default uk-width-1-1\\\" href=\\\"\\\/de\\\/offers\\\">Angebot anzeigen<\\\/a>&#8220;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_column_align&#8221;:true,&#8221;grid_3_custom_item_grid_match&#8221;:true,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_row_align&#8221;:true,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_panel_card_offset&#8221;:false,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;offers&#8221;,&#8221;item_disable_custom_grid_1&#8243;:true,&#8221;item_disable_custom_grid_2&#8243;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_5&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;title&#8221;:&#8221;Offers&#8221;}}]},{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:true,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:false,&#8221;advanced_enable_mixed_width&#8221;:false,&#8221;advanced_grid&#8221;:true,&#8221;advanced_item_layout&#8221;:false,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;content_margin&#8221;:&#8221;small&#8221;,&#8221;css&#8221;:&#8221;.fs-grid-fieldset-1 .uk-panel > div:first-of-type,\\n.fs-grid-fieldset-3 .uk-panel > div:first-of-type{text-align: center;}\\n.fs-grid-meta-1,\\n.fs-grid-meta-3 {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}\\n.fs-grid-text-1 {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 25px; \\\/* 166.667% *\\\/\\n}\\n.uk-button-primary {\\n        position: absolute !important;\\n    bottom: -25px;\\n    width: calc(100% &#8211; 40px);\\n\\tborder-radius: 5px;\\n\\tborder: 1px solid var(&#8211;Black, #000);\\n    background: #fff;\\n    color: var(&#8211;Black, #000);\\n    align-items: center;\\n    display: inline-flex;\\n    justify-content: center;\\n}\\n\\n.el-item .uk-button-primary:hover {\\n\\tborder-color: transparent;\\n    background: var(&#8211;Red-Variant-A, #EE462D);;\\n    color: var(&#8211;White, #FFF);\\n}\\n\\n.el-item:hover {\\n    background: #BFD2CA;\\n}\\n.bevas-item.no-hover {\\n\\tbackground: #fdf9f4;\\n}\\n.el-item > .uk-flex {\\n    flex-wrap: wrap;\\n    flex-direction: unset;\\n}\\n.el-item > .el-content {\\n    flex-basis: auto; \\n  display: inline-flex; \\n  flex-grow: 1;\\n}\\n.el-content {\\n    margin-right: 20px;\\n    display: flex;\\n    align-items: center;\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 15px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 25px; \\\/* 166.667% *\\\/\\n}\\n\\n.el-item.offers:hover {\\n    background-color: var(&#8211;color-green-dark);\\n}\\n.el-item.offers {\\n    min-height: 460px;\\n    background-image: url(https:\\\/\\\/staging.bevas.com\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/Card.png);\\n    background-size: 100% 100%;\\n    background-position: center;\\n}\\n.el-item.offers > div.uk-flex{justify-content: center;}\\n.el-item.offers .fs-grid-fieldset-5 .fs-grid-image-5 {width: 100%;}\\n.el-item.offers .fs-grid-fieldset-5 .fs-grid-meta {\\ncolor: var(&#8211;White, #FFF);\\ntext-align: center;\\n\\n\\\/* Heading 3 *\\\/\\nfont-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\nfont-size: 30px;\\nfont-style: normal;\\nfont-weight: 700;\\nline-height: 36px; \\\/* 120% *\\\/\\nletter-spacing: 1.8px;\\n}\\n.el-item.offers .fs-grid-fieldset-6 .fs-grid-meta {\\n    margin-bottom: 30px;\\ncolor: var(&#8211;White, #FFF);\\ntext-align: center;\\n\\n\\\/* Body Reg *\\\/\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 400;\\nline-height: 25px; \\\/* 166.667% *\\\/\\n}\\n.el-item.offers .fs-grid-fieldset-6 .fs-grid-text .uk-button{\\n    display: flex;\\npadding: 15px 25px;\\njustify-content: center;\\nalign-items: center;\\ngap: 10px;\\nalign-self: stretch;\\n    background: var(&#8211;White, #FFF);\\ncolor: #000;\\nfont-family: Poppins;\\nfont-size: 15px;\\nfont-style: normal;\\nfont-weight: 600;\\nline-height: 20px; \\\/* 133.333% *\\\/\\nletter-spacing: 2.25px;\\ntext-transform: uppercase;\\n}\\n.el-element .fs-load-more-item.uk-grid-margin {\\nmargin-top: 60px;}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;small&#8221;,&#8221;custom_1_meta_color&#8221;:&#8221;danger&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_meta_style&#8221;:&#8221;h3&#8243;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_hover_style&#8221;:&#8221;reset&#8221;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;2&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_color&#8221;:&#8221;danger&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_meta_style&#8221;:&#8221;h3&#8243;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;2&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;3&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;3&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;small&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_height&#8221;:&#8221;160&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_image_width&#8221;:&#8221;110&#8243;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;item-top&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_align&#8221;:true,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_margin&#8221;:&#8221;medium&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_align&#8221;:true,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_medium&#8221;:&#8221;1-3&#8243;,&#8221;grid_row_gap&#8221;:&#8221;large&#8221;,&#8221;grid_small&#8221;:&#8221;1-2&#8243;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_button_bottom&#8221;:true,&#8221;link_fullwidth&#8221;:true,&#8221;link_style&#8221;:&#8221;primary&#8221;,&#8221;link_text&#8221;:&#8221;<span uk-icon=\\\"icon: cart; width: 20; height: 20;\\\" class=\\\"uk-icon uk-margin-small-right\\\"><\\\/span>Quick Buy&#8221;,&#8221;link_text_de_de&#8221;:&#8221;<span uk-icon=\\\"icon: cart; width: 20; height: 20;\\\" class=\\\"uk-icon uk-margin-small-right\\\"><\\\/span>Schnell zugreifen&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;dotnav&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;panel_link&#8221;:true,&#8221;panel_size&#8221;:&#8221;small&#8221;,&#8221;panel_style&#8221;:&#8221;card-secondary&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:true,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:true,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:true,&#8221;show_custom_4&#8243;:true,&#8221;show_custom_5&#8243;:true,&#8221;show_custom_6&#8243;:true,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;element_grid&#8221;,&#8221;show_image&#8221;:false,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:false,&#8221;show_rating&#8221;:false,&#8221;show_sublayout&#8221;:true,&#8221;show_title&#8221;:false,&#8221;slidenav&#8221;:&#8221;default&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:false,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;sublayout_align&#8221;:&#8221;bottom&#8221;,&#8221;sublayout_margin&#8221;:&#8221;small&#8221;,&#8221;sublayout_modal_padding&#8221;:&#8221;small&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_modal_wrap_custom&#8221;:&#8221;1&#8243;,&#8221;sublayout_mode&#8221;:&#8221;modal&#8221;,&#8221;sublayout_position&#8221;:&#8221;above-content&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:true,&#8221;visibility&#8221;:&#8221;hidden-s&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1470}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;1-2,1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h4&#8243;,&#8221;title_style&#8221;:&#8221;h4&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;text_color&#8221;:&#8221;danger&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element .uk-icon{\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;}]}]},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;,&#8221;width_medium&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_attr_loading&#8221;:true,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;element_image&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Fokus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Focus&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;2-3&#8243;,&#8221;width_medium&#8221;:&#8221;2-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;field.product_additional_description&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-3,2-3&#8243;}},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .el-content {\\n\\tcolor: var(&#8211;Black, #000);\\n    text-align: center;\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 18px; \\\/* 150% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;css&#8221;:&#8221;.el-content {padding-left: 4px;padding-right: 4px;}&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:[]},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n    font-size: 12px;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Explore &#8220;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content_de_de&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Entdecken &#8220;},&#8221;name&#8221;:&#8221;title&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    padding-right: 1em;\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;woo_stock&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-stock-notification&#8221;,&#8221;css&#8221;:&#8221;.el-element {font-size: 16px;}&#8221;,&#8221;out_of_stock_style&#8221;:true,&#8221;text_align&#8221;:&#8221;right&#8221;,&#8221;text_align_breakpoint&#8221;:&#8221;m&#8221;,&#8221;text_align_fallback&#8221;:&#8221;left&#8221;}}]}]}],&#8221;name&#8221;:&#8221;Stock&#8221;}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;collapse&#8221;}}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-mobile-{{ sources.2521 }}&#8221;,&#8221;sources&#8221;:{&#8220;2521&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;df3e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;213d&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;1c9a&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-mobile-{{ sources.093f }}&#8221;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;a837&#8243;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1471}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;1-2,1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h4&#8243;,&#8221;title_style&#8221;:&#8221;h4&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;text_color&#8221;:&#8221;danger&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom &#8211; mobile&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element .uk-icon{\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;}]}]},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;,&#8221;width_medium&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_attr_loading&#8221;:true,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;element_image&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Energie.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;bevas energy pods&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Energy.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Energy&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Energy.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Energy&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Energy.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Energy&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Energy&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;2-3&#8243;,&#8221;width_medium&#8221;:&#8221;2-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;field.product_additional_description&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-3,2-3&#8243;}},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .el-content {\\n\\tcolor: var(&#8211;Black, #000);\\n    text-align: center;\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 18px; \\\/* 150% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;css&#8221;:&#8221;.el-content {padding-left: 4px;padding-right: 4px;}&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:[]},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n    font-size: 12px;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Explore &#8220;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content_de_de&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Entdecken &#8220;},&#8221;name&#8221;:&#8221;title&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    padding-right: 1em;\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;woo_stock&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-stock-notification&#8221;,&#8221;css&#8221;:&#8221;.el-element {font-size: 16px;}&#8221;,&#8221;out_of_stock_style&#8221;:true,&#8221;text_align&#8221;:&#8221;right&#8221;,&#8221;text_align_breakpoint&#8221;:&#8221;m&#8221;,&#8221;text_align_fallback&#8221;:&#8221;left&#8221;}}]}]}],&#8221;name&#8221;:&#8221;Stock&#8221;}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;collapse&#8221;}}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-mobile-{{ sources.2521 }}&#8221;,&#8221;sources&#8221;:{&#8220;2521&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;df3e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;213d&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;1c9a&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-mobile-{{ sources.093f }}&#8221;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;a837&#8243;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1472}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;1-2,1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h4&#8243;,&#8221;title_style&#8221;:&#8221;h4&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;text_color&#8221;:&#8221;danger&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom &#8211; mobile&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element .uk-icon{\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button &#8211; mobile&#8221;}]}]},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;,&#8221;width_medium&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_attr_loading&#8221;:true,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;element_image&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Anti-Aging.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Anti-Ageing.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Anti-Ageing&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Anti-Ageing.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Anti-Ageing&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Anti-Ageing.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Anti-Ageing&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; AA&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;2-3&#8243;,&#8221;width_medium&#8221;:&#8221;2-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;field.product_additional_description&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-3,2-3&#8243;}},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .el-content {\\n\\tcolor: var(&#8211;Black, #000);\\n    text-align: center;\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 18px; \\\/* 150% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;css&#8221;:&#8221;.el-content {padding-left: 4px;padding-right: 4px;}&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:[]},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n    font-size: 12px;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Explore &#8220;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content_de_de&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Entdecken &#8220;},&#8221;name&#8221;:&#8221;title&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    padding-right: 1em;\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;woo_stock&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-stock-notification&#8221;,&#8221;css&#8221;:&#8221;.el-element {font-size: 16px;}&#8221;,&#8221;out_of_stock_style&#8221;:true,&#8221;text_align&#8221;:&#8221;right&#8221;,&#8221;text_align_breakpoint&#8221;:&#8221;m&#8221;,&#8221;text_align_fallback&#8221;:&#8221;left&#8221;}}]}]}],&#8221;name&#8221;:&#8221;Stock&#8221;}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;collapse&#8221;}}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-mobile-{{ sources.2521 }}&#8221;,&#8221;sources&#8221;:{&#8220;2521&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;df3e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;213d&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;1c9a&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-mobile-{{ sources.093f }}&#8221;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;a837&#8243;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1473}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;1-2,1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h4&#8243;,&#8221;title_style&#8221;:&#8221;h4&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;text_color&#8221;:&#8221;danger&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom &#8211; mobile&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element .uk-icon{\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;}]}]},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;,&#8221;width_medium&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid&#8221;,&#8221;props&#8221;:{&#8220;advanced_enable_grid_1_custom&#8221;:true,&#8221;advanced_enable_grid_2_custom&#8221;:false,&#8221;advanced_enable_grid_3_custom&#8221;:false,&#8221;advanced_enable_grid_4_custom&#8221;:false,&#8221;advanced_enable_grid_5_custom&#8221;:false,&#8221;advanced_enable_grid_6_custom&#8221;:false,&#8221;advanced_enable_grids_empty_disable&#8221;:false,&#8221;advanced_enable_grids_empty_notification&#8221;:true,&#8221;advanced_enable_grids_hightlight&#8221;:true,&#8221;advanced_grid&#8221;:false,&#8221;advanced_item_layout&#8221;:false,&#8221;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;content_column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_limit_length&#8221;:&#8221;80&#8243;,&#8221;css&#8221;:&#8221;.el-element {}&#8221;,&#8221;custom_10_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_grid&#8221;:&#8221;1&#8243;,&#8221;custom_10_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_10_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_10_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_10_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_11_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_grid&#8221;:&#8221;1&#8243;,&#8221;custom_11_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_11_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_11_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_11_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_12_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_grid&#8221;:&#8221;1&#8243;,&#8221;custom_12_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_12_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_12_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_12_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_13_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_grid&#8221;:&#8221;1&#8243;,&#8221;custom_13_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_13_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_13_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_13_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_14_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_grid&#8221;:&#8221;1&#8243;,&#8221;custom_14_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_14_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_14_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_14_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_15_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_grid&#8221;:&#8221;1&#8243;,&#8221;custom_15_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_15_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_15_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_15_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_16_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_grid&#8221;:&#8221;1&#8243;,&#8221;custom_16_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_16_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_16_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_16_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_17_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_grid&#8221;:&#8221;1&#8243;,&#8221;custom_17_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_17_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_17_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_17_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_18_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_grid&#8221;:&#8221;1&#8243;,&#8221;custom_18_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_18_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_18_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_18_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_19_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_grid&#8221;:&#8221;1&#8243;,&#8221;custom_19_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_19_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_19_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_19_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_1_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_grid&#8221;:&#8221;1&#8243;,&#8221;custom_1_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_1_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_1_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_1_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_20_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_grid&#8221;:&#8221;1&#8243;,&#8221;custom_20_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_20_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_20_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_20_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_2_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_grid&#8221;:&#8221;1&#8243;,&#8221;custom_2_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_2_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_2_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_2_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_3_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_grid&#8221;:&#8221;1&#8243;,&#8221;custom_3_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_3_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_3_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_3_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_4_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_grid&#8221;:&#8221;1&#8243;,&#8221;custom_4_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_4_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_4_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_4_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_5_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_grid&#8221;:&#8221;1&#8243;,&#8221;custom_5_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_5_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_5_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_5_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_6_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_grid&#8221;:&#8221;1&#8243;,&#8221;custom_6_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_6_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_6_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_6_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_7_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_grid&#8221;:&#8221;1&#8243;,&#8221;custom_7_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_7_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_7_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_7_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_8_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_grid&#8221;:&#8221;1&#8243;,&#8221;custom_8_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_8_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_8_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_8_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_9_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_grid&#8221;:&#8221;1&#8243;,&#8221;custom_9_limit_length&#8221;:&#8221;80&#8243;,&#8221;custom_9_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_element&#8221;:&#8221;div&#8221;,&#8221;custom_9_meta_margin&#8221;:&#8221;remove&#8221;,&#8221;custom_9_meta_position&#8221;:&#8221;above-custom-text&#8221;,&#8221;custom_field_sets&#8221;:20,&#8221;custom_filters&#8221;:10,&#8221;custom_grids&#8221;:6,&#8221;filter&#8221;:false,&#8221;filter_align&#8221;:&#8221;left&#8221;,&#8221;filter_all&#8221;:true,&#8221;filter_dropdown_grid_default&#8221;:&#8221;1-1&#8243;,&#8221;filter_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;filter_grid_width&#8221;:&#8221;auto&#8221;,&#8221;filter_no_items_placeholder&#8221;:&#8221;No items found&#8221;,&#8221;filter_position&#8221;:&#8221;top&#8221;,&#8221;filter_sorting&#8221;:false,&#8221;filter_sorting_key&#8221;:&#8221;&#8221;,&#8221;filter_sorting_order&#8221;:&#8221;desc&#8221;,&#8221;filter_style&#8221;:&#8221;tab&#8221;,&#8221;grid_1_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_1_custom_icon_width&#8221;:80,&#8221;grid_1_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_1_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_1_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_1_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_1_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_1_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_2_custom_icon_width&#8221;:80,&#8221;grid_2_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_2_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_2_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_2_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_2_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_2_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_3_custom_icon_width&#8221;:80,&#8221;grid_3_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_3_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_3_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_3_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_3_custom_position&#8221;:&#8221;above-content&#8221;,&#8221;grid_3_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_4_custom_icon_width&#8221;:80,&#8221;grid_4_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_4_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_4_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_4_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_4_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_4_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_5_custom_icon_width&#8221;:80,&#8221;grid_5_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_5_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_5_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_5_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_5_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_5_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_6_custom_icon_width&#8221;:80,&#8221;grid_6_custom_image_align&#8221;:&#8221;top&#8221;,&#8221;grid_6_custom_image_grid_breakpoint&#8221;:&#8221;@m&#8221;,&#8221;grid_6_custom_image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;grid_6_custom_panel_padding&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_position&#8221;:&#8221;bellow-content&#8221;,&#8221;grid_6_custom_row_gap&#8221;:&#8221;small&#8221;,&#8221;grid_default&#8221;:&#8221;1-1&#8243;,&#8221;grid_medium&#8221;:&#8221;&#8221;,&#8221;icon_width&#8221;:80,&#8221;image_align&#8221;:&#8221;top&#8221;,&#8221;image_attr_loading&#8221;:true,&#8221;image_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;image_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;image_height&#8221;:&#8221;300&#8243;,&#8221;image_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;item_animation&#8221;:true,&#8221;lightbox&#8221;:false,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_limit_length&#8221;:&#8221;80&#8243;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;rating_star_background_color&#8221;:&#8221;#e5e5e5&#8243;,&#8221;rating_star_color&#8221;:&#8221;#fc0&#8243;,&#8221;rating_star_size&#8221;:&#8221;25&#8243;,&#8221;rating_star_spacing&#8221;:&#8221;3&#8243;,&#8221;search&#8221;:false,&#8221;search_input_placeholder&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_input_placeholder_de_de&#8221;:&#8221;Search&#8230;&#8221;,&#8221;search_no_items_placeholder&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_no_items_placeholder_de_de&#8221;:&#8221;No items found matching keyword:&#8221;,&#8221;search_title&#8221;:true,&#8221;show_content&#8221;:true,&#8221;show_custom_1&#8243;:false,&#8221;show_custom_10&#8243;:false,&#8221;show_custom_11&#8243;:false,&#8221;show_custom_12&#8243;:false,&#8221;show_custom_13&#8243;:false,&#8221;show_custom_14&#8243;:false,&#8221;show_custom_15&#8243;:false,&#8221;show_custom_16&#8243;:false,&#8221;show_custom_17&#8243;:false,&#8221;show_custom_18&#8243;:false,&#8221;show_custom_19&#8243;:false,&#8221;show_custom_2&#8243;:false,&#8221;show_custom_20&#8243;:false,&#8221;show_custom_3&#8243;:false,&#8221;show_custom_4&#8243;:false,&#8221;show_custom_5&#8243;:false,&#8221;show_custom_6&#8243;:false,&#8221;show_custom_7&#8243;:false,&#8221;show_custom_8&#8243;:false,&#8221;show_custom_9&#8243;:false,&#8221;show_custom_filter_1&#8243;:false,&#8221;show_custom_filter_10&#8243;:false,&#8221;show_custom_filter_11&#8243;:false,&#8221;show_custom_filter_12&#8243;:false,&#8221;show_custom_filter_13&#8243;:false,&#8221;show_custom_filter_14&#8243;:false,&#8221;show_custom_filter_15&#8243;:false,&#8221;show_custom_filter_16&#8243;:false,&#8221;show_custom_filter_17&#8243;:false,&#8221;show_custom_filter_18&#8243;:false,&#8221;show_custom_filter_19&#8243;:false,&#8221;show_custom_filter_2&#8243;:false,&#8221;show_custom_filter_20&#8243;:false,&#8221;show_custom_filter_3&#8243;:false,&#8221;show_custom_filter_4&#8243;:false,&#8221;show_custom_filter_5&#8243;:false,&#8221;show_custom_filter_6&#8243;:false,&#8221;show_custom_filter_7&#8243;:false,&#8221;show_custom_filter_8&#8243;:false,&#8221;show_custom_filter_9&#8243;:false,&#8221;show_custom_image_1&#8243;:true,&#8221;show_custom_image_10&#8243;:true,&#8221;show_custom_image_11&#8243;:true,&#8221;show_custom_image_12&#8243;:true,&#8221;show_custom_image_13&#8243;:true,&#8221;show_custom_image_14&#8243;:true,&#8221;show_custom_image_15&#8243;:true,&#8221;show_custom_image_16&#8243;:true,&#8221;show_custom_image_17&#8243;:true,&#8221;show_custom_image_18&#8243;:true,&#8221;show_custom_image_19&#8243;:true,&#8221;show_custom_image_2&#8243;:true,&#8221;show_custom_image_20&#8243;:true,&#8221;show_custom_image_3&#8243;:true,&#8221;show_custom_image_4&#8243;:true,&#8221;show_custom_image_5&#8243;:true,&#8221;show_custom_image_6&#8243;:true,&#8221;show_custom_image_7&#8243;:true,&#8221;show_custom_image_8&#8243;:true,&#8221;show_custom_image_9&#8243;:true,&#8221;show_custom_link_1&#8243;:true,&#8221;show_custom_link_10&#8243;:true,&#8221;show_custom_link_11&#8243;:true,&#8221;show_custom_link_12&#8243;:true,&#8221;show_custom_link_13&#8243;:true,&#8221;show_custom_link_14&#8243;:true,&#8221;show_custom_link_15&#8243;:true,&#8221;show_custom_link_16&#8243;:true,&#8221;show_custom_link_17&#8243;:true,&#8221;show_custom_link_18&#8243;:true,&#8221;show_custom_link_19&#8243;:true,&#8221;show_custom_link_2&#8243;:true,&#8221;show_custom_link_20&#8243;:true,&#8221;show_custom_link_3&#8243;:true,&#8221;show_custom_link_4&#8243;:true,&#8221;show_custom_link_5&#8243;:true,&#8221;show_custom_link_6&#8243;:true,&#8221;show_custom_link_7&#8243;:true,&#8221;show_custom_link_8&#8243;:true,&#8221;show_custom_link_9&#8243;:true,&#8221;show_custom_meta_1&#8243;:true,&#8221;show_custom_meta_10&#8243;:true,&#8221;show_custom_meta_11&#8243;:true,&#8221;show_custom_meta_12&#8243;:true,&#8221;show_custom_meta_13&#8243;:true,&#8221;show_custom_meta_14&#8243;:true,&#8221;show_custom_meta_15&#8243;:true,&#8221;show_custom_meta_16&#8243;:true,&#8221;show_custom_meta_17&#8243;:true,&#8221;show_custom_meta_18&#8243;:true,&#8221;show_custom_meta_19&#8243;:true,&#8221;show_custom_meta_2&#8243;:true,&#8221;show_custom_meta_20&#8243;:true,&#8221;show_custom_meta_3&#8243;:true,&#8221;show_custom_meta_4&#8243;:true,&#8221;show_custom_meta_5&#8243;:true,&#8221;show_custom_meta_6&#8243;:true,&#8221;show_custom_meta_7&#8243;:true,&#8221;show_custom_meta_8&#8243;:true,&#8221;show_custom_meta_9&#8243;:true,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;show_custom_text_1&#8243;:true,&#8221;show_custom_text_10&#8243;:true,&#8221;show_custom_text_11&#8243;:true,&#8221;show_custom_text_12&#8243;:true,&#8221;show_custom_text_13&#8243;:true,&#8221;show_custom_text_14&#8243;:true,&#8221;show_custom_text_15&#8243;:true,&#8221;show_custom_text_16&#8243;:true,&#8221;show_custom_text_17&#8243;:true,&#8221;show_custom_text_18&#8243;:true,&#8221;show_custom_text_19&#8243;:true,&#8221;show_custom_text_2&#8243;:true,&#8221;show_custom_text_20&#8243;:true,&#8221;show_custom_text_3&#8243;:true,&#8221;show_custom_text_4&#8243;:true,&#8221;show_custom_text_5&#8243;:true,&#8221;show_custom_text_6&#8243;:true,&#8221;show_custom_text_7&#8243;:true,&#8221;show_custom_text_8&#8243;:true,&#8221;show_custom_text_9&#8243;:true,&#8221;show_element_settings&#8221;:&#8221;element_image&#8221;,&#8221;show_image&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_rating&#8221;:false,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_grid&#8221;:&#8221;default&#8221;,&#8221;slidenav_margin&#8221;:&#8221;&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slider&#8221;:true,&#8221;slider_autoplay_pause&#8221;:true,&#8221;slider_center&#8221;:true,&#8221;slider_width_default&#8221;:&#8221;1-1&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;sublayout_align&#8221;:&#8221;top&#8221;,&#8221;sublayout_modal_wrap&#8221;:&#8221;all&#8221;,&#8221;sublayout_mode&#8221;:&#8221;native&#8221;,&#8221;sublayout_position&#8221;:&#8221;bellow-content&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;title_align&#8221;:&#8221;top&#8221;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_grid_breakpoint&#8221;:&#8221;m&#8221;,&#8221;title_grid_width&#8221;:&#8221;1-2&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;,&#8221;title_limit_length&#8221;:&#8221;80&#8243;,&#8221;use_custom_fields&#8221;:false},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=1&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=2&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;,&#8221;item_attrs_tag&#8221;:&#8221;data-format=3&#8243;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/p-focus-e1730800459904.png&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2023\\\/10\\\/German-Focus-_-Pods-e1730800470633.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Focus.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Focus.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Focus&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Focus.png&#8221;}}],&#8221;name&#8221;:&#8221;Attribute images &#8211; slideshow&#8221;},{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Immunitat.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Immunity.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Immunity&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Immunity.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Immunity&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Immunity.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Immunity&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Immunity&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;2-3&#8243;,&#8221;width_medium&#8221;:&#8221;2-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;field.product_additional_description&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-3,2-3&#8243;}},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .el-content {\\n\\tcolor: var(&#8211;Black, #000);\\n    text-align: center;\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 18px; \\\/* 150% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;css&#8221;:&#8221;.el-content {padding-left: 4px;padding-right: 4px;}&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:[]},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n    font-size: 12px;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Explore &#8220;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content_de_de&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Entdecken &#8220;},&#8221;name&#8221;:&#8221;title&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    padding-right: 1em;\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;woo_stock&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-stock-notification&#8221;,&#8221;css&#8221;:&#8221;.el-element {font-size: 16px;}&#8221;,&#8221;out_of_stock_style&#8221;:true,&#8221;text_align&#8221;:&#8221;right&#8221;,&#8221;text_align_breakpoint&#8221;:&#8221;m&#8221;,&#8221;text_align_fallback&#8221;:&#8221;left&#8221;}}]}]}],&#8221;name&#8221;:&#8221;Stock&#8221;}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;collapse&#8221;}}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-mobile-{{ sources.2521 }}&#8221;,&#8221;sources&#8221;:{&#8220;2521&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;df3e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;213d&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;1c9a&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-mobile-{{ sources.093f }}&#8221;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;a837&#8243;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_link_2_toggle&#8221;:false,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;bevas-item&#8221;,&#8221;item_disable_custom_grid_3&#8243;:true,&#8221;link_advanced&#8221;:false,&#8221;link_item_toggle&#8221;:true,&#8221;show_custom_fields&#8221;:&#8221;fieldset_1&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;custom_image_1&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;custom_meta_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_text_1&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;excerpt&#8221;},&#8221;custom_meta_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;custom_image_3&#8243;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;featuredImage.url&#8221;},&#8221;title&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;woocommerce.price&#8221;},&#8221;link_panel_custom&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;products.customProduct&#8221;,&#8221;arguments&#8221;:{&#8220;terms&#8221;:[],&#8221;product_cat_operator&#8221;:&#8221;IN&#8221;,&#8221;product_tag_operator&#8221;:&#8221;IN&#8221;,&#8221;product_visibility_operator&#8221;:&#8221;IN&#8221;,&#8221;users&#8221;:[],&#8221;users_operator&#8221;:&#8221;IN&#8221;,&#8221;offset&#8221;:0,&#8221;order&#8221;:&#8221;date&#8221;,&#8221;order_direction&#8221;:&#8221;DESC&#8221;,&#8221;id&#8221;:1474}}},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-container&#8221;,&#8221;css&#8221;:&#8221;.uk-modal-close-outside {display: none!important;}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_bottom&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;layout&#8221;:&#8221;1-2,1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;headline&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    font-family: \\&#8221;ABC Arizona Flare Variable\\&#8221;;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 700;\\n    line-height: 30px; \\\/* 150% *\\\/\\n    letter-spacing: 0.8px;\\n    text-transform: uppercase;\\n}&#8221;,&#8221;margin_remove_bottom&#8221;:true,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;title_color&#8221;:&#8221;primary&#8221;,&#8221;title_element&#8221;:&#8221;h4&#8243;,&#8221;title_style&#8221;:&#8221;h4&#8243;},&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;title&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;stock-status uk-invisible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;Currently sold out&#8221;,&#8221;content_de_de&#8221;:&#8221;Aktuell ausverkauft&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;text_align&#8221;:&#8221;left&#8221;,&#8221;text_color&#8221;:&#8221;danger&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Out of stock &#8211; custom &#8211; mobile&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-2&#8243;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<button class=\\\"uk-modal-close-default\\\" type=\\\"button\\\" uk-close=\\\"\\\"><\\\/button>&#8220;,&#8221;css&#8221;:&#8221;.el-element .uk-icon{\\n\\tposition: absolute;\\n    top: 0;\\n    right: 0;\\n}\\n.el-element .uk-icon {\\n\\tcolor: var(&#8211;color-green-dark);\\n}\\n.el-element .uk-icon svg{\\n\\twidth: 22px;\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;text_align&#8221;:&#8221;right&#8221;},&#8221;name&#8221;:&#8221;Close button&#8221;}]}]},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;,&#8221;width_medium&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-variations-image-slider&#8221;,&#8221;css&#8221;:&#8221;.el-element {background: transparent;}\\n.el-image {\\n    right: 0;\\n    margin: 0 auto;\\n    width: auto;\\n}&#8221;,&#8221;image_loading&#8221;:true,&#8221;link_style&#8221;:&#8221;default&#8221;,&#8221;link_text&#8221;:&#8221;Read more&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;meta_align&#8221;:&#8221;below-title&#8221;,&#8221;meta_element&#8221;:&#8221;div&#8221;,&#8221;meta_style&#8221;:&#8221;text-meta&#8221;,&#8221;nav&#8221;:&#8221;&#8221;,&#8221;nav_align&#8221;:&#8221;center&#8221;,&#8221;nav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;nav_position&#8221;:&#8221;bottom-center&#8221;,&#8221;nav_position_margin&#8221;:&#8221;medium&#8221;,&#8221;overlay_animation&#8221;:&#8221;parallax&#8221;,&#8221;overlay_container&#8221;:&#8221;default&#8221;,&#8221;overlay_position&#8221;:&#8221;center&#8221;,&#8221;show_content&#8221;:true,&#8221;show_link&#8221;:true,&#8221;show_meta&#8221;:true,&#8221;show_thumbnail&#8221;:true,&#8221;show_title&#8221;:true,&#8221;slidenav&#8221;:&#8221;&#8221;,&#8221;slidenav_breakpoint&#8221;:&#8221;s&#8221;,&#8221;slidenav_margin&#8221;:&#8221;medium&#8221;,&#8221;slidenav_outside_breakpoint&#8221;:&#8221;xl&#8221;,&#8221;slideshow_autoplay_pause&#8221;:true,&#8221;slideshow_min_height&#8221;:&#8221;&#8221;,&#8221;slideshow_ratio&#8221;:&#8221;3:4&#8243;,&#8221;text_align&#8221;:&#8221;center&#8221;,&#8221;thumbnav_height&#8221;:&#8221;75&#8243;,&#8221;thumbnav_svg_color&#8221;:&#8221;emphasis&#8221;,&#8221;thumbnav_width&#8221;:&#8221;100&#8243;,&#8221;title_element&#8221;:&#8221;h3&#8243;,&#8221;title_hover_style&#8221;:&#8221;reset&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Pods-English-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Pods-English-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/12\\\/Pods-German-Prabiotisch.png&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Ground-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Ground-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Ground-Prebiotic.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Ground-Prebiotic&#8221;}},{&#8220;type&#8221;:&#8221;slideshow_item&#8221;,&#8221;props&#8221;:{&#8220;image&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-English-Whole-Prebiotic.png&#8221;,&#8221;image_alt&#8221;:&#8221;Standard-Pouch-English-Whole-Prebiotic&#8221;,&#8221;image_de_de&#8221;:&#8221;wp-content\\\/uploads\\\/2024\\\/03\\\/Standard-Pouch-German-Whole-Prebiotic.png&#8221;,&#8221;image_de_de_alt&#8221;:&#8221;Standard-Pouch-German-Whole-Prebiotic&#8221;}}],&#8221;name&#8221;:&#8221;Phase 2 &#8211; Attribute images &#8211; slideshow &#8211; Prebiotic&#8221;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;2-3&#8243;,&#8221;width_medium&#8221;:&#8221;2-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content_de_de&#8221;:&#8221;Die Vitamine B3, B5, B6 und B12 unterst\\u00fctzen einen gesunden Stoffwechsel, tragen zu einer normalen mentalen Leistungsf\\u00e4higkeit bei und verringern M\\u00fcdigkeit und Ersch\\u00f6pfung. Zus\\u00e4tzlich unterst\\u00fctzen Zink und Vitamin B5 eine normale kognitive Leistung.\\n\\n&#8221;,&#8221;css&#8221;:&#8221;.el-element {\\n    color: var(&#8211;Grey-Dark, #595959);\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;name&#8221;:&#8221;Additional description&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;content&#8221;:{&#8220;name&#8221;:&#8221;field.product_additional_description&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;source&#8221;:{}}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-3,2-3&#8243;}},{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-attribute-buttons bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .el-content {\\n\\tcolor: var(&#8211;Black, #000);\\n    text-align: center;\\n    font-family: Poppins;\\n    font-size: 12px;\\n    font-style: normal;\\n    font-weight: 400;\\n    line-height: 18px; \\\/* 150% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;remove-vertical&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;uk-grid-match&#8221;,&#8221;column_gap&#8221;:&#8221;collapse&#8221;,&#8221;layout&#8221;:&#8221;1-3,1-3,1-3&#8243;,&#8221;parallax&#8221;:false,&#8221;row_gap&#8221;:&#8221;collapse&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=1\\ndata-format=nespresso-original-capsules-format\\ndata-size=box-10-capsules&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-1&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Nespresso\\u00ae Original capsules&#8221;,&#8221;content_de_de&#8221;:&#8221;Nespresso\\u00ae Originale Kapseln&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=2\\ndata-format=medium-ground-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-2&#8243;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Ground&#8221;,&#8221;content_de_de&#8221;:&#8221;Mittelfein gemahlen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_default&#8221;:&#8221;1-3&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;attributes&#8221;:&#8221;data-index=3\\ndata-format=whole-beans-format\\ndata-size=250g&#8221;,&#8221;class&#8221;:&#8221;attribute-button attribute-button-3&#8243;,&#8221;css&#8221;:&#8221;.el-content {padding-left: 4px;padding-right: 4px;}&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;collapse&#8221;,&#8221;grid_row_gap&#8221;:&#8221;collapse&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;content&#8221;:&#8221;Whole Beans &#8220;,&#8221;content_de_de&#8221;:&#8221;Ganze Bohnen&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;#&#8221;}}]}]}]}],&#8221;name&#8221;:&#8221;Attribute buttons&#8221;},{&#8220;type&#8221;:&#8221;woo_add_to_cart_custom&#8221;,&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;product&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;,&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}},&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted&#8221;,&#8221;css&#8221;:&#8221;.el-element .price {\\n    color: var(&#8211;color-green-dark, #1F4A38);\\n    font-family: Poppins;\\n    font-size: 20px;\\n    font-style: normal;\\n    font-weight: 600;\\n    line-height: 30px;\\n    max-height: 30px;\\n}&#8221;},&#8221;source&#8221;:[]},{&#8220;type&#8221;:&#8221;text&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;column_breakpoint&#8221;:&#8221;m&#8221;,&#8221;content&#8221;:&#8221;<\/p>\n<p><strong>We&#8217;re sorry, but we currently do not ship to your location at this time and we are unable to fulfil orders to your country.\\u00a0<\\\/strong> However, we value your interest and would love to keep you informed. Please register your interest, and we will contact you as soon as shipping becomes available in your area. Thank you for your understanding, and we look forward to serving you in the future.<\\\/p>&#8220;,&#8221;content_de_de&#8221;:&#8221;<\/p>\n<p><strong>Es tut uns leid, aber derzeit liefern wir nicht an Ihren Standort.<\\\/strong> Im Moment k\\u00f6nnen wir keine Bestellungen in Ihr Land senden. Trotzdem sch\\u00e4tzen wir Ihr Interesse sehr und w\\u00fcrden Sie gerne auf dem Laufenden halten. Bitte registrieren Sie Ihr Interesse, und wir werden Sie kontaktieren, sobald der Versand in Ihrer Region m\\u00f6glich ist. Vielen Dank f\\u00fcr Ihr Verst\\u00e4ndnis, und wir freuen uns darauf, Ihnen in Zukunft zu dienen.<\\\/p>&#8220;,&#8221;css&#8221;:&#8221;.el-element {\\n    font-size: 12px;\\n    line-height: 20px; \\\/* 166.667% *\\\/\\n}&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;,&#8221;margin_remove_top&#8221;:false,&#8221;text_color&#8221;:&#8221;emphasis&#8221;,&#8221;text_style&#8221;:&#8221;small&#8221;},&#8221;name&#8221;:&#8221;Reg Interest copy&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;small&#8221;,&#8221;layout&#8221;:&#8221;1-2,1-2&#8243;,&#8221;row_gap&#8221;:&#8221;medium&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;bevas-restricted-visible&#8221;,&#8221;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;default&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;default&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Blend page&#8221;,&#8221;link_title&#8221;:&#8221;Link to Blend page&#8221;},&#8221;source&#8221;:{&#8220;props&#8221;:{&#8220;link&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;},&#8221;name&#8221;:&#8221;link&#8221;},&#8221;content&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Explore &#8220;},&#8221;name&#8221;:&#8221;title&#8221;},&#8221;content_de_de&#8221;:{&#8220;filters&#8221;:{&#8220;search&#8221;:&#8221;&#8221;,&#8221;before&#8221;:&#8221;Entdecken &#8220;},&#8221;name&#8221;:&#8221;title&#8221;}},&#8221;query&#8221;:{&#8220;name&#8221;:&#8221;#parent&#8221;}}}],&#8221;name&#8221;:&#8221;Explore c2a for ph2&#8243;}]},{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;width_medium&#8221;:&#8221;1-2&#8243;,&#8221;width_small&#8221;:&#8221;1-2&#8243;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button&#8221;,&#8221;props&#8221;:{&#8220;fullwidth&#8221;:true,&#8221;grid_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_row_gap&#8221;:&#8221;small&#8221;,&#8221;margin&#8221;:&#8221;medium&#8221;,&#8221;margin_remove_top&#8221;:true},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;button_item&#8221;,&#8221;props&#8221;:{&#8220;button_style&#8221;:&#8221;primary&#8221;,&#8221;content&#8221;:&#8221;Register interest&#8221;,&#8221;content_de_de&#8221;:&#8221;Interesse anmelden&#8221;,&#8221;dialog_layout&#8221;:&#8221;modal&#8221;,&#8221;dialog_offcanvas_flip&#8221;:true,&#8221;icon_align&#8221;:&#8221;left&#8221;,&#8221;link&#8221;:&#8221;register-interest\\\/&#8221;,&#8221;link_aria_label&#8221;:&#8221;Link to Register interest form&#8221;,&#8221;link_title&#8221;:&#8221;Link to Register interest form&#8221;}}],&#8221;name&#8221;:&#8221;Reg isterest btn&#8221;}]}]}],&#8221;name&#8221;:&#8221;Reg interest c2a&#8221;},{&#8220;type&#8221;:&#8221;fragment&#8221;,&#8221;props&#8221;:{&#8220;css&#8221;:&#8221;.el-element {\\n    padding-right: 1em;\\n    color: var(&#8211;color-red);\\n}&#8221;,&#8221;margin&#8221;:&#8221;small&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;row&#8221;,&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;column&#8221;,&#8221;props&#8221;:{&#8220;image_position&#8221;:&#8221;center-center&#8221;,&#8221;position_sticky_breakpoint&#8221;:&#8221;m&#8221;,&#8221;vertical_align&#8221;:&#8221;middle&#8221;},&#8221;children&#8221;:[{&#8220;type&#8221;:&#8221;woo_stock&#8221;,&#8221;props&#8221;:{&#8220;class&#8221;:&#8221;product-stock-notification&#8221;,&#8221;css&#8221;:&#8221;.el-element {font-size: 16px;}&#8221;,&#8221;out_of_stock_style&#8221;:true,&#8221;text_align&#8221;:&#8221;right&#8221;,&#8221;text_align_breakpoint&#8221;:&#8221;m&#8221;,&#8221;text_align_fallback&#8221;:&#8221;left&#8221;}}]}]}],&#8221;name&#8221;:&#8221;Stock&#8221;}]}],&#8221;props&#8221;:{&#8220;column_gap&#8221;:&#8221;collapse&#8221;}}]}],&#8221;source_extended&#8221;:{&#8220;props&#8221;:{&#8220;link_modal_id&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;modal-qv-mobile-{{ sources.2521 }}&#8221;,&#8221;sources&#8221;:{&#8220;2521&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;df3e&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;213d&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;1c9a&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}},&#8221;link&#8221;:{&#8220;composed&#8221;:{&#8220;value&#8221;:&#8221;#modal-qv-mobile-{{ sources.093f }}&#8221;,&#8221;sources&#8221;:{&#8220;093f&#8221;:{&#8220;name&#8221;:&#8221;id&#8221;},&#8221;a837&#8243;:{&#8220;name&#8221;:&#8221;id&#8221;}},&#8221;conditions&#8221;:[]}}}}},{&#8220;type&#8221;:&#8221;fs_grid_item&#8221;,&#8221;props&#8221;:{&#8220;custom_image_5&#8243;:&#8221;wp-content\\\/uploads\\\/2024\\\/11\\\/bevas-offers.jpg&#8221;,&#8221;custom_meta_5&#8243;:&#8221;OFFERS&#8221;,&#8221;custom_meta_6&#8243;:&#8221;Browse our online offers and discover our latest deals!&#8221;,&#8221;custom_text_6&#8243;:&#8221;<a class=\\\"uk-button uk-button-default uk-width-1-1\\\" href=\\\"\\\/en\\\/offers\\\">VIEW OFFERS<\\\/a>&#8220;,&#8221;custom_text_6_de_de&#8221;:&#8221;<a class=\\\"uk-button uk-button-default uk-width-1-1\\\" href=\\\"\\\/de\\\/offers\\\">VIEW OFFERS<\\\/a>&#8220;,&#8221;grid_1_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_1_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_1_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_2_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_2_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_image_align&#8221;:&#8221;bottom&#8221;,&#8221;grid_3_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_3_custom_image_margin_top&#8221;:&#8221;uk-margin&#8221;,&#8221;grid_3_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_3_custom_panel_card_offset&#8221;:false,&#8221;grid_4_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_4_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_4_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_5_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_5_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_image_margin_bottom&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_image_margin_top&#8221;:&#8221;uk-margin-small&#8221;,&#8221;grid_6_custom_item_column_gap&#8221;:&#8221;small&#8221;,&#8221;grid_6_custom_item_margin&#8221;:&#8221;inherit&#8221;,&#8221;grid_6_custom_item_text_align_breakpoint&#8221;:&#8221;inherit&#8221;,&#8221;item_class&#8221;:&#8221;offers&#8221;,&#8221;item_disable_custom_grid_1&#8243;:true,&#8221;item_disable_custom_grid_2&#8243;:true,&#8221;panel_style&#8221;:&#8221;card-primary&#8221;,&#8221;show_custom_fields&#8221;:&#8221;fieldset_5&#8243;,&#8221;show_custom_settings&#8221;:&#8221;all&#8221;,&#8221;status&#8221;:&#8221;disabled&#8221;,&#8221;title&#8221;:&#8221;Offers&#8221;}}],&#8221;name&#8221;:&#8221;Mobile&#8221;},{&#8220;type&#8221;:&#8221;html&#8221;,&#8221;props&#8221;:{&#8220;content&#8221;:&#8221;<script>\\n\\ndocument.addEventListener('DOMContentLoaded', function () {\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Select all buttons with the specified classes\\n\\n\\u00a0 \\u00a0 const buttons = document.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Track the currently selected button\\n\\n\\u00a0 \\u00a0 let currentlySelectedButton = null;\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Add click event listener to each button\\n\\n\\u00a0 \\u00a0 buttons.forEach(function (button) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 button.addEventListener('click', function (event) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 event.preventDefault(); \\\/\\\/ Prevent default action\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Find the closest modal container\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 const modal = button.closest('.el-sublayout-modal');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 if (modal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 handleButtonClick(button, modal); \\\/\\\/ Pass the modal context\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 currentlySelectedButton = button; \\\/\\\/ Update the currently selected button\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 });\\n\\n\\u00a0 \\u00a0 });\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Function to handle button clicks\\n\\n\\u00a0 \\u00a0 function handleButtonClick(button, modal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Find the closest parent container that holds the relevant select elements\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const container = modal.querySelector('.product-container');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Check if container is found\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (!container) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.error('No product container found for this button.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 return; \\\/\\\/ Exit the function if the container is not found\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Remove 'selected' class from all buttons within the modal\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const allButtonsInModal = modal.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 allButtonsInModal.forEach(function (btn) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 btn.classList.remove('selected');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 });\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Add 'selected' class to the clicked button\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 button.classList.add('selected');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Get format and size from the button's data attributes\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const formatValue = button.getAttribute('data-format');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const sizeValue = button.getAttribute('data-size');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Button clicked:', button);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Format value:', formatValue);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Size value:', sizeValue);\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Reset the select elements before updating\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 resetSelectElements(container);\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Set the values of the select elements\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 updateSelectElements(container, formatValue, sizeValue);\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Get the index from the data-index attribute\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const index = button.getAttribute('data-index');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Slider index:', index);\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Show the slider based on the index\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 showSlider(index, modal); \\\/\\\/ Pass the modal context to showSlider\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Update the URL with a hash when the modal opens\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 history.pushState(null, null, '#modal-open');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Attach a hidden event listener to reset selections on modal close\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 UIkit.util.on(modal, 'hide', function() {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 resetSelections(modal); \\\/\\\/ Reset selections when the modal is closed\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Modal closed. Selections reset.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Remove the hash from the URL when the modal closes\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 history.pushState(null, null, window.location.pathname); \\\/\\\/ Reset to the original path\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 });\\n\\n\\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Function to reset selections when modal closes\\n\\n\\u00a0 \\u00a0 function resetSelections(modal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const container = modal.querySelector('.product-container');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Reset the select elements\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 resetSelectElements(container);\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Remove 'selected' class from all buttons in the modal\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const allButtonsInModal = modal.querySelectorAll('.attribute-button-1, .attribute-button-2, .attribute-button-3');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 allButtonsInModal.forEach(function (btn) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 btn.classList.remove('selected');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 });\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Re-add the selected button after resetting\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (currentlySelectedButton) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 currentlySelectedButton.classList.add('selected');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Function to reset the select elements\\n\\n\\u00a0 \\u00a0 function resetSelectElements(container) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const formatSelect = container.querySelector('#pa_format');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const sizeSelect = container.querySelector('#pa_size');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Reset format select to default\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (formatSelect) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 formatSelect.value = \\\"\\\"; \\\/\\\/ Assuming the first option is the default\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 formatSelect.dispatchEvent(new Event('change', { bubbles: true })); \\\/\\\/ Trigger change event\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Format select reset to default');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 } else {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.warn('Format select not found in container.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Reset size select to default\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (sizeSelect) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 sizeSelect.value = \\\"\\\"; \\\/\\\/ Assuming the first option is the default\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 sizeSelect.dispatchEvent(new Event('change', { bubbles: true })); \\\/\\\/ Trigger change event\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Size select reset to default');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 } else {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.warn('Size select not found in container.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Function to update the select elements\\n\\n\\u00a0 \\u00a0 function updateSelectElements(container, formatValue, sizeValue) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const formatSelect = container.querySelector('#pa_format');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const sizeSelect = container.querySelector('#pa_size');\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Check if formatSelect exists before setting value\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (formatSelect) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 formatSelect.value = formatValue;\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 formatSelect.dispatchEvent(new Event('change', { bubbles: true })); \\\/\\\/ Trigger change event for WooCommerce\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Format select updated to:', formatValue);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Check if sizeSelect exists before setting value\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (sizeSelect) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 sizeSelect.value = sizeValue;\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 sizeSelect.dispatchEvent(new Event('change', { bubbles: true })); \\\/\\\/ Trigger change event for WooCommerce\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Size select updated to:', sizeValue);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Function to show the slider\\n\\n\\u00a0 \\u00a0 function showSlider(index, modal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const slider = modal.querySelector('.bevas-variations-image-slider'); \\\/\\\/ Scoped to the current modal\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (slider && index !== null) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 UIkit.slideshow(slider).show(Number(index) - 1); \\\/\\\/ Convert index to a number (adjusted to zero-based)\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Showing slider at index:', index);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 } else {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.warn('No valid index provided for slider or slider not found.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 }\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Event listener for when a modal is shown\\n\\n\\u00a0 \\u00a0 UIkit.util.on('.el-sublayout-modal', 'beforeshow', function(event) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const modal = event.target; \\\/\\\/ The modal that has been shown\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const firstButton = modal.querySelector('.attribute-button-1'); \\\/\\\/ Get the first button in the modal\\n\\n\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (firstButton) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Programmatically click the first button to select it\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 firstButton.click(); \\\/\\\/ This will trigger the button's click event\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 });\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Listen for the WooCommerce event for adding to cart using jQuery\\n\\n\\u00a0 \\u00a0 jQuery(document).ready(function() {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 jQuery(document).on('added_to_cart', function(event) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Get the currently open modal\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 const activeModal = document.querySelector('.el-sublayout-modal.uk-open');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 if (activeModal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Do not reset the button selection\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 if (currentlySelectedButton) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Adding to cart, currently selected button:', currentlySelectedButton);\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 } else {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.warn('No currently selected button found in the active modal after adding to cart.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 } else {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.warn('No active modal found when item added to cart.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 });\\n\\n\\u00a0 \\u00a0 });\\n\\n\\n\\n\\u00a0 \\u00a0 \\\/\\\/ Handle back navigation to close the modal\\n\\n\\u00a0 \\u00a0 window.addEventListener('popstate', function(event) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 const activeModal = document.querySelector('.el-sublayout-modal.uk-open');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 if (activeModal) {\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\\/\\\/ Close the modal when the back button is pressed\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 UIkit.modal(activeModal).hide();\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 console.log('Modal closed via back navigation.');\\n\\n\\u00a0 \\u00a0 \\u00a0 \\u00a0 }\\n\\n\\u00a0 \\u00a0 });\\n\\n\\u00a0 \\u00a0\\u00a0\\n\\n});\\n\\n\\u00a0 \\u00a0\\u00a0\\n\\n<\\\/script>\"},\"name\":\"Attribute scripts - Shop Page\"},{\"type\":\"html\",\"props\":{\"content\":\"<script>\\n(function($) {\\n    $(document).on('found_variation', function(event, variation) {\\n        console.log({ variation });\\n\\n        \\\/\\\/ Find the closest product container from the event target (the element triggering the event)\\n        var $target = $(event.target); \\\/\\\/ The element that triggered the event\\n        var $productContainer = $target.closest('.product-container'); \\\/\\\/ Get the closest product container\\n\\n        if ($productContainer.length) { \\\/\\\/ Check if the product container exists\\n            var $stockStatus = $productContainer.find('.stock-status'); \\\/\\\/ Select the stock status element within the product container\\n            if (variation.is_in_stock) {\\n            $stockStatus.addClass('uk-invisible'); \\\/\\\/ Remove the class if in stock\\n        } else {\\n            $stockStatus.removeClass('uk-invisible'); \\\/\\\/ Add the class for out of stock\\n        }\\n        } else {\\n            console.warn('No product container found for this variation.');\\n        }\\n    });\\n})(jQuery);\\n<\\\/script>\\n\"},\"name\":\"Attribute scripts - Out of stock\"},{\"type\":\"html\",\"props\":{\"content\":\"<script>\\n(function($) {\\n    $(document).ready(function() {\\n        \\\/\\\/ Use event delegation on a common parent container\\n        $('.bevas-item').on('mouseenter', 'a.uk-button-primary', function() {\\n            \\\/\\\/ Add the 'no-hover' class to the parent .bevas-item on button hover\\n            $(this).closest('.bevas-item').addClass('no-hover');\\n        }).on('mouseleave', 'a.uk-button-primary', function() {\\n            \\\/\\\/ Remove the 'no-hover' class from the parent .bevas-item when button hover ends\\n            $(this).closest('.bevas-item').removeClass('no-hover');\\n        });\\n    });\\n})(jQuery);\\n\\n<\\\/script>\\n\"},\"name\":\"Grid scripts - Hover\"},{\"type\":\"html\",\"props\":{\"content\":\"<script>\\n\\n\\n<\\\/script>\"},\"name\":\"Grid scripts - Hover\"}]}]}]},{\"type\":\"section\",\"props\":{\"image_position\":\"center-center\",\"padding\":\"large\",\"section_image_column\":\"hide\",\"section_width\":\"fullwidth\",\"style\":\"default\",\"title_breakpoint\":\"xl\",\"title_position\":\"top-left\",\"title_rotation\":\"left\",\"vertical_align\":\"middle\",\"width\":\"default\"},\"children\":[{\"type\":\"row\",\"children\":[{\"type\":\"column\",\"props\":{\"image_position\":\"center-center\",\"position_sticky_breakpoint\":\"m\"}}]}]}],\"version\":\"4.5.27\",\"yooessentialsVersion\":\"2.4.7\"} --><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Shop Our Blends Made from premium 100% Arabica and Robusta coffee beans. Available as whole beans, ground coffee or Nespresso\u00ae Original capsules.<\/p>\n","protected":false},"author":6,"featured_media":11322,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"iawp_total_views":263,"footnotes":""},"class_list":["post-469","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/pages\/469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/comments?post=469"}],"version-history":[{"count":301,"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/pages\/469\/revisions"}],"predecessor-version":[{"id":12344,"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/pages\/469\/revisions\/12344"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/media\/11322"}],"wp:attachment":[{"href":"https:\/\/bevas.com\/en\/wp-json\/wp\/v2\/media?parent=469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}