{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/CwdnCYeHvjyF1Nfx4ROb/MjEULYxfeLwsHA1xlAtb/Exitintentpop1.js", "ssg:https://framerusercontent.com/modules/IF2qLLySLNwOyBRIvywi/tQrVrbndp8BeJcUweO8z/kdmo8Y3Bj.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";import{motion,AnimatePresence}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({isOverlayVisible:false});export function withWindowLeaveOverlay(Component){return function WrappedComponent(props){const[store,setStore]=useStore();const[overlayDismissed,setOverlayDismissed]=React.useState(false);// Check session storage once and initialize overlay visibility\nReact.useEffect(()=>{const dismissed=sessionStorage.getItem(\"overlayDismissed\")===\"true\";setOverlayDismissed(dismissed);if(dismissed){setStore({isOverlayVisible:false});}},[setStore]);// Listen for mouseleave events to detect exit intent\nReact.useEffect(()=>{if(overlayDismissed)return;const handleMouseLeave=event=>{// Check if the overlay is already dismissed\nif(sessionStorage.getItem(\"overlayDismissed\")===\"true\")return;const{clientX,clientY,relatedTarget}=event;const{innerWidth,innerHeight}=window;// Show overlay when mouse exits the viewport\nif(!relatedTarget&&(clientY<=0||clientY>=innerHeight||clientX<=0||clientX>=innerWidth)){setStore({isOverlayVisible:true});}};document.addEventListener(\"mouseleave\",handleMouseLeave);return()=>{document.removeEventListener(\"mouseleave\",handleMouseLeave);};},[overlayDismissed,setStore]);const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};const overlayBackgroundStyle={position:\"fixed\",top:0,left:0,right:0,bottom:0,backgroundColor:\"rgba(0, 0, 0, 0.5)\",zIndex:1e3,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"};const contentContainerStyle={backgroundColor:\"rgba(0, 0, 0, 0.5)\",opacity:\"0%\",borderRadius:\"8px\",width:\"80%\",maxWidth:\"900px\",zIndex:1001};return /*#__PURE__*/_jsx(AnimatePresence,{children:!overlayDismissed&&store.isOverlayVisible&&/*#__PURE__*/_jsx(motion.div,{style:overlayBackgroundStyle,onClick:dismissOverlay,initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.5},children:/*#__PURE__*/_jsx(motion.div,{onClick:e=>e.stopPropagation(),initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},transition:{duration:.5},style:contentContainerStyle,children:/*#__PURE__*/_jsx(Component,{...props})})})});};}export function withDismissOverlay(Component){return function WrappedComponent(props){const[,setStore]=useStore();const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};return /*#__PURE__*/_jsx(Component,{...props,onClick:dismissOverlay});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withWindowLeaveOverlay\":{\"type\":\"reactHoc\",\"name\":\"withWindowLeaveOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDismissOverlay\":{\"type\":\"reactHoc\",\"name\":\"withDismissOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Exitintentpop1.map", "// Generated by Framer (ca23763)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import{withDismissOverlay}from\"https://framerusercontent.com/modules/CwdnCYeHvjyF1Nfx4ROb/MjEULYxfeLwsHA1xlAtb/Exitintentpop1.js\";const EmbedFonts=getFonts(Embed);const MotionButtonWithDismissOverlay=withDismissOverlay(motion.button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"q1EzcEQs8\",\"CghpoCH1_\",\"aNFzORFFO\",\"emofY69M3\"];const serializationHash=\"framer-hPKVi\";const variantClassNames={aNFzORFFO:\"framer-v-1i4zgu4\",CghpoCH1_:\"framer-v-17ub7yf\",emofY69M3:\"framer-v-sralsr\",q1EzcEQs8:\"framer-v-1tc7epc\"};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"q1EzcEQs8\",\"Variant 2\":\"CghpoCH1_\",\"Variant 4\":\"emofY69M3\",Mobile:\"aNFzORFFO\"};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:\"q1EzcEQs8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q1EzcEQs8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tc7epc\",className,classNames),\"data-framer-appear-id\":\"1tc7epc\",\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"q1EzcEQs8\",optimized:true,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\",...style},...addPropertyOverrides({aNFzORFFO:{\"data-framer-name\":\"Mobile\"},CghpoCH1_:{\"data-framer-name\":\"Variant 2\"},emofY69M3:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14p794r\",layoutDependency:layoutDependency,layoutId:\"kllFf4Opt\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-899)/2+0+0)+0),pixelHeight:2654,pixelWidth:3e3,positionX:\"38.7%\",positionY:\"61.3%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg\",srcSet:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg 3000w\"},className:\"framer-175mjde\",layoutDependency:layoutDependency,layoutId:\"RTiMe_0JO\",...addPropertyOverrides({aNFzORFFO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1673)-0-899)/2)+371.5),pixelHeight:2654,pixelWidth:3e3,positionX:\"38.7%\",positionY:\"61.3%\",sizes:`max((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg\",srcSet:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg 3000w\"}},CghpoCH1_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||702)-0-899)/2+0+0)+0),pixelHeight:2654,pixelWidth:3e3,positionX:\"38.7%\",positionY:\"61.3%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg\",srcSet:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg 3000w\"}},emofY69M3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||595)-0-855)/2+0+0)+0+0),pixelHeight:2654,pixelWidth:3e3,positionX:\"38.7%\",positionY:\"61.3%\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 1.0044)`,src:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg\",srcSet:\"https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RR1OLLs1hIeqyt5mz7woZE2saaI.jpg 3000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hivfsk\",layoutDependency:layoutDependency,layoutId:\"mMUG91IDO\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ljyo3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xcgjWHeRM\",style:{backgroundColor:\"var(--token-25011c2b-ba34-47f0-8040-2687ea1f377a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e01f5bfc-eb45-4186-b56e-4244292a642e, rgb(30, 81, 148)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:\"WAIT!! \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:\"Before you go\u2026\"})]})}),className:\"framer-1eamgs3\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"ZuFp946cU\",style:{\"--extracted-a0htzi\":\"var(--token-e01f5bfc-eb45-4186-b56e-4244292a642e, rgb(30, 81, 148))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aNFzORFFO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e01f5bfc-eb45-4186-b56e-4244292a642e, rgb(30, 81, 148)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:\"WAIT!! \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"51px\"},children:\"Before you go\u2026\"})]})})},emofY69M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e01f5bfc-eb45-4186-b56e-4244292a642e, rgb(30, 81, 148)))\"},children:\"WAIT!! Before you go\u2026\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130)))\"},children:'Don\\'t leave without getting your FREE \"Net Sheet Offer!\"  '}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130)))\"},children:\"See how much money you will receive at closing \uD83D\uDE00\"})]}),className:\"framer-ea3ood\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"N5hbknkGu\",style:{\"--extracted-2gxw0f\":\"var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130))\",\"--extracted-r6o4lv\":\"var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({emofY69M3:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130)))\"},children:'Don\\'t leave without getting your FREE \"Net Sheet Offer!\"  '}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-9900133b-2eaa-43e5-b385-4573c4278b6f, rgb(73, 82, 130)))\"},children:\"See how much money you will receive at closing \uD83D\uDE00\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wvq1i2-container\",layoutDependency:layoutDependency,layoutId:\"Fz06l5R63-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://static.heyflow.com/widget/latest/webview.js\"></script>\\n\\n<heyflow-wrapper flow-id=\"exitpopembed\" dynamic-height scroll-up-on-navigation style-config=\\'{\"width\": \"100%\"}\\'></heyflow-wrapper>',id:\"Fz06l5R63\",layoutId:\"Fz06l5R63\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionButtonWithDismissOverlay,{className:\"framer-mbqsm9\",\"data-framer-name\":\"CLOSE BUTTON \",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XlE9O2_9e\",style:{backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Close\"})}),className:\"framer-tfcsks\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"EGbPqIvL2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hPKVi.framer-tqbcel, .framer-hPKVi .framer-tqbcel { display: block; }\",\".framer-hPKVi.framer-1tc7epc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 900px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hPKVi .framer-14p794r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hPKVi .framer-175mjde { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 40%; }\",\".framer-hPKVi .framer-hivfsk { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hPKVi .framer-16ljyo3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 1px; }\",\".framer-hPKVi .framer-1eamgs3, .framer-hPKVi .framer-ea3ood { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hPKVi .framer-1wvq1i2-container { flex: none; height: auto; position: relative; width: 466px; }\",\".framer-hPKVi .framer-mbqsm9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-hPKVi .framer-tfcsks { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hPKVi.framer-1tc7epc, .framer-hPKVi .framer-14p794r, .framer-hPKVi .framer-hivfsk, .framer-hPKVi .framer-16ljyo3, .framer-hPKVi .framer-mbqsm9 { gap: 0px; } .framer-hPKVi.framer-1tc7epc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hPKVi.framer-1tc7epc > :first-child, .framer-hPKVi .framer-16ljyo3 > :first-child { margin-top: 0px; } .framer-hPKVi.framer-1tc7epc > :last-child, .framer-hPKVi .framer-16ljyo3 > :last-child { margin-bottom: 0px; } .framer-hPKVi .framer-14p794r > *, .framer-hPKVi .framer-hivfsk > *, .framer-hPKVi .framer-mbqsm9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hPKVi .framer-14p794r > :first-child, .framer-hPKVi .framer-hivfsk > :first-child, .framer-hPKVi .framer-mbqsm9 > :first-child { margin-left: 0px; } .framer-hPKVi .framer-14p794r > :last-child, .framer-hPKVi .framer-hivfsk > :last-child, .framer-hPKVi .framer-mbqsm9 > :last-child { margin-right: 0px; } .framer-hPKVi .framer-16ljyo3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-hPKVi.framer-v-17ub7yf.framer-1tc7epc { width: 600px; }\",\".framer-hPKVi.framer-v-17ub7yf .framer-1wvq1i2-container { width: 295px; }\",\".framer-hPKVi.framer-v-1i4zgu4.framer-1tc7epc { flex-direction: row; width: 250px; }\",\".framer-hPKVi.framer-v-1i4zgu4 .framer-14p794r { flex: 1 0 0px; width: 1px; }\",\".framer-hPKVi.framer-v-1i4zgu4 .framer-175mjde { align-self: unset; flex: 1 0 0px; height: 156px; width: 1px; }\",\".framer-hPKVi.framer-v-1i4zgu4 .framer-hivfsk, .framer-hPKVi.framer-v-sralsr .framer-14p794r { flex-direction: column; }\",\".framer-hPKVi.framer-v-1i4zgu4 .framer-16ljyo3 { flex: none; order: 0; width: 100%; }\",\".framer-hPKVi.framer-v-1i4zgu4 .framer-1wvq1i2-container { width: 201px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hPKVi.framer-v-1i4zgu4.framer-1tc7epc, .framer-hPKVi.framer-v-1i4zgu4 .framer-hivfsk { gap: 0px; } .framer-hPKVi.framer-v-1i4zgu4.framer-1tc7epc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hPKVi.framer-v-1i4zgu4.framer-1tc7epc > :first-child { margin-left: 0px; } .framer-hPKVi.framer-v-1i4zgu4.framer-1tc7epc > :last-child { margin-right: 0px; } .framer-hPKVi.framer-v-1i4zgu4 .framer-hivfsk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hPKVi.framer-v-1i4zgu4 .framer-hivfsk > :first-child { margin-top: 0px; } .framer-hPKVi.framer-v-1i4zgu4 .framer-hivfsk > :last-child { margin-bottom: 0px; } }\",\".framer-hPKVi.framer-v-sralsr.framer-1tc7epc { width: 450px; }\",\".framer-hPKVi.framer-v-sralsr .framer-175mjde { align-self: unset; height: 115px; order: 0; width: 100%; }\",\".framer-hPKVi.framer-v-sralsr .framer-hivfsk { flex: none; order: 1; width: 100%; }\",\".framer-hPKVi.framer-v-sralsr .framer-16ljyo3 { gap: 16px; padding: 20px 30px 20px 30px; }\",\".framer-hPKVi.framer-v-sralsr .framer-1wvq1i2-container { width: 371px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hPKVi.framer-v-sralsr .framer-14p794r, .framer-hPKVi.framer-v-sralsr .framer-16ljyo3 { gap: 0px; } .framer-hPKVi.framer-v-sralsr .framer-14p794r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hPKVi.framer-v-sralsr .framer-14p794r > :first-child, .framer-hPKVi.framer-v-sralsr .framer-16ljyo3 > :first-child { margin-top: 0px; } .framer-hPKVi.framer-v-sralsr .framer-14p794r > :last-child, .framer-hPKVi.framer-v-sralsr .framer-16ljyo3 > :last-child { margin-bottom: 0px; } .framer-hPKVi.framer-v-sralsr .framer-16ljyo3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 622\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CghpoCH1_\":{\"layout\":[\"fixed\",\"auto\"]},\"aNFzORFFO\":{\"layout\":[\"fixed\",\"auto\"]},\"emofY69M3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerkdmo8Y3Bj=withCSS(Component,css,\"framer-hPKVi\");export default Framerkdmo8Y3Bj;Framerkdmo8Y3Bj.displayName=\"ExitPop\";Framerkdmo8Y3Bj.defaultProps={height:622,width:900};addPropertyControls(Framerkdmo8Y3Bj,{variant:{options:[\"q1EzcEQs8\",\"CghpoCH1_\",\"aNFzORFFO\",\"emofY69M3\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerkdmo8Y3Bj,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerkdmo8Y3Bj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"622\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"900\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CghpoCH1_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aNFzORFFO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"emofY69M3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "withWindowLeaveOverlay", "Component", "props", "store", "setStore", "overlayDismissed", "setOverlayDismissed", "e", "dismissed", "handleMouseLeave", "event", "clientX", "clientY", "relatedTarget", "innerWidth", "innerHeight", "window", "dismissOverlay", "overlayBackgroundStyle", "contentContainerStyle", "p", "AnimatePresence", "motion", "withDismissOverlay", "EmbedFonts", "getFonts", "Embed", "MotionButtonWithDismissOverlay", "withDismissOverlay", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "Framerkdmo8Y3Bj", "withCSS", "kdmo8Y3Bj_default", "addPropertyControls", "ControlType", "addFonts"]
}
