{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/AkwFzbhetMApGlC7PnkR/iiuq524Sov2gpH5gLKcF/RRuMeqeDi.js", "ssg:https://framerusercontent.com/modules/fWwIPHo0Vazl2exH84HK/SNqYFLzfhhYqlEN3smiN/RaYQfddR6.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,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{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);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</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>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// 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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CbVHkdgg5\",\"bY6LAySso\",\"eHi5P6vnm\",\"Ocp4ng7hC\",\"llZbeSlBm\",\"J4HkOGq5p\"];const serializationHash=\"framer-FkNia\";const variantClassNames={bY6LAySso:\"framer-v-1hr49q0\",CbVHkdgg5:\"framer-v-11zynyg\",eHi5P6vnm:\"framer-v-7xggp2\",J4HkOGq5p:\"framer-v-1ikxjrp\",llZbeSlBm:\"framer-v-hbxmcc\",Ocp4ng7hC:\"framer-v-13m3url\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"mobile 1\":\"Ocp4ng7hC\",\"mobile 2\":\"llZbeSlBm\",\"mobile 3\":\"J4HkOGq5p\",\"Variant 1\":\"CbVHkdgg5\",\"Variant 2\":\"bY6LAySso\",\"Variant 3\":\"eHi5P6vnm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CbVHkdgg5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CbVHkdgg5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ocp4ng7hC\",\"llZbeSlBm\",\"J4HkOGq5p\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11zynyg\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CbVHkdgg5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bY6LAySso:{\"data-framer-name\":\"Variant 2\"},eHi5P6vnm:{\"data-framer-name\":\"Variant 3\"},J4HkOGq5p:{\"data-framer-name\":\"mobile 3\"},llZbeSlBm:{\"data-framer-name\":\"mobile 2\"},Ocp4ng7hC:{\"data-framer-name\":\"mobile 1\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tna5jb\",\"data-framer-name\":\"bar\",layoutDependency:layoutDependency,layoutId:\"cgCmnVY7j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"01\"})}),className:\"framer-ec0pum\",\"data-framer-name\":\"01\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"R2y6vcuDP\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1durshy\",layoutDependency:layoutDependency,layoutId:\"fVU30ppdQ\",style:{backgroundColor:\"var(--token-cd1cc77f-54aa-4d7f-97f3-4a7b81793a84, rgb(234, 233, 254))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-er4cjd\",layoutDependency:layoutDependency,layoutId:\"HzBFupL8n\",style:{backgroundColor:\"var(--token-73efbd09-600f-4aa4-944d-96f4f4c0ec98, rgb(112, 90, 248))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"03\"})}),className:\"framer-1t3vago\",\"data-framer-name\":\"01\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vuk9cei2e\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wrlk8i\",layoutDependency:layoutDependency,layoutId:\"CK8lgfxF2\",...addPropertyOverrides({bY6LAySso:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13f1hoa\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"QeQOV6934\",style:{backgroundColor:\"rgb(249, 249, 249)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"505px\",src:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg\",srcSet:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg 1080w\"},className:\"framer-1gvj1ac\",\"data-framer-name\":\"image 9\",layoutDependency:layoutDependency,layoutId:\"BGmS6umAl\",...addPropertyOverrides({bY6LAySso:{background:{alt:\"\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"505px\",src:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg\",srcSet:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg 1080w\"}},eHi5P6vnm:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}},J4HkOGq5p:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) + 544px)`,src:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg\",srcSet:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg 1080w\"}},llZbeSlBm:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) + 544px)`,src:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg\",srcSet:\"https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iz7ShjZNL1VAM48mbWkgpl9BZRE.jpeg 1080w\"}},Ocp4ng7hC:{background:{alt:\"\",fit:\"fill\",pixelHeight:733,pixelWidth:1100,sizes:\"526px\",src:\"https://framerusercontent.com/images/vKk93g0bv8Wz0b0lm6cf77QPuAc.jpg\",srcSet:\"https://framerusercontent.com/images/vKk93g0bv8Wz0b0lm6cf77QPuAc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vKk93g0bv8Wz0b0lm6cf77QPuAc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vKk93g0bv8Wz0b0lm6cf77QPuAc.jpg 1100w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6c6k9r\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"fM3p91jke\",style:{backgroundColor:\"rgb(249, 249, 249)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"1397.2283px\",src:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg\",srcSet:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg 1080w\"},className:\"framer-dwo4c9\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"YNW2p5Y32\",...addPropertyOverrides({bY6LAySso:{background:{alt:\"\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"413px\",src:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg\",srcSet:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg 1080w\"}},J4HkOGq5p:{background:{alt:\"\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) + 777px)`,src:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg\",srcSet:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg 1080w\"}},llZbeSlBm:{background:{alt:\"\",fit:\"fit\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"540px\",src:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg\",srcSet:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg 1080w\"}},Ocp4ng7hC:{background:{alt:\"\",pixelHeight:1080,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) + 777px)`,src:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg\",srcSet:\"https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NqKhxrKmAbjoakOuE9A4WA4tBDQ.jpeg 1080w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9fknnr\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"YqtRXOMYE\",style:{backgroundColor:\"rgb(249, 249, 249)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:\"framer-1mogvrt\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"G0ic01y3l\",...addPropertyOverrides({bY6LAySso:{background:{alt:\"\",pixelHeight:804,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"1406px\",src:\"https://framerusercontent.com/images/ZH7XuLJIVb3Wrusn6No9STl0s.jpeg\",srcSet:\"https://framerusercontent.com/images/ZH7XuLJIVb3Wrusn6No9STl0s.jpeg 800w\"}},eHi5P6vnm:{background:{alt:\"\",pixelHeight:804,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"449px\",src:\"https://framerusercontent.com/images/YOIrv2j9aqIgoLLKFF1bSjsujq8.jpeg\",srcSet:\"https://framerusercontent.com/images/YOIrv2j9aqIgoLLKFF1bSjsujq8.jpeg 800w\"}},J4HkOGq5p:{background:{alt:\"\",pixelHeight:804,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) + 102px)`,src:\"https://framerusercontent.com/images/YOIrv2j9aqIgoLLKFF1bSjsujq8.jpeg\",srcSet:\"https://framerusercontent.com/images/YOIrv2j9aqIgoLLKFF1bSjsujq8.jpeg 800w\"}}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FkNia.framer-xsly0y, .framer-FkNia .framer-xsly0y { display: block; }\",\".framer-FkNia.framer-11zynyg { height: 400px; overflow: hidden; position: relative; width: 422px; }\",\".framer-FkNia .framer-tna5jb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-FkNia .framer-ec0pum, .framer-FkNia .framer-1t3vago { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FkNia .framer-1durshy { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FkNia .framer-er4cjd { flex: none; height: 133px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FkNia .framer-wrlk8i { align-content: flex-start; align-items: flex-start; bottom: -820px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: 390px; }\",\".framer-FkNia .framer-13f1hoa, .framer-FkNia .framer-6c6k9r, .framer-FkNia .framer-9fknnr { flex: none; height: 400px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-FkNia .framer-1gvj1ac { bottom: 0px; flex: none; left: -61px; position: absolute; right: -54px; top: 0px; }\",\".framer-FkNia .framer-dwo4c9 { flex: none; height: 1048px; left: calc(42.52093146829044% - 1397.228271484375px / 2); position: absolute; top: calc(-28.22000122070312% - 1047.9210205078125px / 2); width: 1397px; }\",\".framer-FkNia .framer-1mogvrt { flex: none; height: 1054px; left: calc(41.951060575597424% - 1406px / 2); position: absolute; top: calc(99.99998474121094% - 1054px / 2); width: 1406px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FkNia .framer-tna5jb, .framer-FkNia .framer-wrlk8i { gap: 0px; } .framer-FkNia .framer-tna5jb > *, .framer-FkNia .framer-wrlk8i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FkNia .framer-tna5jb > :first-child, .framer-FkNia .framer-wrlk8i > :first-child { margin-top: 0px; } .framer-FkNia .framer-tna5jb > :last-child, .framer-FkNia .framer-wrlk8i > :last-child { margin-bottom: 0px; } }\",\".framer-FkNia.framer-v-1hr49q0 .framer-er4cjd { height: 220px; }\",\".framer-FkNia.framer-v-1hr49q0 .framer-wrlk8i { bottom: unset; top: 50%; }\",\".framer-FkNia.framer-v-1hr49q0 .framer-dwo4c9 { bottom: -10px; height: unset; left: -13px; right: -10px; top: 0px; width: unset; }\",\".framer-FkNia.framer-v-7xggp2 .framer-er4cjd { height: 333px; }\",\".framer-FkNia.framer-v-7xggp2 .framer-wrlk8i { bottom: unset; top: -820px; }\",\".framer-FkNia.framer-v-7xggp2 .framer-1mogvrt { bottom: -20px; height: unset; left: -42px; right: -17px; top: -21px; width: unset; }\",\".framer-FkNia.framer-v-13m3url.framer-11zynyg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; padding: 0px; width: 392px; }\",\".framer-FkNia.framer-v-13m3url .framer-wrlk8i, .framer-FkNia.framer-v-hbxmcc .framer-wrlk8i, .framer-FkNia.framer-v-1ikxjrp .framer-wrlk8i { align-content: center; align-items: center; bottom: unset; flex: 1 0 0px; order: 0; position: relative; right: unset; width: 1px; }\",\".framer-FkNia.framer-v-13m3url .framer-13f1hoa, .framer-FkNia.framer-v-13m3url .framer-6c6k9r, .framer-FkNia.framer-v-13m3url .framer-9fknnr, .framer-FkNia.framer-v-hbxmcc .framer-13f1hoa, .framer-FkNia.framer-v-hbxmcc .framer-6c6k9r, .framer-FkNia.framer-v-hbxmcc .framer-9fknnr, .framer-FkNia.framer-v-1ikxjrp .framer-13f1hoa, .framer-FkNia.framer-v-1ikxjrp .framer-6c6k9r, .framer-FkNia.framer-v-1ikxjrp .framer-9fknnr { height: 420px; }\",\".framer-FkNia.framer-v-13m3url .framer-1gvj1ac { bottom: unset; height: 420px; left: calc(50.00000000000002% - 526px / 2); right: unset; top: calc(50.00000000000002% - 420px / 2); width: 526px; }\",\".framer-FkNia.framer-v-13m3url .framer-dwo4c9, .framer-FkNia.framer-v-1ikxjrp .framer-dwo4c9 { height: 838px; left: -384px; right: -393px; top: -346px; width: unset; }\",\".framer-FkNia.framer-v-13m3url .framer-1mogvrt, .framer-FkNia.framer-v-hbxmcc .framer-1mogvrt { bottom: -294px; height: unset; left: -317px; right: -322px; top: -160px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FkNia.framer-v-13m3url.framer-11zynyg { gap: 0px; } .framer-FkNia.framer-v-13m3url.framer-11zynyg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FkNia.framer-v-13m3url.framer-11zynyg > :first-child { margin-left: 0px; } .framer-FkNia.framer-v-13m3url.framer-11zynyg > :last-child { margin-right: 0px; } }\",\".framer-FkNia.framer-v-hbxmcc.framer-11zynyg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; padding: 0px; width: 392px; }\",\".framer-FkNia.framer-v-hbxmcc .framer-1gvj1ac, .framer-FkNia.framer-v-1ikxjrp .framer-1gvj1ac { bottom: -256px; height: 663px; left: -271px; right: -273px; top: unset; }\",\".framer-FkNia.framer-v-hbxmcc .framer-dwo4c9 { height: 420px; left: calc(50.00000000000002% - 540px / 2); top: calc(50.00000000000002% - 420px / 2); width: 540px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FkNia.framer-v-hbxmcc.framer-11zynyg { gap: 0px; } .framer-FkNia.framer-v-hbxmcc.framer-11zynyg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FkNia.framer-v-hbxmcc.framer-11zynyg > :first-child { margin-left: 0px; } .framer-FkNia.framer-v-hbxmcc.framer-11zynyg > :last-child { margin-right: 0px; } }\",\".framer-FkNia.framer-v-1ikxjrp.framer-11zynyg { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; padding: 0px; width: 392px; }\",\".framer-FkNia.framer-v-1ikxjrp .framer-1mogvrt { bottom: 0px; height: unset; left: -56px; right: -46px; top: 0px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FkNia.framer-v-1ikxjrp.framer-11zynyg { gap: 0px; } .framer-FkNia.framer-v-1ikxjrp.framer-11zynyg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FkNia.framer-v-1ikxjrp.framer-11zynyg > :first-child { margin-left: 0px; } .framer-FkNia.framer-v-1ikxjrp.framer-11zynyg > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 422\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bY6LAySso\":{\"layout\":[\"fixed\",\"fixed\"]},\"eHi5P6vnm\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ocp4ng7hC\":{\"layout\":[\"fixed\",\"fixed\"]},\"llZbeSlBm\":{\"layout\":[\"fixed\",\"fixed\"]},\"J4HkOGq5p\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRRuMeqeDi=withCSS(Component,css,\"framer-FkNia\");export default FramerRRuMeqeDi;FramerRRuMeqeDi.displayName=\"cards\";FramerRRuMeqeDi.defaultProps={height:400,width:422};addPropertyControls(FramerRRuMeqeDi,{variant:{options:[\"CbVHkdgg5\",\"bY6LAySso\",\"eHi5P6vnm\",\"Ocp4ng7hC\",\"llZbeSlBm\",\"J4HkOGq5p\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"mobile 1\",\"mobile 2\",\"mobile 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRRuMeqeDi,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-ext-M4WHNGTS.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Medium.cyrillic-JVU2PANX.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-ext-4KCQBEIZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Medium.greek-DPOQGN7L.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Medium.latin-ext-J4DBSW7F.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Medium.latin-Y3IVPL46.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Medium.vietnamese-PJV76O4P.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRRuMeqeDi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bY6LAySso\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eHi5P6vnm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ocp4ng7hC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"llZbeSlBm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J4HkOGq5p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"422\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RRuMeqeDi.map", "// Generated by Framer (f712822)\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}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-i6B4b\";const variantClassNames={EZ1YgduN4:\"framer-v-y7wn4r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:100,delay:0,mass:.1,stiffness:1,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,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 getProps=({height,id,offerText,savings,width,...props})=>{return{...props,mc9vFAx6V:offerText??props.mc9vFAx6V??\"With replacement filter subscription \",tUmngXKsv:savings??props.tUmngXKsv??\"Save \u20AC12\"};};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,tUmngXKsv,mc9vFAx6V,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EZ1YgduN4\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-y7wn4r\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EZ1YgduN4\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jqis5w\",layoutDependency:layoutDependency,layoutId:\"hgBV1xChP\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c953op\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"KPn3fY2fw\",style:{backgroundColor:\"rgb(235, 243, 254)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kmudky\",\"data-framer-name\":\"Status dot\",layoutDependency:layoutDependency,layoutId:\"l9WljAqYR\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-83vuz\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"SvngLj_ua\",style:{backgroundColor:\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"Save \u20AC12\"})}),className:\"framer-rg9gib\",\"data-framer-name\":\"Save $10\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ffBo74urp\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},text:tUmngXKsv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rdxpf3\",\"data-framer-name\":\"Status dot\",layoutDependency:layoutDependency,layoutId:\"aOuWqbTOR\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-319wh3\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"HIjvUjHFx\",style:{backgroundColor:\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"With replacement filter subscription \"})}),className:\"framer-1mob3ip\",\"data-framer-name\":\"For the launch, we are offering $10\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ubo6vZL1l\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},text:mc9vFAx6V,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ro8o1\",\"data-framer-name\":\"Status dot\",layoutDependency:layoutDependency,layoutId:\"rLAC1XxH5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10a0cq9\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"nxFKrNLX4\",style:{backgroundColor:\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"Save \u20AC12\"})}),className:\"framer-hymx29\",\"data-framer-name\":\"Save $10\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"afGHMdbap\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},text:tUmngXKsv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fri4xg\",\"data-framer-name\":\"Status dot\",layoutDependency:layoutDependency,layoutId:\"zWMoOltPG\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vtwzt9\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"ZhoTexfzU\",style:{backgroundColor:\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242)))\"},children:\"For the launch, we are offering $10 \"})}),className:\"framer-1uceon6\",\"data-framer-name\":\"For the launch, we are offering $10\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uSJrkci2g\",style:{\"--extracted-r6o4lv\":\"var(--token-8e88a2b4-808c-4711-a6d2-c091e4ac2b97, rgb(24, 107, 242))\"},text:mc9vFAx6V,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-5rllj2\",layoutDependency:layoutDependency,layoutId:\"BJJEZZkX9\",style:{backgroundColor:\"rgb(235, 243, 254)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x92b64-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aFARZWjUj-container\",nodeId:\"aFARZWjUj\",rendersWithMotion:true,scopeId:\"RaYQfddR6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:6,height:\"100%\",hoverFactor:1,id:\"aFARZWjUj\",layoutId:\"aFARZWjUj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1maemp5\",layoutDependency:layoutDependency,layoutId:\"Bh6n8r3Ow\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-145oe27\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"KoheX4gZZ\",style:{backgroundColor:\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SGVsdmV0aWNh\",\"--framer-font-family\":'\"Helvetica\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221)))\"},children:\"Save \u20AC12\"})}),className:\"framer-102wxwm\",\"data-framer-name\":\"Save $10\",fonts:[\"Helvetica\"],layoutDependency:layoutDependency,layoutId:\"r1BzCJTxj\",style:{\"--extracted-r6o4lv\":\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\"},text:tUmngXKsv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-97x6mz\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"ndiVS9xOH\",style:{backgroundColor:\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SGVsdmV0aWNh\",\"--framer-font-family\":'\"Helvetica\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221)))\"},children:\"With replacement filter subscription \"})}),className:\"framer-1ud08mm\",\"data-framer-name\":\"For the launch, we are offering $10\",fonts:[\"Helvetica\"],layoutDependency:layoutDependency,layoutId:\"g_CZZXSLM\",style:{\"--extracted-r6o4lv\":\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\"},text:mc9vFAx6V,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1431ldz\",layoutDependency:layoutDependency,layoutId:\"yvkjIkm3q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ic4a6w\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"Gbr6wHjUW\",style:{backgroundColor:\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SGVsdmV0aWNh\",\"--framer-font-family\":'\"Helvetica\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221)))\"},children:\"Save \u20AC12\"})}),className:\"framer-14pthwj\",\"data-framer-name\":\"Save $10\",fonts:[\"Helvetica\"],layoutDependency:layoutDependency,layoutId:\"gefz3gJoU\",style:{\"--extracted-r6o4lv\":\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\"},text:tUmngXKsv,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jq5bkw\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"HzDnMnIPv\",style:{backgroundColor:\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SGVsdmV0aWNh\",\"--framer-font-family\":'\"Helvetica\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221)))\"},children:\"With replacement filter subscription \"})}),className:\"framer-1ygs3a6\",\"data-framer-name\":\"For the launch, we are offering $10\",fonts:[\"Helvetica\"],layoutDependency:layoutDependency,layoutId:\"UtQMB2ifj\",style:{\"--extracted-r6o4lv\":\"var(--token-01ca71f7-85e0-44d1-9e40-ea5cdfab00b7, rgb(57, 147, 221))\"},text:mc9vFAx6V,verticalAlignment:\"top\",withExternalLayout:true})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i6B4b.framer-1vvqf5t, .framer-i6B4b .framer-1vvqf5t { display: block; }\",\".framer-i6B4b.framer-y7wn4r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; padding: 0px; position: relative; width: 366px; }\",\".framer-i6B4b .framer-jqis5w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-i6B4b .framer-1c953op { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px 0px 0px 10px; position: absolute; top: 0px; width: 387px; z-index: 1; }\",\".framer-i6B4b .framer-kmudky, .framer-i6B4b .framer-1rdxpf3, .framer-i6B4b .framer-8ro8o1, .framer-i6B4b .framer-fri4xg { flex: none; height: 6px; overflow: visible; position: relative; width: 6px; }\",\".framer-i6B4b .framer-83vuz, .framer-i6B4b .framer-319wh3, .framer-i6B4b .framer-10a0cq9, .framer-i6B4b .framer-vtwzt9 { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 6px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-i6B4b .framer-rg9gib, .framer-i6B4b .framer-1mob3ip, .framer-i6B4b .framer-hymx29, .framer-i6B4b .framer-1uceon6, .framer-i6B4b .framer-102wxwm, .framer-i6B4b .framer-1ud08mm, .framer-i6B4b .framer-14pthwj, .framer-i6B4b .framer-1ygs3a6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-i6B4b .framer-5rllj2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-i6B4b .framer-1x92b64-container { flex: 1 0 0px; height: 20px; position: relative; width: 1px; }\",\".framer-i6B4b .framer-1maemp5, .framer-i6B4b .framer-1431ldz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-i6B4b .framer-145oe27, .framer-i6B4b .framer-97x6mz, .framer-i6B4b .framer-1ic4a6w, .framer-i6B4b .framer-1jq5bkw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); position: relative; width: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i6B4b.framer-y7wn4r, .framer-i6B4b .framer-jqis5w, .framer-i6B4b .framer-1c953op, .framer-i6B4b .framer-5rllj2, .framer-i6B4b .framer-1maemp5, .framer-i6B4b .framer-1431ldz { gap: 0px; } .framer-i6B4b.framer-y7wn4r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-i6B4b.framer-y7wn4r > :first-child { margin-top: 0px; } .framer-i6B4b.framer-y7wn4r > :last-child { margin-bottom: 0px; } .framer-i6B4b .framer-jqis5w > *, .framer-i6B4b .framer-5rllj2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-i6B4b .framer-jqis5w > :first-child, .framer-i6B4b .framer-1c953op > :first-child, .framer-i6B4b .framer-5rllj2 > :first-child, .framer-i6B4b .framer-1maemp5 > :first-child, .framer-i6B4b .framer-1431ldz > :first-child { margin-left: 0px; } .framer-i6B4b .framer-jqis5w > :last-child, .framer-i6B4b .framer-1c953op > :last-child, .framer-i6B4b .framer-5rllj2 > :last-child, .framer-i6B4b .framer-1maemp5 > :last-child, .framer-i6B4b .framer-1431ldz > :last-child { margin-right: 0px; } .framer-i6B4b .framer-1c953op > *, .framer-i6B4b .framer-1maemp5 > *, .framer-i6B4b .framer-1431ldz > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 366\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tUmngXKsv\":\"savings\",\"mc9vFAx6V\":\"offerText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRaYQfddR6=withCSS(Component,css,\"framer-i6B4b\");export default FramerRaYQfddR6;FramerRaYQfddR6.displayName=\"Offer Ticker\";FramerRaYQfddR6.defaultProps={height:24,width:366};addPropertyControls(FramerRaYQfddR6,{tUmngXKsv:{defaultValue:\"Save \u20AC12\",displayTextArea:false,title:\"Savings\",type:ControlType.String},mc9vFAx6V:{defaultValue:\"With replacement filter subscription \",displayTextArea:false,title:\"Offer Text\",type:ControlType.String}});addFonts(FramerRaYQfddR6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRaYQfddR6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"tUmngXKsv\\\":\\\"savings\\\",\\\"mc9vFAx6V\\\":\\\"offerText\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"366\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RaYQfddR6.map"],
  "mappings": "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",
  "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", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerRRuMeqeDi", "withCSS", "RRuMeqeDi_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "offerText", "savings", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "tUmngXKsv", "mc9vFAx6V", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "MotionDivWithFX", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "css", "FramerRaYQfddR6", "withCSS", "RaYQfddR6_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts"]
}
