{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/NPtjtqiLxf1by4OSpCyz/QSq48YuH8tjWbRttTPdu/SJ3xnrR2w.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const EmbedFonts=getFonts(Embed);const cycleOrder=[\"NEGLw8zJz\",\"W1lQYjEaB\"];const serializationHash=\"framer-eaMzq\";const variantClassNames={NEGLw8zJz:\"framer-v-1f84bw0\",W1lQYjEaB:\"framer-v-1dh2f4r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.2,delay:.7,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NEGLw8zJz\",\"Variant 2\":\"W1lQYjEaB\"};const getProps=({countText,height,id,images,privacyText,title,width,...props})=>{return{...props,NwpWHd8T7:images??props.NwpWHd8T7??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"NEGLw8zJz\",w2g99eOkj:countText??props.w2g99eOkj??\"1.4k+\",y6L9u_sr5:title??props.y6L9u_sr5??\"Subscribe and be the first to receive our offers and promotions\",ZyKI681Kc:privacyText??props.ZyKI681Kc??\"No spam emails, just valuable content.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,y6L9u_sr5,NwpWHd8T7,w2g99eOkj,ZyKI681Kc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NEGLw8zJz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1f84bw0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NEGLw8zJz\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({W1lQYjEaB:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[NwpWHd8T7&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nhksuw\",\"data-framer-name\":\"Subscribers Preview\",draggable:\"false\",layoutDependency:layoutDependency,layoutId:\"cYbAd4Pmc\",children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ynoth8\",\"data-framer-appear-id\":\"1ynoth8\",\"data-framer-name\":\"Subscriber Count\",draggable:\"false\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"NhlFK0hdk\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18,transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TnVuaXRvLWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\"},children:\"1.4k+\"})}),className:\"framer-1qq2t24\",\"data-framer-name\":\"Subscriber Count Text\",fonts:[\"FS;Nunito-extrabold\"],layoutDependency:layoutDependency,layoutId:\"JHNUtMqrc\",style:{\"--framer-link-hover-text-color\":\"var(--token-6e365f09-eb16-423f-93f7-5f3b4b83d578, rgb(255, 204, 34))\",\"--framer-link-text-color\":\"rgba(48, 48, 64, 0.7)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},text:w2g99eOkj,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TnVuaXRvLWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get exclusive tips and updates delivered weekly to your inbox.\"})}),className:\"framer-nojka2\",\"data-framer-name\":\"Subscribe Widget Title\",fonts:[\"FS;Nunito-extrabold\"],layoutDependency:layoutDependency,layoutId:\"vEeJST72r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"var(--token-6e365f09-eb16-423f-93f7-5f3b4b83d578, rgb(255, 204, 34))\",\"--framer-link-text-color\":\"rgba(48, 48, 64, 0.7)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},text:y6L9u_sr5,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({W1lQYjEaB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TnVuaXRvLWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Subscribe and be the first to receive our offers and promotions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gyr2d7-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yE5_Oz0q4-container\",nodeId:\"yE5_Oz0q4\",rendersWithMotion:true,scopeId:\"SJ3xnrR2w\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<style type=\"text/css\">@import url(\"https://assets.mlcdn.com/fonts.css?version=1742905\");</style>\\n    <style type=\"text/css\">\\n    /* LOADER */\\n    .ml-form-embedSubmitLoad {\\n      display: inline-block;\\n      width: 20px;\\n      height: 20px;\\n    }\\n\\n    .g-recaptcha {\\n    transform: scale(1);\\n    -webkit-transform: scale(1);\\n    transform-origin: 0 0;\\n    -webkit-transform-origin: 0 0;\\n    height: ;\\n    }\\n\\n    .sr-only {\\n      position: absolute;\\n      width: 1px;\\n      height: 1px;\\n      padding: 0;\\n      margin: -1px;\\n      overflow: hidden;\\n      clip: rect(0,0,0,0);\\n      border: 0;\\n    }\\n\\n    .ml-form-embedSubmitLoad:after {\\n      content: \" \";\\n      display: block;\\n      width: 11px;\\n      height: 11px;\\n      margin: 1px;\\n      border-radius: 50%;\\n      border: 4px solid #fff;\\n    border-color: #ffffff #ffffff #ffffff transparent;\\n    animation: ml-form-embedSubmitLoad 1.2s linear infinite;\\n    }\\n    @keyframes ml-form-embedSubmitLoad {\\n      0% {\\n      transform: rotate(0deg);\\n      }\\n      100% {\\n      transform: rotate(360deg);\\n      }\\n    }\\n      #mlb2-24142404.ml-form-embedContainer {\\n        box-sizing: border-box;\\n        display: table;\\n        margin: 0 auto;\\n        position: static;\\n        width: 100% !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer h4,\\n      #mlb2-24142404.ml-form-embedContainer p,\\n      #mlb2-24142404.ml-form-embedContainer span,\\n      #mlb2-24142404.ml-form-embedContainer button {\\n        text-transform: none !important;\\n        letter-spacing: normal !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper {\\n        background-color: #ffffff;\\n        \\n        border-width: 0px;\\n        border-color: transparent;\\n        border-radius: 4px;\\n        border-style: solid;\\n        box-sizing: border-box;\\n        display: inline-block !important;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n              }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 400px; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 400px; width: 100%; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-align-left { text-align: left; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-align-center { text-align: center; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-align-right { text-align: right; }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedHeader img {\\n        border-top-left-radius: 4px;\\n        border-top-right-radius: 4px;\\n        height: auto;\\n        margin: 0 auto !important;\\n        max-width: 100%;\\n        width: undefinedpx;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {\\n        padding: 20px 20px 0 20px;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.ml-form-embedBodyHorizontal {\\n        padding-bottom: 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {\\n        text-align: left;\\n        margin: 0 0 20px 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 30px;\\n        font-weight: 400;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n        word-break: break-word;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        font-weight: 400;\\n        line-height: 20px;\\n        margin: 0 0 10px 0;\\n        text-align: left;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ul,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ul,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol {\\n        color: #000000;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol {\\n        list-style-type: lower-alpha;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent ol ol ol,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent ol ol ol {\\n        list-style-type: lower-roman;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p a,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group {\\n        text-align: left!important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-block-form .ml-field-group label {\\n        margin-bottom: 5px;\\n        color: #333333;\\n        font-size: 14px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-weight: bold; font-style: normal; text-decoration: none;;\\n        display: inline-block;\\n        line-height: 20px;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {\\n        margin: 0;\\n        width: 100%;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        margin: 0 0 20px 0;\\n        width: 100%;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {\\n        float: left;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n        margin: 0;\\n        padding: 0 0 20px 0;\\n        width: 100%;\\n        height: auto;\\n        float: left;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {\\n        margin: 0 0 10px 0;\\n        width: 100%;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item {\\n        margin: 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-formfieldHorizintal {\\n        margin: 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        margin-left: 0;\\n        margin-right: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-webkit-input-placeholder { color: #333333; }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input::-moz-placeholder { color: #333333; }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-ms-input-placeholder { color: #333333; }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-moz-placeholder,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input:-moz-placeholder { color: #333333; }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow textarea {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        height: auto;\\n        line-height: 21px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          border-color: #cccccc!important;\\n          background-color: #ffffff!important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.custom-control-input[type=\"checkbox\"]{\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n        border-radius: 4px!important;\\n      }\\n\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'0 0 8 8\\'%3e%3cpath fill=\\'%23fff\\' d=\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::after {\\n        background-image: url(\"data:image/svg+xml,%3csvg xmlns=\\'http://www.w3.org/2000/svg\\' viewBox=\\'-4 -4 8 8\\'%3e%3ccircle r=\\'3\\' fill=\\'%23fff\\'/%3e%3c/svg%3e\");\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked~.custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input:checked~.custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox input[type=checkbox]:checked~.label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before  {\\n          border-color: #000000!important;\\n          background-color: #000000!important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label::after {\\n           top: 2px;\\n           box-sizing: border-box;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n           top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n        top: 0px!important;\\n           box-sizing: border-box!important;\\n      }\\n\\n       #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after {\\n            top: 0px!important;\\n            box-sizing: border-box!important;\\n            position: absolute;\\n            left: -1.5rem;\\n            display: block;\\n            width: 1rem;\\n            height: 1rem;\\n            content: \"\";\\n       }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before {\\n        top: 0px!important;\\n        box-sizing: border-box!important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-control-label::after {\\n          position: absolute;\\n          top: 2px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::before, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before {\\n          position: absolute;\\n          top: 4px;\\n          left: -1.5rem;\\n          display: block;\\n          width: 16px;\\n          height: 16px;\\n          pointer-events: none;\\n          content: \"\";\\n          background-color: #ffffff;\\n          border: #adb5bd solid 1px;\\n          border-radius: 50%;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          position: absolute;\\n          top: 0px!important;\\n          left: -1.5rem;\\n          display: block;\\n          width: 1rem;\\n          height: 1rem;\\n          content: \"\";\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-radio .custom-control-label::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox .custom-control-label::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-interestGroupsRow .ml-form-interestGroupsRowCheckbox .label-description::after, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after {\\n          background: no-repeat 50%/50% 50%;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-control, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-control {\\n        position: relative;\\n        display: block;\\n        min-height: 1.5rem;\\n        padding-left: 1.5rem;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-input, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-input {\\n          position: absolute;\\n          z-index: -1;\\n          opacity: 0;\\n          box-sizing: border-box;\\n          padding: 0;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-checkbox .custom-control-label, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-checkbox .custom-control-label {\\n          color: #000000;\\n          font-size: 12px!important;\\n          font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n          line-height: 22px;\\n          margin-bottom: 0;\\n          position: relative;\\n          vertical-align: top;\\n          font-style: normal;\\n          font-weight: 700;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-select, #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-select {\\n        background-color: #ffffff !important;\\n        color: #333333 !important;\\n        border-color: #cccccc;\\n        border-radius: 4px !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        line-height: 20px !important;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 28px 10px 12px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n        max-width: 100% !important;\\n        height: auto;\\n        display: inline-block;\\n        vertical-align: middle;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/dropdown.svg\\') no-repeat right .75rem center/8px 10px;\\n        -webkit-appearance: none;\\n        -moz-appearance: none;\\n        appearance: none;\\n      }\\n\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow {\\n        height: auto;\\n        width: 100%;\\n        float: left;\\n      }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 70%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal { width: 30%; float: left; }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn { padding-top: 25px;  }\\n      .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields { box-sizing: border-box; float: left; padding-right: 10px;  }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {\\n        background-color: #ffffff;\\n        color: #333333;\\n        border-color: #cccccc;\\n        border-radius: 4px;\\n        border-style: solid;\\n        border-width: 1px;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px;\\n        line-height: 20px;\\n        margin-bottom: 0;\\n        margin-top: 0;\\n        padding: 10px 10px;\\n        width: 100%;\\n        box-sizing: border-box;\\n        overflow-y: initial;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {\\n        background-color: #000000 !important;\\n        border-color: #000000;\\n        border-style: solid;\\n        border-width: 1px;\\n        border-radius: 4px;\\n        box-shadow: none;\\n        color: #ffffff !important;\\n        cursor: pointer;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 14px !important;\\n        font-weight: 700;\\n        line-height: 20px;\\n        margin: 0 !important;\\n        padding: 10px !important;\\n        width: 100%;\\n        height: auto;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button:hover {\\n        background-color: #787878 !important;\\n        border-color: #787878 !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=\"checkbox\"] {\\n        box-sizing: border-box;\\n        padding: 0;\\n        position: absolute;\\n        z-index: -1;\\n        opacity: 0;\\n        margin-top: 5px;\\n        margin-left: -1.5rem;\\n        overflow: visible;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {\\n        color: #000000;\\n        display: block;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif;\\n        font-size: 12px;\\n        text-align: left;\\n        margin-bottom: 0;\\n        position: relative;\\n        vertical-align: top;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {\\n        font-weight: normal;\\n        margin: 0;\\n        padding: 0;\\n        position: relative;\\n        display: block;\\n        min-height: 24px;\\n        padding-left: 24px;\\n\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label a {\\n        color: #000000;\\n        text-decoration: underline;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p {\\n        color: #000000 !important;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 12px !important;\\n        font-weight: normal !important;\\n        line-height: 18px !important;\\n        padding: 0 !important;\\n        margin: 0 5px 0 0 !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p:last-child {\\n        margin: 0;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {\\n        margin: 0 0 20px 0;\\n        float: left;\\n        width: 100%;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {\\n        background-color: #000000 !important;\\n        border: none !important;\\n        border-radius: 4px !important;\\n        box-shadow: none !important;\\n        color: #ffffff !important;\\n        cursor: pointer;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 700 !important;\\n        line-height: 21px !important;\\n        height: auto;\\n        padding: 10px !important;\\n        width: 100% !important;\\n        box-sizing: border-box !important;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading {\\n        display: none;\\n      }\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {\\n        background-color: #787878 !important;\\n      }\\n      .ml-subscribe-close {\\n        width: 30px;\\n        height: 30px;\\n        background: url(\\'https://assets.mlcdn.com/ml/images/default/modal_close.png\\') no-repeat;\\n        background-size: 30px;\\n        cursor: pointer;\\n        margin-top: -10px;\\n        margin-right: -10px;\\n        position: absolute;\\n        top: 0;\\n        right: 0;\\n      }\\n      .ml-error input, .ml-error textarea, .ml-error select {\\n        border-color: red!important;\\n      }\\n\\n      .ml-error .custom-checkbox-radio-list {\\n        border: 1px solid red !important;\\n        border-radius: 4px;\\n        padding: 10px;\\n      }\\n\\n      .ml-error .label-description,\\n      .ml-error .label-description p,\\n      .ml-error .label-description p a,\\n      .ml-error label:first-child {\\n        color: #ff0000 !important;\\n      }\\n\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p,\\n      #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p:first-letter {\\n        color: #ff0000 !important;\\n      }\\n            @media only screen and (max-width: 400px){\\n\\n        .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm { float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow { height: auto!important; width: 100%!important; float: left!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-right: 0px!important; padding-bottom: 10px; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { width: 100%!important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal.labelsOn { padding-top: 0px!important; }\\n\\n      }\\n    </style>\\n\\n    <style type=\"text/css\">\\n\\n      .ml-mobileButton-horizontal { display: none; }\\n\\n      #mlb2-24142404 .ml-mobileButton-horizontal button {\\n\\n        background-color: #000000 !important;\\n        border-color: #000000 !important;\\n        border-style: solid !important;\\n        border-width: 1px !important;\\n        border-radius: 4px !important;\\n        box-shadow: none !important;\\n        color: #ffffff !important;\\n        cursor: pointer;\\n        font-family: \\'Open Sans\\', Arial, Helvetica, sans-serif !important;\\n        font-size: 14px !important;\\n        font-weight: 700 !important;\\n        line-height: 20px !important;\\n        padding: 10px !important;\\n        width: 100% !important;\\n\\n      }\\n\\n      @media only screen and (max-width: 400px) {\\n        #mlb2-24142404.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent.horozintalForm {\\n          padding: 0 0 10px 0 !important;\\n        }\\n        .ml-hide-horizontal { display: none !important; }\\n        .ml-form-formContent.horozintalForm .ml-button-horizontal { display: none!important; }\\n        .ml-mobileButton-horizontal { display: inline-block !important; margin-bottom: 20px;width:100%; }\\n        .ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal > div { padding-bottom: 0px !important; }\\n      }\\n\\n    </style>\\n  <style type=\"text/css\">\\n    @media only screen and (max-width: 400px) {\\n       .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {\\n        margin-bottom: 10px !important;\\n        width: 100% !important;\\n      }\\n    }\\n  </style>\\n    \\n    \\n\\n    \\n    \\n\\n    \\n    \\n\\n    \\n\\n      \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n      \\n\\n      \\n\\n            \\n            \\n            \\n            \\n            \\n            \\n      \\n\\n      \\n\\n      \\n        \\n        \\n         \\n        \\n        \\n      \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n\\n      \\n        \\n        \\n        \\n        \\n  \\n\\n\\n\\n  \\n        \\n        \\n        \\n      \\n\\n\\n      \\n    \\n    \\n    \\n    \\n    \\n    \\n    \\n  \\n\\n  \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n      \\n\\n       \\n\\n        \\n        \\n        \\n        \\n       \\n\\n       \\n        \\n        \\n        \\n        \\n      \\n\\n      \\n        \\n        \\n        \\n        \\n        \\n        \\n        \\n       \\n\\n    \\n\\n    \\n\\n\\n      \\n\\n\\n      \\n\\n      \\n      \\n\\n      \\n\\n      \\n\\n\\n\\n\\n\\n    \\n\\n      \\n    <div id=\"mlb2-24142404\" class=\"ml-form-embedContainer ml-subscribe-form ml-subscribe-form-24142404\">\\n      <div class=\"ml-form-align-center \">\\n        <div class=\"ml-form-embedWrapper embedForm\">\\n\\n          \\n          \\n\\n          <div class=\"ml-form-embedBody ml-form-embedBodyHorizontal row-form\">\\n\\n            <div class=\"ml-form-embedContent\" style=\"margin-bottom: 0px; \">\\n              \\n            </div>\\n\\n            <form class=\"ml-block-form\" action=\"https://assets.mailerlite.com/jsonp/1240068/forms/149970047397267304/subscribe\" data-code=\"\" method=\"post\" target=\"_blank\">\\n              \\n\\n              <div class=\"ml-form-formContent horozintalForm\">\\n                <div class=\"ml-form-horizontalRow\">\\n                  <div class=\"ml-input-horizontal\">\\n                    \\n                      \\n                      <div style=\"width: 100%;\" class=\"horizontal-fields\">\\n\\n\\n\\n\\n\\n\\n                        <div class=\"ml-field-group ml-field-email ml-validate-email ml-validate-required\">\\n                          \\n                          <!-- input -->\\n                      <input type=\"email\" class=\"form-control\" data-inputmask=\"\" name=\"fields[email]\" placeholder=\"Email\" autocomplete=\"email\">\\n                      <!-- /input -->\\n                        </div>\\n\\n\\n\\n                      </div>\\n                    \\n                  </div>\\n\\n\\n                  <div class=\"ml-button-horizontal primary \">\\n                    \\n                      <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                    \\n                    <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                      <div class=\"ml-form-embedSubmitLoad\"></div>\\n                      <span class=\"sr-only\">Loading...</span>\\n                    </button>\\n                  </div>\\n                </div>\\n              </div>\\n\\n              <!-- Privacy policy -->\\n              \\n              <!-- /Privacy policy -->\\n\\n              \\n\\n              \\n\\n              \\n\\n\\n\\n\\n\\n\\n              \\n              <input type=\"hidden\" name=\"ml-submit\" value=\"1\">\\n\\n              \\n\\n              <div class=\"ml-mobileButton-horizontal\">\\n                <button type=\"submit\" class=\"primary\">Subscribe</button>\\n                <button disabled=\"disabled\" style=\"display: none;\" type=\"button\" class=\"loading\">\\n                  <div class=\"ml-form-embedSubmitLoad\"></div>\\n                  <span class=\"sr-only\">Loading...</span>\\n                </button>\\n              </div>\\n              <input type=\"hidden\" name=\"anticsrf\" value=\"true\">\\n            </form>\\n          </div>\\n\\n          <div class=\"ml-form-successBody row-success\" style=\"display: none\">\\n\\n            <div class=\"ml-form-successContent\">\\n              \\n                <h4>Thank you!</h4>\\n                \\n                  <p>You have successfully joined our subscriber list.</p>\\n                \\n              \\n            </div>\\n\\n          </div>\\n        </div>\\n      </div>\\n    </div>\\n\\n  \\n\\n  \\n  \\n  <script>\\n    function ml_webform_success_24142404() {\\n      var $ = ml_jQuery || jQuery;\\n      $(\\'.ml-subscribe-form-24142404 .row-success\\').show();\\n      $(\\'.ml-subscribe-form-24142404 .row-form\\').hide();\\n    }\\n      </script>\\n  \\n  \\n      <script src=\"https://groot.mailerlite.com/js/w/webforms.min.js?v176e10baa5e7ed80d35ae235be3d5024\" type=\"text/javascript\"></script>\\n        <script>\\n            fetch(\"https://assets.mailerlite.com/jsonp/1240068/forms/149970047397267304/takel\")\\n        </script>',id:\"yE5_Oz0q4\",layoutId:\"yE5_Oz0q4\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"No spam emails, just valuable content.\"})}),className:\"framer-xoqz6h\",\"data-framer-name\":\"Privacy Text\",fonts:[\"FS;Nunito-regular\"],layoutDependency:layoutDependency,layoutId:\"WQCOYUkqZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-hover-text-color\":\"var(--token-6e365f09-eb16-423f-93f7-5f3b4b83d578, rgb(255, 204, 34))\",\"--framer-link-text-color\":\"rgba(48, 48, 64, 0.7)\",\"--framer-link-text-decoration\":\"none\",\"--framer-paragraph-spacing\":\"0px\"},text:ZyKI681Kc,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({W1lQYjEaB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"No spam emails, just valuable content.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eaMzq.framer-j53uaq, .framer-eaMzq .framer-j53uaq { display: block; }\",\".framer-eaMzq.framer-1f84bw0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-eaMzq .framer-1nhksuw { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; user-select: none; width: min-content; }\",\".framer-eaMzq .framer-1ynoth8 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-eaMzq .framer-1qq2t24 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-eaMzq .framer-nojka2, .framer-eaMzq .framer-xoqz6h { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eaMzq .framer-gyr2d7-container { flex: none; height: 145px; position: relative; width: 241px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eaMzq.framer-1f84bw0, .framer-eaMzq .framer-1nhksuw, .framer-eaMzq .framer-1ynoth8 { gap: 0px; } .framer-eaMzq.framer-1f84bw0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-eaMzq.framer-1f84bw0 > :first-child { margin-top: 0px; } .framer-eaMzq.framer-1f84bw0 > :last-child { margin-bottom: 0px; } .framer-eaMzq .framer-1nhksuw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-eaMzq .framer-1nhksuw > :first-child, .framer-eaMzq .framer-1ynoth8 > :first-child { margin-left: 0px; } .framer-eaMzq .framer-1nhksuw > :last-child, .framer-eaMzq .framer-1ynoth8 > :last-child { margin-right: 0px; } .framer-eaMzq .framer-1ynoth8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-eaMzq.framer-v-1dh2f4r.framer-1f84bw0 { align-content: center; align-items: center; width: 426px; }\",\".framer-eaMzq.framer-v-1dh2f4r .framer-gyr2d7-container { height: 101px; width: 419px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 299.5\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"W1lQYjEaB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"y6L9u_sr5\":\"title\",\"NwpWHd8T7\":\"images\",\"w2g99eOkj\":\"countText\",\"ZyKI681Kc\":\"privacyText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSJ3xnrR2w=withCSS(Component,css,\"framer-eaMzq\");export default FramerSJ3xnrR2w;FramerSJ3xnrR2w.displayName=\"Subscribe Widget 2\";FramerSJ3xnrR2w.defaultProps={height:299.5,width:240};addPropertyControls(FramerSJ3xnrR2w,{variant:{options:[\"NEGLw8zJz\",\"W1lQYjEaB\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},y6L9u_sr5:{defaultValue:\"Subscribe and be the first to receive our offers and promotions\",displayTextArea:false,title:\"Title\",type:ControlType.String},NwpWHd8T7:{defaultValue:true,title:\"Images\",type:ControlType.Boolean},w2g99eOkj:{defaultValue:\"1.4k+\",displayTextArea:false,title:\"Count Text\",type:ControlType.String},ZyKI681Kc:{defaultValue:\"No spam emails, just valuable content.\",displayTextArea:false,title:\"Privacy Text\",type:ControlType.String}});addFonts(FramerSJ3xnrR2w,[{explicitInter:true,fonts:[{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/C5YEK76LISOF25EX4WE77GVWE767BBIS/DITQRI6CWRXCHM5QOYRUPL4DYIUTMLZO/DA6SBKJCYG2VMA5IQWRWJEW6ZUKE3654.woff2\",weight:\"800\"},{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TLYIEBMLK2WJ52NPZGXWE4JFG7QMD4YE/ZWEB6SEZRQRYG74CNM4GTGHBKMZNOJGI/JU4XHYYDF6C56R3QGL2R44ZSIUFUMIKR.woff2\",weight:\"400\"}]},...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSJ3xnrR2w\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerVariables\":\"{\\\"y6L9u_sr5\\\":\\\"title\\\",\\\"NwpWHd8T7\\\":\\\"images\\\",\\\"w2g99eOkj\\\":\\\"countText\\\",\\\"ZyKI681Kc\\\":\\\"privacyText\\\"}\",\"framerIntrinsicHeight\":\"299.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W1lQYjEaB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SJ3xnrR2w.map"],
  "mappings": "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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAg2sC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,mBAAmB,EAAE,iBAAiBqE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,iCAAiC,uEAAuE,2BAA2B,wBAAwB,gCAAgC,OAAO,6BAA6B,KAAK,EAAE,KAAKX,GAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,EAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,gFAAgF,6QAA6Q,kUAAkU,qYAAqY,oIAAoI,oNAAoN,0GAA0G,w2BAAw2B,8GAA8G,0FAA0F,EASlijDC,EAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,qBAAqBA,EAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kEAAkE,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,SAAS,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yCAAyC,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7E,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "countText", "height", "id", "images", "privacyText", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "y6L9u_sr5", "NwpWHd8T7", "w2g99eOkj", "ZyKI681Kc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerSJ3xnrR2w", "withCSS", "SJ3xnrR2w_default", "addPropertyControls", "ControlType", "addFonts"]
}
