{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/EqB2oGdmJ81urPOd5L66/Clipboard.js", "ssg:https://framerusercontent.com/modules/5VaZXMHQ8kUkE4zNNYud/fM9LOZxMWBXkPidhWkJP/zJd7GPIOF.js", "ssg:https://framerusercontent.com/modules/1mkt2plloPEOvoe16UUK/EUmeSZzQepu1cHilAvr7/LemonSqueezy.js", "ssg:https://framerusercontent.com/modules/DdVFibgT0NBsKzyo7OuG/QV6FUW7qth6NDINk0fUS/AUZKG9ma1.js", "ssg:https://framerusercontent.com/modules/dqisYmzMroH9wXzTGBMy/an9OvB4JOJlMpFHCSBD0/J1InrHUYC.js", "ssg:https://framerusercontent.com/modules/nqbjaeG8XQF6spGVipX9/fhK4W3JG9VJz3CRsA2oU/NF16u01wB.js", "ssg:https://framerusercontent.com/modules/bKL5NNhW5obFE4pdFY5f/tVmbabLLWIQbG4hGb4Hs/xBYhRokP1.js", "ssg:https://framerusercontent.com/modules/gjHOJxH1KnVxXOKiDtcR/ml1Nuvkva15QlnOFsJ1w/ZAJ12zsrc.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var ref;const[,domain,parameters]=(ref=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&ref!==void 0?ref:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null,];};function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */ const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,formsparkID,getwaitlistAPI,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const formBody=`email=${encodeURIComponent(email)}`;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://submit-form.com/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const data1=new FormData(event.target);const entries1=Object.fromEntries(data1.entries());fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries1)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,email,onSubmit,validateForm,isLoading,]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/ _jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),/*#__PURE__*/ _jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3}}),!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/ _jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,fontWeight:button.fontWeight,fontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`,]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/ _jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on. By using `useConstant`\n * you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard({label,content,fill,color,style,onClick,...props}){const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return(/*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,fontFamily,fontWeight,fontSize,color,...style},onClick:handleClick,whileHover:{opacity:0.8},whileTap:{scale:0.9},transition:{type:\"ease\",duration:0.3},...props,children:label}));};Clipboard.defaultProps={label:\"Copy to clipboard\",color:\"#fff\",fontSize:16,fontFamily:\"Inter\",fontWeight:500,padding:15,borderRadius:8};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\"},fill:{type:ControlType.Color,title:\"Fill\"},color:{type:ControlType.Color,title:\"Text\"},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"90\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/EqB2oGdmJ81urPOd5L66/Clipboard.js\";const ClipboardFonts=getFonts(Clipboard);const FeatherFonts=getFonts(Feather);const enabledGestures={J8MHPacVg:{hover:true}};const cycleOrder=[\"J8MHPacVg\",\"R5v6mxUxG\"];const serializationHash=\"framer-PczqP\";const variantClassNames={J8MHPacVg:\"framer-v-rs0732\",R5v6mxUxG:\"framer-v-w2jy8m\"};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:250,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-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={\"mail - clicked\":\"R5v6mxUxG\",mail:\"J8MHPacVg\"};const getProps=({eMailAddress,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,QSDHkVwlW:(_ref=eMailAddress!==null&&eMailAddress!==void 0?eMailAddress:props.QSDHkVwlW)!==null&&_ref!==void 0?_ref:\"coach@fadilchanner.com \",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"J8MHPacVg\"};};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,QSDHkVwlW,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J8MHPacVg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap10tln61=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"R5v6mxUxG\");});const onAppearifsc3v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"J8MHPacVg\"),3e3);});useOnVariantChange(baseVariant,{R5v6mxUxG:onAppearifsc3v});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"R5v6mxUxG\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"J8MHPacVg-hover\")return true;return false;};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-rs0732\",className,classNames),\"data-framer-name\":\"mail\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"J8MHPacVg\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap10tln61,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"J8MHPacVg-hover\":{\"data-framer-name\":undefined},R5v6mxUxG:{\"data-framer-name\":\"mail - clicked\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-o2pfqt\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"znI6FmdX1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mlu4g1\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bdiRqVSWj\",opacity:1,radius:4,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 0 0.36 L 0 1.695 C 1.446 2.953 9.739 10.183 10.395 10.755 C 11.07 11.344 11.743 11.4 12 11.4 C 12.257 11.4 12.93 11.344 13.605 10.755 C 14.286 10.162 23.063 2.511 24 1.695 L 24 0.36 Z M 0 2.97 L 0 15.015 L 7.26 9.285 C 4.907 7.237 1.551 4.32 0 2.97 Z M 24 2.97 C 22.536 4.245 19.127 7.207 16.74 9.285 L 24 15 Z M 7.995 9.93 L 0 16.23 L 0 17.64 L 24 17.64 L 24 16.215 L 16.005 9.93 C 15.075 10.74 14.406 11.327 14.235 11.475 C 13.314 12.276 12.364 12.36 12 12.36 C 11.636 12.36 10.686 12.278 9.765 11.475 C 9.596 11.329 8.927 10.742 7.995 9.93 Z\" fill=\"rgb(208,208,208)\"></path></svg>',svgContentId:3296120854,withExternalLayout:true,...addPropertyOverrides({\"J8MHPacVg-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 0 0.36 L 0 1.695 C 1.446 2.953 9.739 10.183 10.395 10.755 C 11.07 11.344 11.743 11.4 12 11.4 C 12.257 11.4 12.93 11.344 13.605 10.755 C 14.286 10.162 23.063 2.511 24 1.695 L 24 0.36 Z M 0 2.97 L 0 15.015 L 7.26 9.285 C 4.907 7.237 1.551 4.32 0 2.97 Z M 24 2.97 C 22.536 4.245 19.127 7.207 16.74 9.285 L 24 15 Z M 7.995 9.93 L 0 16.23 L 0 17.64 L 24 17.64 L 24 16.215 L 16.005 9.93 C 15.075 10.74 14.406 11.327 14.235 11.475 C 13.314 12.276 12.364 12.36 12 12.36 C 11.636 12.36 10.686 12.278 9.765 11.475 C 9.596 11.329 8.927 10.742 7.995 9.93 Z\" fill=\"#FAFAFA\"></path></svg>',svgContentId:10026217557},R5v6mxUxG:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 18\"><path d=\"M 0 0.36 L 0 1.695 C 1.446 2.953 9.739 10.183 10.395 10.755 C 11.07 11.344 11.743 11.4 12 11.4 C 12.257 11.4 12.93 11.344 13.605 10.755 C 14.286 10.162 23.063 2.511 24 1.695 L 24 0.36 Z M 0 2.97 L 0 15.015 L 7.26 9.285 C 4.907 7.237 1.551 4.32 0 2.97 Z M 24 2.97 C 22.536 4.245 19.127 7.207 16.74 9.285 L 24 15 Z M 7.995 9.93 L 0 16.23 L 0 17.64 L 24 17.64 L 24 16.215 L 16.005 9.93 C 15.075 10.74 14.406 11.327 14.235 11.475 C 13.314 12.276 12.364 12.36 12 12.36 C 11.636 12.36 10.686 12.278 9.765 11.475 C 9.596 11.329 8.927 10.742 7.995 9.93 Z\" fill=\"#D0D0D0\"></path></svg>',svgContentId:8858655490}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fohs0a-container\",layoutDependency:layoutDependency,layoutId:\"WO9xiAMwL-container\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,color:\"rgb(255, 255, 255)\",content:QSDHkVwlW,fill:\"rgba(0, 153, 255, 0)\",font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:500,height:\"100%\",id:\"WO9xiAMwL\",isMixedBorderRadius:false,label:\"\",layoutId:\"WO9xiAMwL\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sgsthf\",\"data-framer-name\":\"tooltip-success\",layoutDependency:layoutDependency,layoutId:\"FeVKj6o5j\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(19, 21, 21, 0.75)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:0,WebkitBackdropFilter:\"blur(10px)\"},variants:{R5v6mxUxG:{opacity:1}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ac60n-container\",\"data-framer-name\":\"check\",layoutDependency:layoutDependency,layoutId:\"hUV7M46uL-container\",name:\"check\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(105, 255, 151)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"check\",id:\"hUV7M46uL\",layoutId:\"hUV7M46uL\",mirrored:false,name:\"check\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Copied to clipboard\"})}),className:\"framer-nfl6lz\",\"data-framer-name\":\"Copy e-mail address\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xSr_P5bog\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mmmn5u\",\"data-framer-name\":\"tooltip\",layoutDependency:layoutDependency,layoutId:\"U6qECZTLK\",style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(19, 21, 21, 0.75)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,WebkitBackdropFilter:\"blur(10px)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jv53a4\",\"data-framer-name\":\"Copy\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"k73fQ0tlf\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.5 1C1.67578 1 1 1.67578 1 2.5V10.5C1 11.3242 1.67578 12 2.5 12H4V12.5C4 13.3242 4.67578 14 5.5 14H13.5C14.3242 14 15 13.3242 15 12.5V4.5C15 3.67578 14.3242 3 13.5 3H12V2.5C12 1.67578 11.3242 1 10.5 1H2.5ZM2.5 2H10.5C10.7812 2 11 2.21875 11 2.5V10.5C11 10.7812 10.7812 11 10.5 11H2.5C2.21875 11 2 10.7812 2 10.5V2.5C2 2.21875 2.21875 2 2.5 2ZM12 4H13.5C13.7812 4 14 4.21875 14 4.5V12.5C14 12.7812 13.7812 13 13.5 13H5.5C5.21875 13 5 12.7812 5 12.5V12H10.5C11.3242 12 12 11.3242 12 10.5V4Z\" fill=\"#888888\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Copy e-mail address\"})}),className:\"framer-1knf68n\",\"data-framer-name\":\"Copy e-mail address\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sp3KVE1YQ\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PczqP.framer-yc0pzz, .framer-PczqP .framer-yc0pzz { display: block; }\",\".framer-PczqP.framer-rs0732 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; padding: 0px; position: relative; width: 24px; }\",\".framer-PczqP .framer-o2pfqt { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-PczqP .framer-1mlu4g1 { flex: none; height: 18px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 24px; }\",\".framer-PczqP .framer-fohs0a-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-PczqP .framer-1sgsthf { align-content: center; align-items: center; bottom: -32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: flex-end; overflow: visible; padding: 4px 6px 4px 6px; position: absolute; right: -56px; width: 135px; z-index: 1; }\",\".framer-PczqP .framer-6ac60n-container, .framer-PczqP .framer-jv53a4 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-PczqP .framer-nfl6lz, .framer-PczqP .framer-1knf68n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PczqP .framer-1mmmn5u { align-content: center; align-items: center; bottom: -32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; left: 50%; overflow: visible; padding: 4px 6px 4px 6px; position: absolute; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PczqP.framer-rs0732, .framer-PczqP .framer-1sgsthf, .framer-PczqP .framer-1mmmn5u { gap: 0px; } .framer-PczqP.framer-rs0732 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PczqP.framer-rs0732 > :first-child, .framer-PczqP .framer-1sgsthf > :first-child, .framer-PczqP .framer-1mmmn5u > :first-child { margin-left: 0px; } .framer-PczqP.framer-rs0732 > :last-child, .framer-PczqP .framer-1sgsthf > :last-child, .framer-PczqP .framer-1mmmn5u > :last-child { margin-right: 0px; } .framer-PczqP .framer-1sgsthf > *, .framer-PczqP .framer-1mmmn5u > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-PczqP.framer-v-w2jy8m .framer-1sgsthf { height: min-content; justify-content: flex-start; }\",\".framer-PczqP.framer-v-w2jy8m .framer-6ac60n-container { order: 1; }\",\".framer-PczqP.framer-v-w2jy8m .framer-nfl6lz { order: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"R5v6mxUxG\":{\"layout\":[\"fixed\",\"fixed\"]},\"oy8RIrxWP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QSDHkVwlW\":\"eMailAddress\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzJd7GPIOF=withCSS(Component,css,\"framer-PczqP\");export default FramerzJd7GPIOF;FramerzJd7GPIOF.displayName=\"mail-to-clipboard\";FramerzJd7GPIOF.defaultProps={height:24,width:24};addPropertyControls(FramerzJd7GPIOF,{variant:{options:[\"J8MHPacVg\",\"R5v6mxUxG\"],optionTitles:[\"mail\",\"mail - clicked\"],title:\"Variant\",type:ControlType.Enum},QSDHkVwlW:{defaultValue:\"coach@fadilchanner.com \",displayTextArea:true,title:\"E-mail Address\",type:ControlType.String}});addFonts(FramerzJd7GPIOF,[{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-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...ClipboardFonts,...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzJd7GPIOF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"QSDHkVwlW\\\":\\\"eMailAddress\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R5v6mxUxG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oy8RIrxWP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"24\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zJd7GPIOF.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{useEffect}from\"react\";/**\n *\n * LEMON SQUEEZY\n * By Benjamin\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function LemonSqueezy(props){const{styleOptions,hoverOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft}=styleOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Only load the lemon script if you want an Overlay\n     * Otherwise, do not include\u2014also, only load it once\n     * whenever you have multiple instances on your page.\n     */ useConditionalScript(!props.isRedirect,\"https://app.lemonsqueezy.com/js/lemon.js\",\"lemon-squeezy-framer-component\");return /*#__PURE__*/ _jsx(motion.a,{href:props.url,className:props.isRedirect?\"\":\"lemonsqueezy-button\",target:props.isRedirect?\"_blank\":\"_self\",style:{fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\"},whileHover:{scale:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverScale,backgroundColor:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverBackgroundColor,color:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.hoverColor},transition:props.hoverTransition,children:props.text});};LemonSqueezy.displayName=\"Lemon Squeezy\";addPropertyControls(LemonSqueezy,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Buy Now\"},url:{title:\"Link\",type:ControlType.String,defaultValue:\"https://makelemonade.lemonsqueezy.com/checkout/buy/0929c351-abb3-49f7-a671-ba15406517dd\"},isRedirect:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Link\",disabledTitle:\"Overlay\",defaultValue:true},fontControl:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#40F\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,description:\"Learn more about the Checkout options [here](https://docs.lemonsqueezy.com/help/checkout/checkout-overlay)\",controls:{hoverScale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},hoverBackgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\",optional:true},hoverColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},hoverTransition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Use external script conditionally */ const useConditionalScript=(condition,url,id)=>{useEffect(()=>{if(!condition)return;if(document.querySelector(`#${id}`))return;const script=document.createElement(\"script\");script.src=url;script.id=id;script.defer=true;script.onload=()=>{var ref;if(window.LemonSqueezy)return;(ref=window.createLemonSqueezy)===null||ref===void 0?void 0:ref.call(window);};document.body.appendChild(script);},[url,id,condition]);};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LemonSqueezy\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LemonSqueezy.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-d2eHR .framer-styles-preset-131iosv:not(.rich-text-wrapper), .framer-d2eHR .framer-styles-preset-131iosv.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: rgba(255, 255, 255, 0.75); --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: underline; transition: color 0.3s cubic-bezier(0.12, 0.23, 0.5, 1) 0s; }\"];export const className=\"framer-d2eHR\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LemonSqueezy from\"https://framerusercontent.com/modules/1mkt2plloPEOvoe16UUK/EUmeSZzQepu1cHilAvr7/LemonSqueezy.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/QOVXBlV2UNTt0qPAuW0e/Input.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/DdVFibgT0NBsKzyo7OuG/QV6FUW7qth6NDINk0fUS/AUZKG9ma1.js\";import MailToClipboard from\"https://framerusercontent.com/modules/5VaZXMHQ8kUkE4zNNYud/fM9LOZxMWBXkPidhWkJP/zJd7GPIOF.js\";const MailToClipboardFonts=getFonts(MailToClipboard);const InputFonts=getFonts(Input);const FeatherFonts=getFonts(Feather);const MotionDivWithFX=withFX(motion.div);const LemonSqueezyFonts=getFonts(LemonSqueezy);const cycleOrder=[\"DBxy567vn\",\"DH2QanLTv\",\"qxOmy9ujz\"];const serializationHash=\"framer-4HS7f\";const variantClassNames={DBxy567vn:\"framer-v-4d4a4d\",DH2QanLTv:\"framer-v-12yz78q\",qxOmy9ujz:\"framer-v-1jn0nmo\"};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 transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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={Desktop:\"DBxy567vn\",Phone:\"qxOmy9ujz\",Tablet:\"DH2QanLTv\"};const getProps=({height,id,link,tap,width,...props})=>{return{...props,N1ESpXxRT:link??props.N1ESpXxRT,sm8KSlOF8:tap??props.sm8KSlOF8,variant:humanReadableVariantMap[props.variant]??props.variant??\"DBxy567vn\"};};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,sm8KSlOF8,N1ESpXxRT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DBxy567vn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSubmittxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onClick14rsoec=activeVariantCallback(async(...args)=>{if(sm8KSlOF8){const res=await sm8KSlOF8(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4d4a4d\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"DBxy567vn\",ref:ref??ref1,style:{backgroundColor:\"rgb(11, 13, 13)\",...style},...addPropertyOverrides({DH2QanLTv:{\"data-framer-name\":\"Tablet\"},qxOmy9ujz:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mefv4h\",\"data-framer-name\":\"line-light-up\",layoutDependency:layoutDependency,layoutId:\"Gp3bwLay2\",style:{background:\"radial-gradient(19.2% 203128.15487198744% at 67.9% 50%, #393B3B 0%, #131515 100%)\",rotate:180}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u8psr5\",\"data-framer-name\":\"main\",layoutDependency:layoutDependency,layoutId:\"jQj85o1p6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n9d099\",\"data-framer-name\":\"logo and social\",layoutDependency:layoutDependency,layoutId:\"k4rs3BH_T\",children:[/*#__PURE__*/_jsx(Link,{href:N1ESpXxRT,motionChild:true,nodeId:\"rR6bHNES0\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1oqsdh9 framer-1ob8gsk\",\"data-framer-name\":\"logo\",layoutDependency:layoutDependency,layoutId:\"rR6bHNES0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1042,intrinsicWidth:1043,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||316.1)-64-508)/2+0+0)+0+0+0+.8000000000000007),pixelHeight:1042,pixelWidth:1043,sizes:\"32px\",src:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png\",srcSet:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=512 512w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png 1043w\"},className:\"framer-hn2g4y\",layoutDependency:layoutDependency,layoutId:\"bsaeAonOW\",...addPropertyOverrides({DH2QanLTv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1042,intrinsicWidth:1043,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||316.1)-64-508)/2+0+0)+0+0+0+0),pixelHeight:1042,pixelWidth:1043,sizes:\"32px\",src:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png\",srcSet:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=512 512w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png 1043w\"}},qxOmy9ujz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1042,intrinsicWidth:1043,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||200)-64-652)/2+0+0)+0+0+0+0+0),pixelHeight:1042,pixelWidth:1043,sizes:\"30px\",src:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png\",srcSet:\"https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=512 512w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jPpBMg5Bpyv2h36EEK56reFak.png 1043w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.56px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fadil Channer Coaching\"})}),className:\"framer-pa7mdt\",\"data-framer-name\":\"craft\",fonts:[\"Inter-ExtraBold\"],layoutDependency:layoutDependency,layoutId:\"c1uXY1uhh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DH2QanLTv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.56px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fadil Channer Coaching\"})})},qxOmy9ujz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter-ExtraBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.56px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fadil Channer Coaching\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zpwcz\",layoutDependency:layoutDependency,layoutId:\"qcDcEmBux\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+64+(((componentViewport?.height||316.1)-64-508)/2+0+0)+0+0+65.6+0,...addPropertyOverrides({DH2QanLTv:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||316.1)-64-508)/2+0+0)+0+0+64+0},qxOmy9ujz:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||200)-64-652)/2+0+0)+0+0+0+62+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ms706d-container\",layoutDependency:layoutDependency,layoutId:\"FNLRIPHhQ-container\",nodeId:\"FNLRIPHhQ\",rendersWithMotion:true,scopeId:\"J1InrHUYC\",children:/*#__PURE__*/_jsx(MailToClipboard,{height:\"100%\",id:\"FNLRIPHhQ\",layoutId:\"FNLRIPHhQ\",QSDHkVwlW:\"coach@fadilchanner.com \",style:{height:\"100%\",width:\"100%\"},variant:\"J8MHPacVg\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-185ion6\",\"data-framer-name\":\"newsletter\",layoutDependency:layoutDependency,layoutId:\"DRvVAXgXX\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-c5u214-container\",id:`${layoutId}-c5u214`,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OkETZjMfV-container\",nodeId:\"OkETZjMfV\",ref:ref2,rendersWithMotion:true,scopeId:\"J1InrHUYC\",children:[/*#__PURE__*/_jsx(Input,{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(105, 255, 150, 0.45)\",shadowX:0,shadowY:2},color:\"rgb(0, 0, 0)\",fill:\"rgb(105, 255, 151)\",insetWhenDocked:4,isDocked:true,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:115},font:{},formsparkID:\"g0wjgNjiB\",gap:15,getwaitlistAPI:\"\",height:\"100%\",id:\"OkETZjMfV\",input:{borderRadius:25,color:\"rgb(255, 255, 255)\",fill:\"rgba(255, 255, 255, 0.1)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"Subscribe for free audio guide\",placeholderColor:\"rgba(255, 255, 255, 0.3)\"},layout:\"horizontal\",layoutId:\"OkETZjMfV\",loopsID:\"\",mailchimpURL:\"https://fadilchanner.us21.list-manage.com/subscribe/post?u=2ba8bd645bbfb304ffd536d62&amp;id=4b5043c2e4&amp;f_id=00b2ebe6f0\",onSubmit:onSubmittxyyif({overlay}),redirectAs:\"overlay\",service:\"mailchimp\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({qxOmy9ujz:{button:{buttonFont:{},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(105, 255, 150, 0.45)\",shadowX:0,shadowY:2},color:\"rgb(0, 0, 0)\",fill:\"rgb(105, 255, 151)\",insetWhenDocked:4,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:115},layout:\"vertical\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-c5u214`,offsetX:.5,offsetY:-99,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.8,animate:animation1,className:\"framer-1d5xxr7\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"LfhZ7W3Ut\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(87, 87, 87)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",opacity:.8},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(224, 224, 224))\"},children:\"Thanks for subscribing.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(224, 224, 224))\"},children:\"You will shortly receive\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(224, 224, 224))\"},children:\"a Welcome email.\"})]}),className:\"framer-rpuy7r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WJHpGzgNr\",style:{\"--extracted-1iakedh\":\"rgb(224, 224, 224)\",\"--extracted-2gxw0f\":\"rgb(224, 224, 224)\",\"--extracted-r6o4lv\":\"rgb(224, 224, 224)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pwtx35-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mOhnCzHCS-container\",nodeId:\"mOhnCzHCS\",rendersWithMotion:true,scopeId:\"J1InrHUYC\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(219, 219, 219)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"mOhnCzHCS\",layoutId:\"mOhnCzHCS\",mirrored:false,onClick:onClick14rsoec,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[\"Subscribe to the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Y47rPH7U8\"},motionChild:true,nodeId:\"eDTvlYu_D\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-131iosv\",\"data-styles-preset\":\"AUZKG9ma1\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Meditations\"})})})}),\" newsletter. \"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(136, 136, 136))\"},children:\"Get access to free audio-guides and exclusive content.\\xa0\"})]}),className:\"framer-cexjak\",\"data-framer-name\":\"Get exclusive access to new products, tips and more - subscribe to our newsletter today!\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"eDTvlYu_D\",style:{\"--extracted-2gxw0f\":\"rgb(136, 136, 136)\",\"--extracted-hl0iuy\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qxOmy9ujz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[\"Subscribe to the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Y47rPH7U8\"},motionChild:true,nodeId:\"eDTvlYu_D\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-131iosv\",\"data-styles-preset\":\"AUZKG9ma1\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-hl0iuy, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Meditations\"})})})}),\" newsletter. \"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(136, 136, 136))\"},children:\"Get access to free audio-guides and exclusive content.\\xa0\"})]})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11dfkx8\",\"data-framer-name\":\"details\",layoutDependency:layoutDependency,layoutId:\"NqUUR0HmS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-95j9xu\",\"data-framer-name\":\"line-light-up\",layoutDependency:layoutDependency,layoutId:\"DNHLF7KTb\",style:{backgroundColor:\"rgb(19, 21, 21)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-klpu0f\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"R7LP0Gjaj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"\\xa92025 Fadil Channer Coaching\"})}),className:\"framer-o2d4va\",\"data-framer-name\":\"\\xa92023 Craft\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XREcjm7Wl\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jw6mu0\",\"data-framer-name\":\"made for framer\",layoutDependency:layoutDependency,layoutId:\"ANEeBWk5a\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b46jxi-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RFkt9zFtW-container\",nodeId:\"RFkt9zFtW\",rendersWithMotion:true,scopeId:\"J1InrHUYC\",children:/*#__PURE__*/_jsx(LemonSqueezy,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0px\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{hoverBackgroundColor:\"rgba(17, 17, 17, 0)\",hoverColor:\"rgb(250, 250, 250)\",hoverScale:1,hoverTransition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"RFkt9zFtW\",isRedirect:false,layoutId:\"RFkt9zFtW\",styleOptions:{backgroundColor:\"rgba(68, 0, 255, 0)\",borderRadius:50,color:\"rgb(196, 196, 196)\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0},text:\"\",url:\"\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4HS7f.framer-1ob8gsk, .framer-4HS7f .framer-1ob8gsk { display: block; }\",\".framer-4HS7f.framer-4d4a4d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 64px 50px 0px 50px; position: relative; width: 1200px; }\",\".framer-4HS7f .framer-1mefv4h, .framer-4HS7f .framer-95j9xu { flex: none; height: 1px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-4HS7f .framer-1u8psr5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4HS7f .framer-1n9d099 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4HS7f .framer-1oqsdh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-4HS7f .framer-hn2g4y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; }\",\".framer-4HS7f .framer-pa7mdt, .framer-4HS7f .framer-rpuy7r, .framer-4HS7f .framer-o2d4va { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4HS7f .framer-1zpwcz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4HS7f .framer-1ms706d-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-4HS7f .framer-185ion6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 371px; }\",\".framer-4HS7f .framer-c5u214-container { flex: none; height: auto; position: sticky; width: 100%; will-change: transform; z-index: 1; }\",\".framer-4HS7f .framer-1d5xxr7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4HS7f .framer-1pwtx35-container { flex: none; height: 20px; left: 172px; position: absolute; top: 8px; width: 20px; z-index: 1; }\",\".framer-4HS7f .framer-cexjak { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-4HS7f .framer-11dfkx8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-4HS7f .framer-klpu0f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-4HS7f .framer-jw6mu0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-height: 17px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4HS7f .framer-b46jxi-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4HS7f.framer-4d4a4d, .framer-4HS7f .framer-1n9d099, .framer-4HS7f .framer-1oqsdh9, .framer-4HS7f .framer-hn2g4y, .framer-4HS7f .framer-1zpwcz, .framer-4HS7f .framer-185ion6, .framer-4HS7f .framer-1d5xxr7, .framer-4HS7f .framer-11dfkx8, .framer-4HS7f .framer-jw6mu0 { gap: 0px; } .framer-4HS7f.framer-4d4a4d > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-4HS7f.framer-4d4a4d > :first-child, .framer-4HS7f .framer-1n9d099 > :first-child, .framer-4HS7f .framer-185ion6 > :first-child, .framer-4HS7f .framer-11dfkx8 > :first-child { margin-top: 0px; } .framer-4HS7f.framer-4d4a4d > :last-child, .framer-4HS7f .framer-1n9d099 > :last-child, .framer-4HS7f .framer-185ion6 > :last-child, .framer-4HS7f .framer-11dfkx8 > :last-child { margin-bottom: 0px; } .framer-4HS7f .framer-1n9d099 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-4HS7f .framer-1oqsdh9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-4HS7f .framer-1oqsdh9 > :first-child, .framer-4HS7f .framer-hn2g4y > :first-child, .framer-4HS7f .framer-1zpwcz > :first-child, .framer-4HS7f .framer-1d5xxr7 > :first-child, .framer-4HS7f .framer-jw6mu0 > :first-child { margin-left: 0px; } .framer-4HS7f .framer-1oqsdh9 > :last-child, .framer-4HS7f .framer-hn2g4y > :last-child, .framer-4HS7f .framer-1zpwcz > :last-child, .framer-4HS7f .framer-1d5xxr7 > :last-child, .framer-4HS7f .framer-jw6mu0 > :last-child { margin-right: 0px; } .framer-4HS7f .framer-hn2g4y > *, .framer-4HS7f .framer-1d5xxr7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4HS7f .framer-1zpwcz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-4HS7f .framer-185ion6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-4HS7f .framer-11dfkx8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4HS7f .framer-jw6mu0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-4HS7f.framer-v-12yz78q.framer-4d4a4d { width: 810px; }\",\".framer-4HS7f.framer-v-1jn0nmo.framer-4d4a4d { width: 390px; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-1u8psr5 { align-content: center; align-items: center; flex-direction: column; gap: 49px; justify-content: center; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-1n9d099 { align-content: center; align-items: center; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-hn2g4y { height: 30px; width: 30px; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-185ion6 { gap: 25px; width: 100%; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-cexjak { width: 100%; }\",\".framer-4HS7f.framer-v-1jn0nmo .framer-klpu0f { gap: 0px; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4HS7f.framer-v-1jn0nmo .framer-1u8psr5, .framer-4HS7f.framer-v-1jn0nmo .framer-185ion6, .framer-4HS7f.framer-v-1jn0nmo .framer-klpu0f { gap: 0px; } .framer-4HS7f.framer-v-1jn0nmo .framer-1u8psr5 > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-4HS7f.framer-v-1jn0nmo .framer-1u8psr5 > :first-child, .framer-4HS7f.framer-v-1jn0nmo .framer-185ion6 > :first-child { margin-top: 0px; } .framer-4HS7f.framer-v-1jn0nmo .framer-1u8psr5 > :last-child, .framer-4HS7f.framer-v-1jn0nmo .framer-185ion6 > :last-child { margin-bottom: 0px; } .framer-4HS7f.framer-v-1jn0nmo .framer-185ion6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-4HS7f.framer-v-1jn0nmo .framer-klpu0f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4HS7f.framer-v-1jn0nmo .framer-klpu0f > :first-child { margin-left: 0px; } .framer-4HS7f.framer-v-1jn0nmo .framer-klpu0f > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 316.1\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DH2QanLTv\":{\"layout\":[\"fixed\",\"auto\"]},\"qxOmy9ujz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"sm8KSlOF8\":\"tap\",\"N1ESpXxRT\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ1InrHUYC=withCSS(Component,css,\"framer-4HS7f\");export default FramerJ1InrHUYC;FramerJ1InrHUYC.displayName=\"Footer\";FramerJ1InrHUYC.defaultProps={height:316.1,width:1200};addPropertyControls(FramerJ1InrHUYC,{variant:{options:[\"DBxy567vn\",\"DH2QanLTv\",\"qxOmy9ujz\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},sm8KSlOF8:{title:\"Tap\",type:ControlType.EventHandler},N1ESpXxRT:{title:\"Link\",type:ControlType.Link}});addFonts(FramerJ1InrHUYC,[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...MailToClipboardFonts,...InputFonts,...FeatherFonts,...LemonSqueezyFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ1InrHUYC\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"sm8KSlOF8\\\":\\\"tap\\\",\\\"N1ESpXxRT\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"316.1\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DH2QanLTv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qxOmy9ujz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J1InrHUYC.map", "// Generated by Framer (f558e44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,resolveLink,useActiveVariantCallback,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Link from\"https://framerusercontent.com/modules/bKL5NNhW5obFE4pdFY5f/tVmbabLLWIQbG4hGb4Hs/xBYhRokP1.js\";const LinkFonts=getFonts(Link);const cycleOrder=[\"kh5Mxhi07\",\"uINpcqJFw\",\"dD6PgfToG\",\"i6ZoRivl9\",\"SwFKktt9m\",\"iest8qzXa\",\"WMKwFOq5F\",\"IbPidc4Ll\",\"sjJrowx7t\",\"IeAvckZS6\",\"zgzs9JvKU\",\"WyieQrmcL\",\"Dfm2XiGOV\"];const serializationHash=\"framer-qk1cY\";const variantClassNames={dD6PgfToG:\"framer-v-vz97rz\",Dfm2XiGOV:\"framer-v-pjka2p\",i6ZoRivl9:\"framer-v-1xjqm8p\",IbPidc4Ll:\"framer-v-1uo981t\",IeAvckZS6:\"framer-v-olud3y\",iest8qzXa:\"framer-v-hmcv2o\",kh5Mxhi07:\"framer-v-yz7x8r\",sjJrowx7t:\"framer-v-1nhn5gm\",SwFKktt9m:\"framer-v-1ka8ae4\",uINpcqJFw:\"framer-v-12m1ya4\",WMKwFOq5F:\"framer-v-z0vgxq\",WyieQrmcL:\"framer-v-4gmqfx\",zgzs9JvKU:\"framer-v-1mgncfk\"};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 transitions={dD6PgfToG:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},default:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},Dfm2XiGOV:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},i6ZoRivl9:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},IeAvckZS6:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},iest8qzXa:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},SwFKktt9m:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},WyieQrmcL:{damping:21,delay:0,mass:1,stiffness:250,type:\"spring\"},zgzs9JvKU:{damping:21,delay:0,mass:1,stiffness:250,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 humanReadableVariantMap={\"404\":\"SwFKktt9m\",\"Mobile - 404\":\"Dfm2XiGOV\",\"Mobile - About\":\"WyieQrmcL\",\"Mobile - Home\":\"IbPidc4Ll\",\"Mobile - Media\":\"IeAvckZS6\",\"Mobile - Newsletter\":\"zgzs9JvKU\",\"Mobile - Shop\":\"sjJrowx7t\",About:\"i6ZoRivl9\",Home:\"WMKwFOq5F\",Media:\"dD6PgfToG\",Newsletter:\"iest8qzXa\",Shop:\"uINpcqJFw\",X:\"kh5Mxhi07\"};const getProps=({disableForMobile,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Kcp1Qj0hJ:(_ref=disableForMobile!==null&&disableForMobile!==void 0?disableForMobile:props.Kcp1Qj0hJ)!==null&&_ref!==void 0?_ref:true,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"kh5Mxhi07\"};};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,Kcp1Qj0hJ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"kh5Mxhi07\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const A1y5pRvgP80g8eg=activeVariantCallback(async(...args)=>{setVariant(\"kh5Mxhi07\");});const A1y5pRvgP1597a3i=activeVariantCallback(async(...args)=>{setVariant(\"IbPidc4Ll\");});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"SwFKktt9m\",\"Dfm2XiGOV\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yz7x8r\",className,classNames),\"data-framer-name\":\"X\",initial:variant,layoutDependency:layoutDependency,layoutId:\"kh5Mxhi07\",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:{backdropFilter:\"blur(10px)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(10px)\",...style},tabIndex:0,...addPropertyOverrides({dD6PgfToG:{\"data-framer-name\":\"Media\"},Dfm2XiGOV:{\"data-framer-name\":\"Mobile - 404\"},i6ZoRivl9:{\"data-framer-name\":\"About\"},IbPidc4Ll:{\"data-framer-name\":\"Mobile - Home\"},IeAvckZS6:{\"data-framer-name\":\"Mobile - Media\"},iest8qzXa:{\"data-framer-name\":\"Newsletter\"},sjJrowx7t:{\"data-framer-name\":\"Mobile - Shop\"},SwFKktt9m:{\"data-framer-name\":\"404\"},uINpcqJFw:{\"data-framer-name\":\"Shop\"},WMKwFOq5F:{\"data-framer-name\":\"Home\"},WyieQrmcL:{\"data-framer-name\":\"Mobile - About\"},zgzs9JvKU:{\"data-framer-name\":\"Mobile - Newsletter\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qimdnr\",\"data-border\":true,\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"kT1_9JYtw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(36, 36, 36)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kgiivh\",\"data-framer-name\":\"home\",layoutDependency:layoutDependency,layoutId:\"ju_YpXv_R\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utxq4d-container\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"tXEDnxkvy-container\",name:\"link\",children:/*#__PURE__*/_jsx(Link,{A1y5pRvgP:A1y5pRvgP80g8eg,GaUH4JMGk:\"Home\",gUNbhjgYQ:\"rgb(136, 136, 136)\",height:\"100%\",id:\"tXEDnxkvy\",layoutId:\"tXEDnxkvy\",m1QKAHinc:false,name:\"link\",S4DnyRRh2:resolveLink({webPageId:\"AWw6JrEV1\"},router),variant:\"H0hBBqNCl\",width:\"100%\",...addPropertyOverrides({dD6PgfToG:{variant:\"LiYHsxdDb\"},Dfm2XiGOV:{A1y5pRvgP:A1y5pRvgP1597a3i,variant:\"LiYHsxdDb\"},i6ZoRivl9:{variant:\"LiYHsxdDb\"},IbPidc4Ll:{A1y5pRvgP:A1y5pRvgP1597a3i},IeAvckZS6:{A1y5pRvgP:A1y5pRvgP1597a3i,variant:\"LiYHsxdDb\"},iest8qzXa:{variant:\"LiYHsxdDb\"},sjJrowx7t:{A1y5pRvgP:A1y5pRvgP1597a3i,variant:\"LiYHsxdDb\"},SwFKktt9m:{variant:\"LiYHsxdDb\"},uINpcqJFw:{variant:\"LiYHsxdDb\"},WyieQrmcL:{A1y5pRvgP:A1y5pRvgP1597a3i,variant:\"LiYHsxdDb\"},zgzs9JvKU:{A1y5pRvgP:A1y5pRvgP1597a3i,variant:\"LiYHsxdDb\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1do3b0w\",\"data-framer-name\":\"light\",layoutDependency:layoutDependency,layoutId:\"OfbNBW3Ch\",style:{backgroundColor:\"rgba(255, 255, 255, 0.06)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:.5},variants:{dD6PgfToG:{opacity:1},i6ZoRivl9:{opacity:1},IeAvckZS6:{opacity:1},iest8qzXa:{opacity:1},sjJrowx7t:{opacity:1},uINpcqJFw:{opacity:1},WyieQrmcL:{opacity:1},zgzs9JvKU:{opacity:1}},children:Kcp1Qj0hJ&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yg7fyd\",\"data-framer-name\":\"light\",layoutDependency:layoutDependency,layoutId:\"Bnj9ykC50\",style:{backgroundColor:\"rgb(255, 255, 255)\",filter:\"blur(10px)\",opacity:.15,WebkitFilter:\"blur(10px)\"}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hblyim\",\"data-framer-name\":\"shop\",layoutDependency:layoutDependency,layoutId:\"Tbc8XT7r_\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0e624-container\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"Ehrjc2cCE-container\",name:\"link\",children:/*#__PURE__*/_jsx(Link,{GaUH4JMGk:\"Shop\",gUNbhjgYQ:\"rgb(136, 136, 136)\",height:\"100%\",id:\"Ehrjc2cCE\",layoutId:\"Ehrjc2cCE\",m1QKAHinc:false,name:\"link\",S4DnyRRh2:resolveLink({webPageId:\"LBNxGHfWT\"},router),variant:\"LiYHsxdDb\",width:\"100%\",...addPropertyOverrides({sjJrowx7t:{variant:\"H0hBBqNCl\"},uINpcqJFw:{variant:\"H0hBBqNCl\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-puv17w\",\"data-framer-name\":\"Media\",layoutDependency:layoutDependency,layoutId:\"PGcXb8vNC\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3wjvaj-container\",\"data-framer-name\":\"Media\",layoutDependency:layoutDependency,layoutId:\"sHh4uUfr2-container\",name:\"Media\",children:/*#__PURE__*/_jsx(Link,{GaUH4JMGk:\"Media\",gUNbhjgYQ:\"rgb(136, 136, 136)\",height:\"100%\",id:\"sHh4uUfr2\",layoutId:\"sHh4uUfr2\",m1QKAHinc:false,name:\"Media\",S4DnyRRh2:resolveLink({webPageId:\"iVlCVsDkM\"},router),variant:\"LiYHsxdDb\",width:\"100%\",...addPropertyOverrides({dD6PgfToG:{variant:\"H0hBBqNCl\"},IeAvckZS6:{variant:\"H0hBBqNCl\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o13fk9\",\"data-framer-name\":\"about\",layoutDependency:layoutDependency,layoutId:\"FJ54kCS25\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uosjvf-container\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"lOuuxMzxO-container\",name:\"link\",children:/*#__PURE__*/_jsx(Link,{GaUH4JMGk:\"Newsletter\",gUNbhjgYQ:\"rgb(136, 136, 136)\",height:\"100%\",id:\"lOuuxMzxO\",layoutId:\"lOuuxMzxO\",m1QKAHinc:false,name:\"link\",S4DnyRRh2:resolveLink({webPageId:\"Y47rPH7U8\"},router),variant:\"LiYHsxdDb\",width:\"100%\",...addPropertyOverrides({i6ZoRivl9:{variant:\"H0hBBqNCl\"},iest8qzXa:{variant:\"H0hBBqNCl\"},WyieQrmcL:{variant:\"H0hBBqNCl\"},zgzs9JvKU:{variant:\"H0hBBqNCl\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hccsc1\",\"data-framer-name\":\"about\",layoutDependency:layoutDependency,layoutId:\"Xky4_Ukxu\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-51jzx2-container\",\"data-framer-name\":\"link\",layoutDependency:layoutDependency,layoutId:\"o876t_q53-container\",name:\"link\",children:/*#__PURE__*/_jsx(Link,{GaUH4JMGk:\"About\",gUNbhjgYQ:\"rgb(136, 136, 136)\",height:\"100%\",id:\"o876t_q53\",layoutId:\"o876t_q53\",m1QKAHinc:false,name:\"link\",S4DnyRRh2:resolveLink({webPageId:\"fyxHY82ZH\"},router),variant:\"LiYHsxdDb\",width:\"100%\",...addPropertyOverrides({i6ZoRivl9:{variant:\"H0hBBqNCl\"},iest8qzXa:{variant:\"H0hBBqNCl\"},WyieQrmcL:{variant:\"H0hBBqNCl\"},zgzs9JvKU:{variant:\"H0hBBqNCl\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6zakvm\",\"data-framer-name\":\"line-up\",layoutDependency:layoutDependency,layoutId:\"nfsV__JAw\",style:{background:\"radial-gradient(50% 50% at 50% 50%, #fafafa 0%, #242424 100%)\",opacity:.2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1695y4a\",\"data-framer-name\":\"line-down\",layoutDependency:layoutDependency,layoutId:\"YuNtGxalP\",style:{background:\"radial-gradient(50% 50% at 50% 50%, #fafafa 0%, #242424 100%)\",opacity:.2}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ke43rt\",\"data-framer-name\":\"bg-blug\",layoutDependency:layoutDependency,layoutId:\"OWpA8AhY1\",style:{backdropFilter:\"blur(40px)\",backgroundColor:\"rgba(19, 21, 21, 0.7)\",WebkitBackdropFilter:\"blur(40px)\"}})]})})});});const css=['.framer-qk1cY[data-border=\"true\"]::after, .framer-qk1cY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qk1cY.framer-rxxv3o, .framer-qk1cY .framer-rxxv3o { display: block; }\",\".framer-qk1cY.framer-yz7x8r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 441px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qk1cY .framer-qimdnr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-qk1cY .framer-kgiivh, .framer-qk1cY .framer-hblyim, .framer-qk1cY .framer-puv17w, .framer-qk1cY .framer-o13fk9, .framer-qk1cY .framer-hccsc1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: min-content; z-index: 2; }\",\".framer-qk1cY .framer-1utxq4d-container, .framer-qk1cY .framer-1q0e624-container, .framer-qk1cY .framer-3wjvaj-container, .framer-qk1cY .framer-uosjvf-container, .framer-qk1cY .framer-51jzx2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-qk1cY .framer-1do3b0w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; left: 5px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: calc(50.00000000000002% - 36px / 2); width: 77px; z-index: 1; }\",\".framer-qk1cY .framer-1yg7fyd { bottom: -5px; flex: none; height: 9px; left: -1px; overflow: hidden; position: absolute; right: -1px; z-index: 0; }\",\".framer-qk1cY .framer-6zakvm { flex: none; height: 1px; overflow: hidden; position: absolute; right: 28px; top: 0px; width: 172px; z-index: 1; }\",\".framer-qk1cY .framer-1695y4a { bottom: 0px; flex: none; height: 1px; left: 20px; overflow: hidden; position: absolute; width: 62px; z-index: 1; }\",\".framer-qk1cY .framer-ke43rt { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: -5px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qk1cY.framer-yz7x8r, .framer-qk1cY .framer-qimdnr, .framer-qk1cY .framer-kgiivh, .framer-qk1cY .framer-1do3b0w, .framer-qk1cY .framer-hblyim, .framer-qk1cY .framer-puv17w, .framer-qk1cY .framer-o13fk9, .framer-qk1cY .framer-hccsc1 { gap: 0px; } .framer-qk1cY.framer-yz7x8r > *, .framer-qk1cY .framer-kgiivh > *, .framer-qk1cY .framer-1do3b0w > *, .framer-qk1cY .framer-hblyim > *, .framer-qk1cY .framer-puv17w > *, .framer-qk1cY .framer-o13fk9 > *, .framer-qk1cY .framer-hccsc1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qk1cY.framer-yz7x8r > :first-child, .framer-qk1cY .framer-qimdnr > :first-child, .framer-qk1cY .framer-kgiivh > :first-child, .framer-qk1cY .framer-1do3b0w > :first-child, .framer-qk1cY .framer-hblyim > :first-child, .framer-qk1cY .framer-puv17w > :first-child, .framer-qk1cY .framer-o13fk9 > :first-child, .framer-qk1cY .framer-hccsc1 > :first-child { margin-left: 0px; } .framer-qk1cY.framer-yz7x8r > :last-child, .framer-qk1cY .framer-qimdnr > :last-child, .framer-qk1cY .framer-kgiivh > :last-child, .framer-qk1cY .framer-1do3b0w > :last-child, .framer-qk1cY .framer-hblyim > :last-child, .framer-qk1cY .framer-puv17w > :last-child, .framer-qk1cY .framer-o13fk9 > :last-child, .framer-qk1cY .framer-hccsc1 > :last-child { margin-right: 0px; } .framer-qk1cY .framer-qimdnr > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-qk1cY.framer-v-12m1ya4 .framer-1do3b0w { left: 84px; width: 74px; z-index: 0; }\",\".framer-qk1cY.framer-v-12m1ya4 .framer-1695y4a { left: 90px; }\",\".framer-qk1cY.framer-v-vz97rz .framer-1do3b0w { left: unset; right: 200px; width: 80px; z-index: 0; }\",\".framer-qk1cY.framer-v-vz97rz .framer-1695y4a { left: 170px; }\",\".framer-qk1cY.framer-v-1xjqm8p .framer-1do3b0w { left: unset; right: 5px; width: 78px; z-index: 0; }\",\".framer-qk1cY.framer-v-1xjqm8p .framer-1695y4a, .framer-qk1cY.framer-v-4gmqfx .framer-1695y4a { left: unset; right: 12px; }\",\".framer-qk1cY.framer-v-1ka8ae4 .framer-1695y4a, .framer-qk1cY.framer-v-pjka2p .framer-1695y4a { left: unset; right: 170px; width: 107px; }\",\".framer-qk1cY.framer-v-hmcv2o .framer-1do3b0w { left: unset; right: 85px; width: 113px; z-index: 0; }\",\".framer-qk1cY.framer-v-hmcv2o .framer-1695y4a { left: unset; right: 85px; width: 113px; }\",\".framer-qk1cY.framer-v-1uo981t.framer-yz7x8r, .framer-qk1cY.framer-v-1nhn5gm.framer-yz7x8r, .framer-qk1cY.framer-v-olud3y.framer-yz7x8r, .framer-qk1cY.framer-v-1mgncfk.framer-yz7x8r, .framer-qk1cY.framer-v-4gmqfx.framer-yz7x8r, .framer-qk1cY.framer-v-pjka2p.framer-yz7x8r { width: 340px; }\",\".framer-qk1cY.framer-v-1uo981t .framer-kgiivh, .framer-qk1cY.framer-v-1uo981t .framer-hblyim, .framer-qk1cY.framer-v-1uo981t .framer-puv17w, .framer-qk1cY.framer-v-1uo981t .framer-o13fk9, .framer-qk1cY.framer-v-1uo981t .framer-hccsc1, .framer-qk1cY.framer-v-1nhn5gm .framer-kgiivh, .framer-qk1cY.framer-v-1nhn5gm .framer-hblyim, .framer-qk1cY.framer-v-1nhn5gm .framer-puv17w, .framer-qk1cY.framer-v-1nhn5gm .framer-o13fk9, .framer-qk1cY.framer-v-1nhn5gm .framer-hccsc1, .framer-qk1cY.framer-v-olud3y .framer-kgiivh, .framer-qk1cY.framer-v-olud3y .framer-hblyim, .framer-qk1cY.framer-v-olud3y .framer-puv17w, .framer-qk1cY.framer-v-olud3y .framer-o13fk9, .framer-qk1cY.framer-v-olud3y .framer-hccsc1, .framer-qk1cY.framer-v-1mgncfk .framer-kgiivh, .framer-qk1cY.framer-v-1mgncfk .framer-hblyim, .framer-qk1cY.framer-v-1mgncfk .framer-puv17w, .framer-qk1cY.framer-v-1mgncfk .framer-o13fk9, .framer-qk1cY.framer-v-1mgncfk .framer-hccsc1, .framer-qk1cY.framer-v-4gmqfx .framer-kgiivh, .framer-qk1cY.framer-v-4gmqfx .framer-hblyim, .framer-qk1cY.framer-v-4gmqfx .framer-puv17w, .framer-qk1cY.framer-v-4gmqfx .framer-o13fk9, .framer-qk1cY.framer-v-4gmqfx .framer-hccsc1, .framer-qk1cY.framer-v-pjka2p .framer-kgiivh, .framer-qk1cY.framer-v-pjka2p .framer-hblyim, .framer-qk1cY.framer-v-pjka2p .framer-puv17w, .framer-qk1cY.framer-v-pjka2p .framer-o13fk9, .framer-qk1cY.framer-v-pjka2p .framer-hccsc1 { padding: 0px 10px 0px 10px; }\",\".framer-qk1cY.framer-v-1uo981t .framer-1do3b0w { left: 4px; width: 57px; }\",\".framer-qk1cY.framer-v-1uo981t .framer-1yg7fyd { left: 0px; }\",\".framer-qk1cY.framer-v-1nhn5gm .framer-1do3b0w { left: 64px; width: 55px; z-index: 0; }\",\".framer-qk1cY.framer-v-1nhn5gm .framer-1695y4a { left: 64px; width: 54px; }\",\".framer-qk1cY.framer-v-olud3y .framer-1do3b0w { left: unset; right: 159px; width: 61px; z-index: 0; }\",\".framer-qk1cY.framer-v-olud3y .framer-1695y4a { left: 120px; width: 61px; }\",\".framer-qk1cY.framer-v-1mgncfk .framer-1do3b0w { left: unset; right: 66px; width: 91px; z-index: 0; }\",\".framer-qk1cY.framer-v-1mgncfk .framer-1695y4a { left: unset; right: 66px; width: 91px; }\",\".framer-qk1cY.framer-v-4gmqfx .framer-1do3b0w { left: unset; right: 5px; width: 57px; z-index: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 441\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uINpcqJFw\":{\"layout\":[\"fixed\",\"fixed\"]},\"dD6PgfToG\":{\"layout\":[\"fixed\",\"fixed\"]},\"i6ZoRivl9\":{\"layout\":[\"fixed\",\"fixed\"]},\"SwFKktt9m\":{\"layout\":[\"fixed\",\"fixed\"]},\"iest8qzXa\":{\"layout\":[\"fixed\",\"fixed\"]},\"WMKwFOq5F\":{\"layout\":[\"fixed\",\"fixed\"]},\"IbPidc4Ll\":{\"layout\":[\"fixed\",\"fixed\"]},\"sjJrowx7t\":{\"layout\":[\"fixed\",\"fixed\"]},\"IeAvckZS6\":{\"layout\":[\"fixed\",\"fixed\"]},\"zgzs9JvKU\":{\"layout\":[\"fixed\",\"fixed\"]},\"WyieQrmcL\":{\"layout\":[\"fixed\",\"fixed\"]},\"Dfm2XiGOV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Kcp1Qj0hJ\":\"disableForMobile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerNF16u01wB=withCSS(Component,css,\"framer-qk1cY\");export default FramerNF16u01wB;FramerNF16u01wB.displayName=\"nav-flashlight\";FramerNF16u01wB.defaultProps={height:44,width:441};addPropertyControls(FramerNF16u01wB,{variant:{options:[\"kh5Mxhi07\",\"uINpcqJFw\",\"dD6PgfToG\",\"i6ZoRivl9\",\"SwFKktt9m\",\"iest8qzXa\",\"WMKwFOq5F\",\"IbPidc4Ll\",\"sjJrowx7t\",\"IeAvckZS6\",\"zgzs9JvKU\",\"WyieQrmcL\",\"Dfm2XiGOV\"],optionTitles:[\"X\",\"Shop\",\"Media\",\"About\",\"404\",\"Newsletter\",\"Home\",\"Mobile - Home\",\"Mobile - Shop\",\"Mobile - Media\",\"Mobile - Newsletter\",\"Mobile - About\",\"Mobile - 404\"],title:\"Variant\",type:ControlType.Enum},Kcp1Qj0hJ:{defaultValue:true,title:\"Disable for Mobile\",type:ControlType.Boolean}});addFonts(FramerNF16u01wB,[...LinkFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNF16u01wB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"44\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uINpcqJFw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dD6PgfToG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i6ZoRivl9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SwFKktt9m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iest8qzXa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WMKwFOq5F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IbPidc4Ll\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sjJrowx7t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IeAvckZS6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zgzs9JvKU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WyieQrmcL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Dfm2XiGOV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"441\",\"framerVariables\":\"{\\\"Kcp1Qj0hJ\\\":\\\"disableForMobile\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e1877f1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={LiYHsxdDb:{hover:true,pressed:true}};const cycleOrder=[\"LiYHsxdDb\",\"f7LJfR48_\",\"H0hBBqNCl\",\"IS0UxuaiR\"];const serializationHash=\"framer-6gIc6\";const variantClassNames={f7LJfR48_:\"framer-v-111xs0e\",H0hBBqNCl:\"framer-v-1j8g21v\",IS0UxuaiR:\"framer-v-gm1286\",LiYHsxdDb:\"framer-v-1swwvop\"};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:41,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition3={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(React.Fragment);const humanReadableVariantMap={\"active - glow\":\"H0hBBqNCl\",\"Variant 4\":\"IS0UxuaiR\",active:\"f7LJfR48_\",initial:\"LiYHsxdDb\"};const getProps=({color,height,id,media,media1,newTab,tap,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,A1y5pRvgP:tap!==null&&tap!==void 0?tap:props.A1y5pRvgP,GaUH4JMGk:(_ref=media!==null&&media!==void 0?media:props.GaUH4JMGk)!==null&&_ref!==void 0?_ref:\"Media\",gUNbhjgYQ:(_ref1=color!==null&&color!==void 0?color:props.gUNbhjgYQ)!==null&&_ref1!==void 0?_ref1:\"rgb(136, 136, 136)\",m1QKAHinc:newTab!==null&&newTab!==void 0?newTab:props.m1QKAHinc,S4DnyRRh2:media1!==null&&media1!==void 0?media1:props.S4DnyRRh2,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"LiYHsxdDb\"};};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,GaUH4JMGk,S4DnyRRh2,A1y5pRvgP,m1QKAHinc,gUNbhjgYQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LiYHsxdDb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapx9a2pq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(A1y5pRvgP){const res=await A1y5pRvgP(...args);if(res===false)return false;}});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:transition1,...addPropertyOverrides({\"LiYHsxdDb-hover\":{value:transition3},H0hBBqNCl:{value:transition2},IS0UxuaiR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:S4DnyRRh2,openInNewTab:m1QKAHinc,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1swwvop\",className,classNames)} framer-xygvfs`,\"data-framer-name\":\"initial\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LiYHsxdDb\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapx9a2pq,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"LiYHsxdDb-hover\":{\"data-framer-name\":undefined},\"LiYHsxdDb-pressed\":{\"data-framer-name\":undefined},f7LJfR48_:{\"data-framer-name\":\"active\"},H0hBBqNCl:{\"data-framer-name\":\"active - glow\"},IS0UxuaiR:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gUNbhjgYQ-xBYhRokP1))\"},children:\"Link\"})}),className:\"framer-15mhfsd\",\"data-framer-name\":\"Media\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nFq1vgdP3\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-gUNbhjgYQ-xBYhRokP1)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-gUNbhjgYQ-xBYhRokP1\":gUNbhjgYQ},text:GaUH4JMGk,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6gIc6.framer-xygvfs, .framer-6gIc6 .framer-xygvfs { display: block; }\",\".framer-6gIc6.framer-1swwvop { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-6gIc6 .framer-15mhfsd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6gIc6.framer-1swwvop { gap: 0px; } .framer-6gIc6.framer-1swwvop > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6gIc6.framer-1swwvop > :first-child { margin-left: 0px; } .framer-6gIc6.framer-1swwvop > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12\n * @framerIntrinsicWidth 29\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"f7LJfR48_\":{\"layout\":[\"auto\",\"auto\"]},\"H0hBBqNCl\":{\"layout\":[\"auto\",\"auto\"]},\"IS0UxuaiR\":{\"layout\":[\"auto\",\"auto\"]},\"h3vY4Wvhk\":{\"layout\":[\"auto\",\"auto\"]},\"q6vsv7xTq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GaUH4JMGk\":\"media\",\"S4DnyRRh2\":\"media1\",\"A1y5pRvgP\":\"tap\",\"m1QKAHinc\":\"newTab\",\"gUNbhjgYQ\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxBYhRokP1=withCSS(Component,css,\"framer-6gIc6\");export default FramerxBYhRokP1;FramerxBYhRokP1.displayName=\"link\";FramerxBYhRokP1.defaultProps={height:12,width:29};addPropertyControls(FramerxBYhRokP1,{variant:{options:[\"LiYHsxdDb\",\"f7LJfR48_\",\"H0hBBqNCl\",\"IS0UxuaiR\"],optionTitles:[\"initial\",\"active\",\"active - glow\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},GaUH4JMGk:{defaultValue:\"Media\",displayTextArea:true,placeholder:\"\",title:\"Media\",type:ControlType.String},S4DnyRRh2:{title:\"Media\",type:ControlType.Link},A1y5pRvgP:{title:\"Tap\",type:ControlType.EventHandler},m1QKAHinc:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},gUNbhjgYQ:{defaultValue:\"rgb(136, 136, 136)\",title:\"Color\",type:ControlType.Color}});addFonts(FramerxBYhRokP1,[{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-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxBYhRokP1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"29\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f7LJfR48_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"H0hBBqNCl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IS0UxuaiR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h3vY4Wvhk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"q6vsv7xTq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"GaUH4JMGk\\\":\\\"media\\\",\\\"S4DnyRRh2\\\":\\\"media1\\\",\\\"A1y5pRvgP\\\":\\\"tap\\\",\\\"m1QKAHinc\\\":\\\"newTab\\\",\\\"gUNbhjgYQ\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"12\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xBYhRokP1.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-regular\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/ZAJ12zsrc:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",weight:\"400\"}];export const css=['.framer-3KcaV .framer-styles-preset-1nhn17v:not(.rich-text-wrapper), .framer-3KcaV .framer-styles-preset-1nhn17v.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #bcbcbc; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1399px) and (min-width: 810px) { .framer-3KcaV .framer-styles-preset-1nhn17v:not(.rich-text-wrapper), .framer-3KcaV .framer-styles-preset-1nhn17v.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #bcbcbc; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-3KcaV .framer-styles-preset-1nhn17v:not(.rich-text-wrapper), .framer-3KcaV .framer-styles-preset-1nhn17v.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #bcbcbc; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-3KcaV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "ref", "domain", "parameters", "isExternalURL", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "validateForm", "te", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "formBody", "data", "entries", "data1", "entries1", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useConstant", "init", "ref", "pe", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Clipboard", "label", "content", "fill", "color", "style", "onClick", "props", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "defaultEvents", "ClipboardFonts", "getFonts", "Clipboard", "FeatherFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "eMailAddress", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "QSDHkVwlW", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap10tln61", "args", "onAppearifsc3v", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "ComponentViewportProvider", "RichText2", "css", "FramerzJd7GPIOF", "withCSS", "zJd7GPIOF_default", "addPropertyControls", "ControlType", "addFonts", "LemonSqueezy", "props", "styleOptions", "hoverOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingValue", "useConditionalScript", "p", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "condition", "url", "id", "ue", "script", "ref", "window", "fontControlStyles", "fontStore", "fonts", "css", "className", "MailToClipboardFonts", "getFonts", "zJd7GPIOF_default", "InputFonts", "Input_default", "FeatherFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "LemonSqueezyFonts", "LemonSqueezy", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "sm8KSlOF8", "N1ESpXxRT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmittxyyif", "overlay", "loadMore", "args", "onClick14rsoec", "scopingClassNames", "cx", "ref1", "pe", "ref2", "ref3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "l", "AnimatePresence", "Floating", "css", "FramerJ1InrHUYC", "withCSS", "J1InrHUYC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NF16u01wB_exports", "__export", "__FramerMetadata__", "NF16u01wB_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "media", "media1", "newTab", "tap", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GaUH4JMGk", "S4DnyRRh2", "A1y5pRvgP", "m1QKAHinc", "gUNbhjgYQ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapx9a2pq", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerxBYhRokP1", "withCSS", "xBYhRokP1_default", "addPropertyControls", "ControlType", "addFonts", "LinkFonts", "getFonts", "xBYhRokP1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "disableForMobile", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Kcp1Qj0hJ", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "A1y5pRvgP80g8eg", "args", "A1y5pRvgP1597a3i", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "resolveLink", "css", "FramerNF16u01wB", "withCSS", "NF16u01wB_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "fontStore", "fonts", "css", "className"]
}
