{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/R8RzygDmcEp8EXfpluWU/Z2Yaj9bOpzbgJZoqkibs/AdControl.js", "ssg:https://framerusercontent.com/modules/v4U5N7pg52M6XgKkCTmD/xRhP0Ul2lfbZD40ObggU/lsipQRX8U.js", "ssg:https://framerusercontent.com/modules/STAv6yRWYbTgXKH213Km/GsverxzUEIIDKQ6RiDlN/g1M0hWEc4.js"],
  "sourcesContent": ["// A custom Framer code override by Chris Kellett - Framerverse\n// Get more components at www.framerverse.com\n// Popup Advert Controller\n// Version 1.5\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useRef}from\"react\";// ============================\n// Constants\n// ============================\n// Delay time in milliseconds before showing the advert\nconst DELAY_TIME=3e3// 3 seconds\n;// Number of days the cookie should last to prevent the advert from showing again\nconst COOKIE_EXPIRE_DAYS=1;// Breakpoints for responsive variants\nconst BREAKPOINTS={mobile:810,tablet:1200,desktop:1201};// Debounce delay in milliseconds for resize events\nconst DEBOUNCE_DELAY=200;// ============================\n// Store Setup\n// ============================\n// Initialize the store with the default variant\nconst useStore=createStore({variant:\"popupClosed\"});// ============================\n// Helper Functions\n// ============================\n/**\n * Sets a cookie with the given name, value, and expiration in days.\n * Includes SameSite and Secure attributes for enhanced security.\n * @param {string} name - Name of the cookie\n * @param {string} value - Value to store\n * @param {number} days - Number of days until the cookie expires\n */function setCookie(name,value,days){const expires=new Date(Date.now()+days*864e5).toUTCString();// Check if the site is served over HTTPS for Secure attribute\nconst secure=window.location.protocol===\"https:\"?\"; Secure\":\"\";document.cookie=`${name}=${encodeURIComponent(value)}; expires=${expires}; path=/; SameSite=Lax${secure}`;}/**\n * Retrieves the value of a cookie by name.\n * @param {string} name - Name of the cookie\n * @returns {string} - Value of the cookie or empty string if not found\n */function getCookie(name){return document.cookie.split(\"; \").reduce((r,v)=>{const parts=v.split(\"=\");return parts[0]===name?decodeURIComponent(parts[1]):r;},\"\");}/**\n * Debounces a function by the specified delay.\n * @param {Function} func - Function to debounce\n * @param {number} wait - Delay in milliseconds\n * @returns {Function} - Debounced function\n */function debounce(func,wait){let timeout;return function(...args){clearTimeout(timeout);timeout=setTimeout(()=>func.apply(this,args),wait);};}/**\n * Determines the variant based on the current screen width.\n * @param {number} width - Current window width\n * @returns {string} - Variant name\n */function getVariantForScreenWidth(width){if(width<=BREAKPOINTS.mobile){return\"popupPhone\";}else if(width<=BREAKPOINTS.tablet){return\"popupTablet\";}else{return\"popupDesktop\";}}/**\n * Checks if cookies are enabled in the browser.\n * @returns {boolean} - True if cookies are enabled, false otherwise\n */function areCookiesEnabled(){try{setCookie(\"testCookie\",\"test\",1);const value=getCookie(\"testCookie\");// Delete the test cookie\ndocument.cookie=\"testCookie=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/\";return value===\"test\";}catch{return false;}}/**\n * Sets a value in localStorage with an expiration time.\n * @param {string} key - Key to store the value under\n * @param {string} value - Value to store\n * @param {number} days - Number of days until the value expires\n */function setLocalStorage(key,value,days){const expires=new Date(Date.now()+days*864e5).toISOString();const data={value,expires};localStorage.setItem(key,JSON.stringify(data));}/**\n * Retrieves a value from localStorage if it hasn't expired.\n * @param {string} key - Key of the value to retrieve\n * @returns {string|null} - The stored value or null if not found or expired\n */function getLocalStorage(key){const data=JSON.parse(localStorage.getItem(key));if(data&&new Date(data.expires)>new Date){return data.value;}return null;}// ============================\n// Overrides\n// ============================\n/**\n * Override that manages the advert's display logic without using cookies.\n * It ensures the advert is shown only once per page load.\n */export function SwitchVariantAfterDelay(){const[store,setStore]=useStore();const advertShown=useRef(false);useEffect(()=>{// Function to update the variant based on screen width\nconst updateVariant=()=>{if(!advertShown.current){const width=window.innerWidth;const newVariant=getVariantForScreenWidth(width);setStore(prevStore=>({...prevStore,variant:newVariant}));advertShown.current=true;}};// Debounced version of updateVariant to prevent excessive calls\nconst debouncedUpdateVariant=debounce(updateVariant,DEBOUNCE_DELAY);// Set a timeout to switch variant after the delay\nconst timeout=setTimeout(()=>{updateVariant();// Add event listener to handle window resize with debounce\nwindow.addEventListener(\"resize\",debouncedUpdateVariant);},DELAY_TIME);// Cleanup function to clear the timeout and event listener when the component unmounts\nreturn()=>{clearTimeout(timeout);window.removeEventListener(\"resize\",debouncedUpdateVariant);};},[])// Empty dependency array ensures this runs once on mount\n;return{variant:store.variant};}/**\n * Override that manages the advert's display logic with cookie and localStorage control.\n * It ensures the advert is shown only once within the specified cookie duration.\n * Implements fallbacks if cookies are disabled.\n */export function SwitchVariantAfterDelayWithCookie(){const[store,setStore]=useStore();useEffect(()=>{// Determine storage method based on cookie availability\nconst useCookies=areCookiesEnabled();const storageKey=\"AdControlShown\";// Function to check if the advert has been shown\nconst hasAdvertBeenShown=()=>{if(useCookies){return!!getCookie(storageKey);}else{return!!getLocalStorage(storageKey);}};// Function to set that the advert has been shown\nconst markAdvertAsShown=()=>{if(useCookies){setCookie(storageKey,\"true\",COOKIE_EXPIRE_DAYS);}else{setLocalStorage(storageKey,\"true\",COOKIE_EXPIRE_DAYS);}};// Function to update the variant based on screen width and storage\nconst updateVariant=()=>{if(hasAdvertBeenShown()){// Storage indicates advert has been shown, ensure it's closed\nif(store.variant!==\"popupClosed\"){setStore(prevStore=>({...prevStore,variant:\"popupClosed\"}));}}else{// Storage indicates advert has not been shown, show it\nconst width=window.innerWidth;const newVariant=getVariantForScreenWidth(width);setStore(prevStore=>({...prevStore,variant:newVariant}));// Mark advert as shown\nmarkAdvertAsShown();}};// Debounced version of updateVariant to prevent excessive calls\nconst debouncedUpdateVariant=debounce(updateVariant,DEBOUNCE_DELAY);// Set a timeout to switch variant after the delay\nconst timeout=setTimeout(()=>{updateVariant();// Add event listener to handle window resize with debounce\nwindow.addEventListener(\"resize\",debouncedUpdateVariant);},DELAY_TIME);// Cleanup function to clear the timeout and event listener when the component unmounts\nreturn()=>{clearTimeout(timeout);window.removeEventListener(\"resize\",debouncedUpdateVariant);};},[store.variant])// Dependency on store.variant to ensure state consistency\n;return{variant:store.variant};}/**\n * Override that handles closing the popup advert when clicked.\n * It updates the store to set the variant to \"popupClosed\" and marks the advert as shown.\n */export function ClosePopupOnClick(){const[store,setStore]=useStore();const handleClick=()=>{setStore(prevStore=>({...prevStore,variant:\"popupClosed\"}));// Determine storage method based on cookie availability\nif(areCookiesEnabled()){setCookie(\"AdControlShown\",\"true\",COOKIE_EXPIRE_DAYS);}else{setLocalStorage(\"AdControlShown\",\"true\",COOKIE_EXPIRE_DAYS);}};return{onClick:handleClick};}/**\n * Override to handle accessibility features like closing the advert with the Esc key\n */export function AccessibilityFeatures(){const[store,setStore]=useStore();const advertRef=useRef(null);useEffect(()=>{// Function to handle keydown events\nconst handleKeyDown=e=>{if(e.key===\"Escape\"&&store.variant!==\"popupClosed\"){setStore(prevStore=>({...prevStore,variant:\"popupClosed\"}));// Mark advert as shown\nif(areCookiesEnabled()){setCookie(\"AdControlShown\",\"true\",COOKIE_EXPIRE_DAYS);}else{setLocalStorage(\"AdControlShown\",\"true\",COOKIE_EXPIRE_DAYS);}}};// Add keydown event listener\nwindow.addEventListener(\"keydown\",handleKeyDown);// Focus management: focus the advert when it opens\nif(store.variant!==\"popupClosed\"&&advertRef.current){advertRef.current.focus();}// Cleanup function\nreturn()=>{window.removeEventListener(\"keydown\",handleKeyDown);};},[store.variant]);return{ref:advertRef,tabIndex:-1};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withSwitchVariantAfterDelay(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...SwitchVariantAfterDelay(props)});};}withSwitchVariantAfterDelay.displayName=\"SwitchVariantAfterDelay\";export function withSwitchVariantAfterDelayWithCookie(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...SwitchVariantAfterDelayWithCookie(props)});};}withSwitchVariantAfterDelayWithCookie.displayName=\"SwitchVariantAfterDelayWithCookie\";export function withClosePopupOnClick(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ClosePopupOnClick(props)});};}withClosePopupOnClick.displayName=\"ClosePopupOnClick\";export function withAccessibilityFeatures(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AccessibilityFeatures(props)});};}withAccessibilityFeatures.displayName=\"AccessibilityFeatures\";\nexport const __FramerMetadata__ = {\"exports\":{\"ClosePopupOnClick\":{\"type\":\"override\",\"name\":\"ClosePopupOnClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClosePopupOnClick\":{\"type\":\"reactHoc\",\"name\":\"withClosePopupOnClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SwitchVariantAfterDelayWithCookie\":{\"type\":\"override\",\"name\":\"SwitchVariantAfterDelayWithCookie\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SwitchVariantAfterDelay\":{\"type\":\"override\",\"name\":\"SwitchVariantAfterDelay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSwitchVariantAfterDelayWithCookie\":{\"type\":\"reactHoc\",\"name\":\"withSwitchVariantAfterDelayWithCookie\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSwitchVariantAfterDelay\":{\"type\":\"reactHoc\",\"name\":\"withSwitchVariantAfterDelay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAccessibilityFeatures\":{\"type\":\"reactHoc\",\"name\":\"withAccessibilityFeatures\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"AccessibilityFeatures\":{\"type\":\"override\",\"name\":\"AccessibilityFeatures\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AdControl.map", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withClosePopupOnClick}from\"https://framerusercontent.com/modules/R8RzygDmcEp8EXfpluWU/Z2Yaj9bOpzbgJZoqkibs/AdControl.js\";import ButtonCopy from\"https://framerusercontent.com/modules/h5qRpbvT6yBspolu0csg/xv4aWAeg8bNjtklJNiiq/AsADraJwV.js\";import AdvertCloseButton,*as AdvertCloseButtonInfo from\"https://framerusercontent.com/modules/STAv6yRWYbTgXKH213Km/GsverxzUEIIDKQ6RiDlN/g1M0hWEc4.js\";const ButtonCopyFonts=getFonts(ButtonCopy);const AdvertCloseButtonFonts=getFonts(AdvertCloseButton);const AdvertCloseButtonWithClosePopupOnClickWithMappedReactPropsvh6o7t=withMappedReactProps(withClosePopupOnClick(AdvertCloseButton),AdvertCloseButtonInfo);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"hu9NZqR4U\",\"mcU2JvRBI\",\"CUIEeE1kx\",\"aBPwxJMRm\"];const serializationHash=\"framer-xwFO6\";const variantClassNames={aBPwxJMRm:\"framer-v-1y7jzke\",CUIEeE1kx:\"framer-v-wk4ghx\",hu9NZqR4U:\"framer-v-cihi5\",mcU2JvRBI:\"framer-v-9q3opv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:0,delay:.5,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,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 transition3={bounce:0,delay:.8,duration:.6,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={popupClosed:\"aBPwxJMRm\",popupDesktop:\"hu9NZqR4U\",popupPhone:\"CUIEeE1kx\",popupTablet:\"mcU2JvRBI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hu9NZqR4U\"};};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:\"hu9NZqR4U\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"aBPwxJMRm\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();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(serializationHash,...sharedStyleClassNames,\"framer-cihi5\",className,classNames),\"data-framer-name\":\"popupDesktop\",layoutDependency:layoutDependency,layoutId:\"hu9NZqR4U\",ref:ref??ref1,style:{...style},...addPropertyOverrides({aBPwxJMRm:{\"data-framer-name\":\"popupClosed\"},CUIEeE1kx:{\"data-framer-name\":\"popupPhone\"},mcU2JvRBI:{\"data-framer-name\":\"popupTablet\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1v71aoo\",\"data-framer-appear-id\":\"1v71aoo\",\"data-framer-name\":\"Background\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"B9yh2_TjB\",optimized:true,style:{backgroundColor:\"rgba(0, 0, 0, 0.5)\"},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-11fcgmm\",\"data-framer-appear-id\":\"11fcgmm\",\"data-framer-name\":\"Popup\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"mSmEotIWK\",optimized:true,style:{backgroundColor:\"var(--token-9bfda76a-d5bf-4c73-b8d1-581b1eb85300, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u69vwu\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"VE10sZriT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mbvzib\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"gWHVIAw6N\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15fasnm\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"RiM29D0Sy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CLAIM YOUR BRAND SUCCESS SUITE\"})}),className:\"framer-i2nmte\",\"data-framer-name\":\"GRAPHIC DESIGN\",fonts:[\"CUSTOM;Gotham Bold\"],layoutDependency:layoutDependency,layoutId:\"RYeecnxoj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CUIEeE1kx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CLAIM YOUR BRAND SUCCESS SUITE\"})})},mcU2JvRBI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"CLAIM YOUR BRAND SUCCESS SUITE\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlock the Apparel Success Suite and discover proven strategies to elevate your apparel products. Access trend reports, neck label and tech-pack templates, and case studies that have helped top brands thrive. Join the White Label MFG community today and take your apparel brand to the next level!\"})}),className:\"framer-1sza3tx\",\"data-framer-name\":\"HH is a leading creative marketing, brand building, and licensing agency that serves talent, brands, and retailers on a global scale. We operate at the intersection of fashion, entertainment, and culture.\",fonts:[\"CUSTOM;Gotham Book\"],layoutDependency:layoutDependency,layoutId:\"KjpehaLod\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/4708f7e5-6d01-4f58-92fa-43551397d5cc/submit\",className:\"framer-dt1byv\",layoutDependency:layoutDependency,layoutId:\"Rk8ObqNw7\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-q8m271\",layoutDependency:layoutDependency,layoutId:\"wqqju4FtV\",children:[/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tpj7ba\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"PQm7EXYBh\",placeholder:\"First Name\",style:{\"--framer-input-border-bottom-width\":\"2px\",\"--framer-input-border-color\":\"rgba(255, 255, 255, 0.1)\",\"--framer-input-border-left-width\":\"2px\",\"--framer-input-border-right-width\":\"2px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"2px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1l5luki\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"xQVaq2Vew\",placeholder:\"Email\",style:{\"--framer-input-border-bottom-width\":\"2px\",\"--framer-input-border-color\":\"rgba(255, 255, 255, 0.1)\",\"--framer-input-border-left-width\":\"2px\",\"--framer-input-border-right-width\":\"2px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"2px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"380.5px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-1e3)/2)+40+187.5+40+0+0+0+325+0+100,...addPropertyOverrides({CUIEeE1kx:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+20+153.5+50+0+190+0+253+0+100},mcU2JvRBI:{width:`max((max(${componentViewport?.width||\"100vw\"} - 160px, 1px) - 40px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+40+210+40+0+0+0+280+0+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vfoizf-container\",layoutDependency:layoutDependency,layoutId:\"OXbQp0BI1-container\",children:/*#__PURE__*/_jsx(ButtonCopy,{height:\"100%\",id:\"OXbQp0BI1\",layoutId:\"OXbQp0BI1\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"RO3bjHdws\",success:\"aM8Lo0YI3\"},\"PpUR6oiL0\"),width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-1e3)/2)+40+187.5+40+0+0),pixelHeight:3345,pixelWidth:5018,positionX:\"43.7%\",positionY:\"32.4%\",sizes:\"380.5px\",src:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg\",srcSet:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg 5018w\"},className:\"framer-1k3z6s7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l5OAfeE3A\",...addPropertyOverrides({CUIEeE1kx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+20+153.5+50+0+0),pixelHeight:3345,pixelWidth:5018,positionX:\"43.7%\",positionY:\"32.4%\",sizes:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,src:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg\",srcSet:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg 5018w\"}},mcU2JvRBI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+40+210+40+0+0),pixelHeight:3345,pixelWidth:5018,positionX:\"43.7%\",positionY:\"32.4%\",sizes:`max((max(${componentViewport?.width||\"100vw\"} - 160px, 1px) - 40px) / 2, 1px)`,src:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg\",srcSet:\"https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/goJkK0279720xoSNf1qOBtHHtM.jpg 5018w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"29px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-1e3)/2)+40+187.5+10,...addPropertyOverrides({CUIEeE1kx:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+20+153.5+10},mcU2JvRBI:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||800)-0-1e3)/2+0+0)+40+210+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12g9crh-container\",layoutDependency:layoutDependency,layoutId:\"fh0EyIlMz-container\",children:/*#__PURE__*/_jsx(AdvertCloseButtonWithClosePopupOnClickWithMappedReactPropsvh6o7t,{height:\"100%\",id:\"fh0EyIlMz\",layoutId:\"fh0EyIlMz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xwFO6.framer-1w1hfa2, .framer-xwFO6 .framer-1w1hfa2 { display: block; }\",\".framer-xwFO6.framer-cihi5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-xwFO6 .framer-1v71aoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; min-height: 800px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-xwFO6 .framer-11fcgmm { 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: 40px; position: relative; width: min-content; }\",\".framer-xwFO6 .framer-u69vwu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 801px; }\",\".framer-xwFO6 .framer-mbvzib { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xwFO6 .framer-15fasnm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xwFO6 .framer-i2nmte, .framer-xwFO6 .framer-1sza3tx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xwFO6 .framer-dt1byv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xwFO6 .framer-q8m271 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-xwFO6 .framer-tpj7ba, .framer-xwFO6 .framer-1l5luki { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-xwFO6 .framer-1vfoizf-container { cursor: pointer; flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-xwFO6 .framer-1k3z6s7 { align-self: stretch; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-xwFO6 .framer-12g9crh-container { cursor: pointer; flex: none; height: 31px; position: absolute; right: 10px; top: 10px; width: 29px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwFO6.framer-cihi5, .framer-xwFO6 .framer-1v71aoo, .framer-xwFO6 .framer-11fcgmm, .framer-xwFO6 .framer-u69vwu, .framer-xwFO6 .framer-mbvzib, .framer-xwFO6 .framer-15fasnm, .framer-xwFO6 .framer-dt1byv, .framer-xwFO6 .framer-q8m271 { gap: 0px; } .framer-xwFO6.framer-cihi5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xwFO6.framer-cihi5 > :first-child, .framer-xwFO6 .framer-11fcgmm > :first-child, .framer-xwFO6 .framer-u69vwu > :first-child { margin-left: 0px; } .framer-xwFO6.framer-cihi5 > :last-child, .framer-xwFO6 .framer-11fcgmm > :last-child, .framer-xwFO6 .framer-u69vwu > :last-child { margin-right: 0px; } .framer-xwFO6 .framer-1v71aoo > *, .framer-xwFO6 .framer-dt1byv > *, .framer-xwFO6 .framer-q8m271 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xwFO6 .framer-1v71aoo > :first-child, .framer-xwFO6 .framer-mbvzib > :first-child, .framer-xwFO6 .framer-15fasnm > :first-child, .framer-xwFO6 .framer-dt1byv > :first-child, .framer-xwFO6 .framer-q8m271 > :first-child { margin-top: 0px; } .framer-xwFO6 .framer-1v71aoo > :last-child, .framer-xwFO6 .framer-mbvzib > :last-child, .framer-xwFO6 .framer-15fasnm > :last-child, .framer-xwFO6 .framer-dt1byv > :last-child, .framer-xwFO6 .framer-q8m271 > :last-child { margin-bottom: 0px; } .framer-xwFO6 .framer-11fcgmm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xwFO6 .framer-u69vwu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-xwFO6 .framer-mbvzib > *, .framer-xwFO6 .framer-15fasnm > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",\".framer-xwFO6.framer-v-9q3opv.framer-cihi5 { flex-direction: column; width: 810px; }\",\".framer-xwFO6.framer-v-9q3opv .framer-11fcgmm { width: 100%; }\",\".framer-xwFO6.framer-v-9q3opv .framer-u69vwu { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwFO6.framer-v-9q3opv.framer-cihi5 { gap: 0px; } .framer-xwFO6.framer-v-9q3opv.framer-cihi5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xwFO6.framer-v-9q3opv.framer-cihi5 > :first-child { margin-top: 0px; } .framer-xwFO6.framer-v-9q3opv.framer-cihi5 > :last-child { margin-bottom: 0px; } }\",\".framer-xwFO6.framer-v-wk4ghx.framer-cihi5 { flex-direction: column; width: 390px; }\",\".framer-xwFO6.framer-v-wk4ghx .framer-1v71aoo { order: 0; padding: 20px; }\",\".framer-xwFO6.framer-v-wk4ghx .framer-11fcgmm { padding: 50px 20px 20px 20px; width: 100%; }\",\".framer-xwFO6.framer-v-wk4ghx .framer-u69vwu { flex: 1 0 0px; flex-direction: column; width: 1px; }\",\".framer-xwFO6.framer-v-wk4ghx .framer-mbvzib { flex: none; order: 1; width: 100%; }\",\".framer-xwFO6.framer-v-wk4ghx .framer-1k3z6s7 { align-self: unset; flex: none; height: 150px; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwFO6.framer-v-wk4ghx.framer-cihi5, .framer-xwFO6.framer-v-wk4ghx .framer-u69vwu { gap: 0px; } .framer-xwFO6.framer-v-wk4ghx.framer-cihi5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xwFO6.framer-v-wk4ghx.framer-cihi5 > :first-child, .framer-xwFO6.framer-v-wk4ghx .framer-u69vwu > :first-child { margin-top: 0px; } .framer-xwFO6.framer-v-wk4ghx.framer-cihi5 > :last-child, .framer-xwFO6.framer-v-wk4ghx .framer-u69vwu > :last-child { margin-bottom: 0px; } .framer-xwFO6.framer-v-wk4ghx .framer-u69vwu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-xwFO6.framer-v-1y7jzke.framer-cihi5 { height: 1px; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mcU2JvRBI\":{\"layout\":[\"fixed\",\"auto\"]},\"CUIEeE1kx\":{\"layout\":[\"fixed\",\"auto\"]},\"aBPwxJMRm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlsipQRX8U=withCSS(Component,css,\"framer-xwFO6\");export default FramerlsipQRX8U;FramerlsipQRX8U.displayName=\"Popup\";FramerlsipQRX8U.defaultProps={height:800,width:1440};addPropertyControls(FramerlsipQRX8U,{variant:{options:[\"hu9NZqR4U\",\"mcU2JvRBI\",\"CUIEeE1kx\",\"aBPwxJMRm\"],optionTitles:[\"popupDesktop\",\"popupTablet\",\"popupPhone\",\"popupClosed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlsipQRX8U,[{explicitInter:true,fonts:[{family:\"Gotham Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/qriciwHVbwFguSw3BTt4lAVXwzw.woff2\"},{family:\"Gotham Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/NNRBQxj51i7Lha5HIiKhS1M350.woff2\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...ButtonCopyFonts,...AdvertCloseButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlsipQRX8U\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mcU2JvRBI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CUIEeE1kx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aBPwxJMRm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={d1APOArEb:{hover:true}};const serializationHash=\"framer-VKTMR\";const variantClassNames={d1APOArEb:\"framer-v-1fspkal\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const 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,width,...props})=>{return{...props};};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({defaultVariant:\"d1APOArEb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-1fspkal\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"d1APOArEb\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"d1APOArEb-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2w9uxt-container\",layoutDependency:layoutDependency,layoutId:\"xVTM2tZVP-container\",style:{opacity:1},variants:{\"d1APOArEb-hover\":{opacity:.4}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"xVTM2tZVP\",layoutId:\"xVTM2tZVP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VKTMR.framer-iersi3, .framer-VKTMR .framer-iersi3 { display: block; }\",\".framer-VKTMR.framer-1fspkal { cursor: pointer; height: 31px; overflow: hidden; position: relative; width: 29px; }\",\".framer-VKTMR .framer-2w9uxt-container { bottom: 0px; cursor: pointer; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-VKTMR.framer-v-1fspkal.hover.framer-1fspkal { aspect-ratio: 0.9333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 31px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 29\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qcQ6FA45Q\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg1M0hWEc4=withCSS(Component,css,\"framer-VKTMR\");export default Framerg1M0hWEc4;Framerg1M0hWEc4.displayName=\"Advert/Close Button\";Framerg1M0hWEc4.defaultProps={height:31,width:29};addFonts(Framerg1M0hWEc4,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg1M0hWEc4\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"29\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"31\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qcQ6FA45Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g1M0hWEc4.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "DELAY_TIME", "COOKIE_EXPIRE_DAYS", "BREAKPOINTS", "DEBOUNCE_DELAY", "useStore", "createStore", "setCookie", "name", "value", "days", "expires", "secure", "getCookie", "r", "v", "parts", "debounce", "func", "wait", "timeout", "args", "getVariantForScreenWidth", "width", "areCookiesEnabled", "setLocalStorage", "key", "data", "getLocalStorage", "SwitchVariantAfterDelay", "store", "setStore", "advertShown", "pe", "ue", "updateVariant", "newVariant", "prevStore", "debouncedUpdateVariant", "SwitchVariantAfterDelayWithCookie", "useCookies", "storageKey", "hasAdvertBeenShown", "markAdvertAsShown", "ClosePopupOnClick", "AccessibilityFeatures", "advertRef", "handleKeyDown", "e", "withSwitchVariantAfterDelay", "C", "props", "re", "DataObserverContext", "p", "withSwitchVariantAfterDelayWithCookie", "withClosePopupOnClick", "withAccessibilityFeatures", "lsipQRX8U_exports", "__export", "__FramerMetadata__", "lsipQRX8U_default", "init_ssg_sandbox_shims", "g1M0hWEc4_exports", "__export", "__FramerMetadata__", "g1M0hWEc4_default", "init_ssg_sandbox_shims", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "Framerg1M0hWEc4", "withCSS", "g1M0hWEc4_default", "addFonts", "__FramerMetadata__", "ButtonCopyFonts", "getFonts", "AsADraJwV_default", "AdvertCloseButtonFonts", "g1M0hWEc4_default", "AdvertCloseButtonWithClosePopupOnClickWithMappedReactPropsvh6o7t", "withMappedReactProps", "withClosePopupOnClick", "g1M0hWEc4_exports", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "animation3", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerlsipQRX8U", "withCSS", "lsipQRX8U_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
