{"version":3,"file":"QoJPAusiU.2wUzpb9r.mjs","names":["Input","email","addPropertyOverrides","Phosphor","Input","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","ElementsTag","UtilityMailingList","className","css"],"sources":["https:/framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js","https:/framerusercontent.com/modules/FB2IjiwdSV6hG33RSOq4/JuB3YvK3TQrQ79cRfbVK/Ij47Y4lZz.js","https:/framerusercontent.com/modules/NDDvu4eXFxJfVcv1uLLG/wipnC0gXw4sAfiVgwZ6I/QoJPAusiU.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 _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;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,loopsUserGroup,loopsMailingList,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,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(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};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’s 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 emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const mailingListBody=`mailingLists=${encodeURIComponent(loopsMailingList)}`;const hasMailingList=!!loopsMailingList&&loopsMailingList!==\" \";const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";let formBody=emailBody;if(hasUserGroup){formBody+=`&${userGroupBody}`;}if(hasMailingList){formBody+=`&${mailingListBody}`;}fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",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://api.formspark.io/${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 formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).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===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).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,convertkitFormID,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}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__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},\"data-1p-ignore\":true}),!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,\nfontSize: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\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],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\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},loopsMailingList:{title:\"Mailing List\",type:ControlType.String,placeholder:\"cm3q41c5v02ii1lml14om2wtr\",optional:true,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\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},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\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map","// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/q6QHBkUymdktnMQmdwdO/Input.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const InputFonts=getFonts(Input);const cycleOrder=[\"RcNd84ix8\",\"VQZVbCXpI\",\"U3oXCRddM\"];const serializationHash=\"framer-effoj\";const variantClassNames={RcNd84ix8:\"framer-v-leif53\",U3oXCRddM:\"framer-v-1gba092\",VQZVbCXpI:\"framer-v-1iy90s2\"};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 transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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={Clicked:\"VQZVbCXpI\",Default:\"RcNd84ix8\",Submitted:\"U3oXCRddM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RcNd84ix8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RcNd84ix8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1i6v8fn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"VQZVbCXpI\");});const onMouseLeavef963o=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"RcNd84ix8\");});const onAppear456fu1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RcNd84ix8\"),3500);});const onSubmit1o89of4=activeVariantCallback(async(...args)=>{setVariant(\"U3oXCRddM\");});useOnVariantChange(baseVariant,{U3oXCRddM:onAppear456fu1});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();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-leif53\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RcNd84ix8\",onTap:onTap1i6v8fn,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({U3oXCRddM:{\"data-framer-name\":\"Submitted\",onTap:undefined},VQZVbCXpI:{\"data-framer-name\":\"Clicked\",onMouseLeave:onMouseLeavef963o}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lwg30t\",\"data-border\":true,\"data-framer-name\":\"Success Message\",layoutDependency:layoutDependency,layoutId:\"G_nbq20HB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e02c5fab-1558-4a4e-b17e-e153373c8154, rgb(67, 67, 71))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fefa6445-6194-43b0-aadc-320bf3dfcb7c, rgb(26, 26, 26))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:0},transformTemplate:transformTemplate1,variants:{U3oXCRddM:{opacity:1}},...addPropertyOverrides({U3oXCRddM:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e9bijr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o0idvtAUN-container\",nodeId:\"o0idvtAUN\",rendersWithMotion:true,scopeId:\"Ij47Y4lZz\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c9303a75-c2ef-4aa9-a59b-08d37f8ca413, rgb(255, 201, 54))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"o0idvtAUN\",layoutId:\"o0idvtAUN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({U3oXCRddM:{color:\"var(--token-474630ca-27de-41d6-8919-a13faeafa428, rgb(26, 202, 255))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-60669972-e8ae-4c58-ae97-0b57b64a0457, rgb(255, 255, 255)))\"},children:\"You've been subscribed!\"})}),className:\"framer-j3hk06\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mpshsBGHV\",style:{\"--extracted-r6o4lv\":\"var(--token-60669972-e8ae-4c58-ae97-0b57b64a0457, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GB4t4bLlH\"},implicitPathVariables:undefined},{href:{webPageId:\"GB4t4bLlH\"},implicitPathVariables:undefined},{href:{webPageId:\"GB4t4bLlH\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v3tkq4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mM6T7tu6w-container\",nodeId:\"mM6T7tu6w\",rendersWithMotion:true,scopeId:\"Ij47Y4lZz\",style:{opacity:1},variants:{U3oXCRddM:{opacity:.5}},children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:16,buttonPaddingBottom:16,buttonPaddingLeft:16,buttonPaddingPerSide:false,buttonPaddingRight:16,buttonPaddingTop:16,color:\"var(--token-94bfd043-e269-423a-ad55-5f849343e44c, rgb(0, 0, 0))\",fill:\"var(--token-474630ca-27de-41d6-8919-a13faeafa428, rgb(26, 202, 255))\",insetWhenDocked:0,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:132},convertkitAPI:\"\",convertkitFormID:\"\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},formsparkID:\"\",gap:8,getwaitlistAPI:\"\",height:\"100%\",id:\"mM6T7tu6w\",input:{borderObject:{borderColor:\"rgba(255, 255, 255, 0.2)\",borderWidth:1},borderRadius:8,color:\"var(--token-aa92660f-4f1b-4de6-8181-c2faa096ff6a, rgb(255, 255, 255))\",fill:\"rgba(0, 0, 0, 0.1)\",fixedHeight:50,focusObject:{focusColor:\"rgb(255, 255, 255)\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholder:\"Email Address\",placeholderColor:\"rgba(255, 255, 255, 0.5)\"},layout:\"horizontal\",layoutId:\"mM6T7tu6w\",link:resolvedLinks[0],loopsID:\"\",loopsMailingList:\"\",loopsUserGroup:\"\",mailchimpURL:\"https://medinnovationexchange.us16.list-manage.com/subscribe/post?u=6e967cc1f3b1c3a4b9956b046&amp;id=cbab997b90&amp;f_id=003a34e0f0\",onSubmit:onSubmit1o89of4,redirectAs:\"link\",service:\"mailchimp\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({U3oXCRddM:{link:resolvedLinks[2]},VQZVbCXpI:{input:{borderObject:{borderColor:\"rgba(255, 255, 255, 0.52)\",borderWidth:1},borderRadius:8,color:\"var(--token-aa92660f-4f1b-4de6-8181-c2faa096ff6a, rgb(255, 255, 255))\",fill:\"rgba(0, 0, 0, 0.1)\",fixedHeight:50,focusObject:{focusColor:\"rgb(255, 255, 255)\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholder:\"Email Address\",placeholderColor:\"rgba(255, 255, 255, 0.5)\"},link:resolvedLinks[1],onSubmit:undefined}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-effoj.framer-elqbgr, .framer-effoj .framer-elqbgr { display: block; }\",\".framer-effoj.framer-leif53 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 500px; }\",\".framer-effoj .framer-lwg30t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 90px; overflow: visible; padding: 8px; position: absolute; top: 50%; width: min-content; }\",\".framer-effoj .framer-1e9bijr-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-effoj .framer-j3hk06 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-effoj .framer-v3tkq4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-effoj.framer-v-1gba092.framer-leif53 { cursor: unset; }\",\".framer-effoj.framer-v-1gba092 .framer-lwg30t { top: -48px; }\",'.framer-effoj[data-border=\"true\"]::after, .framer-effoj [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55.5\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VQZVbCXpI\":{\"layout\":[\"fixed\",\"auto\"]},\"U3oXCRddM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIj47Y4lZz=withCSS(Component,css,\"framer-effoj\");export default FramerIj47Y4lZz;FramerIj47Y4lZz.displayName=\"Utility / Mailing List\";FramerIj47Y4lZz.defaultProps={height:55.5,width:500};addPropertyControls(FramerIj47Y4lZz,{variant:{options:[\"RcNd84ix8\",\"VQZVbCXpI\",\"U3oXCRddM\"],optionTitles:[\"Default\",\"Clicked\",\"Submitted\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIj47Y4lZz,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PhosphorFonts,...InputFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIj47Y4lZz\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VQZVbCXpI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U3oXCRddM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"55.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"500\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ij47Y4lZz.map","// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jAMEbJoirw1blSLJlHDb/j5NR0JsMszdIRi6ljt8g/ATwI8I1iN.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/iieol05jmsjSKThdPZLx/VFQ2hYaGD598WFdOvm9P/hkchH4Gj0.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ihXCcei1NyZ6lha8fa11/XX5P8JA7tXgPdHLFtCSj/Th80sUvkW.js\";import UtilityMailingList from\"https://framerusercontent.com/modules/FB2IjiwdSV6hG33RSOq4/JuB3YvK3TQrQ79cRfbVK/Ij47Y4lZz.js\";import ElementsTag from\"https://framerusercontent.com/modules/ayaPUdWLunMtRa5Ns22q/mJlCwCAa7aMQWYULosCj/wT_Uzs87E.js\";const ElementsTagFonts=getFonts(ElementsTag);const UtilityMailingListFonts=getFonts(UtilityMailingList);const cycleOrder=[\"ZjdUtdn79\",\"E8dFmkJ25\",\"fq8uYkvRp\"];const serializationHash=\"framer-ztRW6\";const variantClassNames={E8dFmkJ25:\"framer-v-iayk7f\",fq8uYkvRp:\"framer-v-1xwavk2\",ZjdUtdn79:\"framer-v-cembpf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"ZjdUtdn79\",Home:\"fq8uYkvRp\",Mobile:\"E8dFmkJ25\"};const getProps=({dIScription,height,id,title,width,...props})=>{return{...props,RHlG12bGz:title??props.RHlG12bGz??\"Inside MIX: News, Wins & What’s Next\",UnVLOPjbL:dIScription??props.UnVLOPjbL??\"Stay in the loop with updates from Medical Innovation Exchange. From new partnerships to upcoming events — be the first to hear how we're accelerating MedTech innovation worldwide.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ZjdUtdn79\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,RHlG12bGz,UnVLOPjbL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZjdUtdn79\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"E8dFmkJ25\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"fq8uYkvRp\")return true;return false;};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-cembpf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ZjdUtdn79\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(25, 201, 255, 0.19)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-2d24fd46-da3b-4823-930b-300e32bd25b8, rgb(24, 28, 37))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{fq8uYkvRp:{\"--border-color\":\"rgba(255, 255, 255, 0.18)\"}},...addPropertyOverrides({E8dFmkJ25:{\"data-framer-name\":\"Mobile\"},fq8uYkvRp:{\"data-framer-name\":\"Home\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pfpir8\",\"data-framer-name\":\"Container Background\",layoutDependency:layoutDependency,layoutId:\"DOs75phCP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qas9er\",\"data-framer-name\":\"Background\",fill:\"black\",intrinsicHeight:466,intrinsicWidth:543,layoutDependency:layoutDependency,layoutId:\"X5ktQRmSh\",svg:'<svg width=\"543\" height=\"466\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".8\" filter=\"url(#a)\"><path d=\"M289.333 385.002 80 199.224V85.891h172.444l126.667 299.111h-89.778Z\" fill=\"url(#b)\"/></g><g opacity=\".8\" filter=\"url(#c)\"><path d=\"M364.435 385.444 219.109 80.554h243.556v304.89h-98.23Z\" fill=\"url(#d)\"/></g><defs><linearGradient id=\"b\" x1=\"277.333\" y1=\"196.557\" x2=\"154.667\" y2=\"319.224\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#D741FF\"/><stop offset=\"1\" stop-color=\"#655DF6\"/></linearGradient><linearGradient id=\"d\" x1=\"303.554\" y1=\"242.777\" x2=\"437.185\" y2=\"123.396\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FE5954\"/><stop offset=\"1\" stop-color=\"#FCD6C9\"/></linearGradient><filter id=\"a\" x=\"0\" y=\"5.891\" width=\"459.109\" height=\"459.109\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_8771_3624\"/></filter><filter id=\"c\" x=\"139.109\" y=\".555\" width=\"403.555\" height=\"464.891\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_8771_3624\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f5sjtn\",\"data-framer-name\":\"Container Background\",layoutDependency:layoutDependency,layoutId:\"XwPkAXemJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yi3jno\",\"data-framer-name\":\"Background\",fill:\"black\",intrinsicHeight:466,intrinsicWidth:543,layoutDependency:layoutDependency,layoutId:\"XScsZ2lTi\",svg:'<svg width=\"543\" height=\"466\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".8\" filter=\"url(#a)\"><path d=\"M289.333 385.002 80 199.224V85.891h172.444l126.667 299.111h-89.778Z\" fill=\"url(#b)\"/></g><g opacity=\".8\" filter=\"url(#c)\"><path d=\"M364.435 385.444 219.109 80.554h243.556v304.89h-98.23Z\" fill=\"url(#d)\"/></g><defs><linearGradient id=\"b\" x1=\"277.333\" y1=\"196.557\" x2=\"154.667\" y2=\"319.224\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#D741FF\"/><stop offset=\"1\" stop-color=\"#655DF6\"/></linearGradient><linearGradient id=\"d\" x1=\"303.554\" y1=\"242.777\" x2=\"437.185\" y2=\"123.396\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FE5954\"/><stop offset=\"1\" stop-color=\"#FCD6C9\"/></linearGradient><filter id=\"a\" x=\"0\" y=\"5.891\" width=\"459.109\" height=\"459.109\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_8771_3624\"/></filter><filter id=\"c\" x=\"139.109\" y=\".555\" width=\"403.555\" height=\"464.891\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feGaussianBlur stdDeviation=\"40\" result=\"effect1_foregroundBlur_8771_3624\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dt7n2b\",layoutDependency:layoutDependency,layoutId:\"jpwZO7TxN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-5tchc3\",\"data-styles-preset\":\"ATwI8I1iN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Be notified of new masterclasses & courses as soon as they drop\"})}),className:\"framer-1pc1ydr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nv2OvBrXF\",text:RHlG12bGz,variants:{E8dFmkJ25:{\"--extracted-a0htzi\":\"var(--token-86597447-34c0-431a-ab85-e0ec4003f952, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E8dFmkJ25:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-86597447-34c0-431a-ab85-e0ec4003f952, rgb(255, 255, 255)))\"},children:\"Be notified of new masterclasses & courses as soon as they drop\"})}),fonts:[\"FS;Poppins-semibold\"]},fq8uYkvRp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-19kiz1q\",\"data-styles-preset\":\"hkchH4Gj0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Be notified of new masterclasses & courses as soon as they drop\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1mh1o7q\",\"data-styles-preset\":\"Th80sUvkW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Be notified of new masterclasses & courses as soon as they drop\"})}),className:\"framer-oud10m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TR76uKudS\",style:{opacity:.8},text:UnVLOPjbL,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({fq8uYkvRp:{height:38,y:(componentViewport?.y||0)+80+(((componentViewport?.height||390)-160-305.8)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1683eik-container\",layoutDependency:layoutDependency,layoutId:\"KhyBo02ZQ-container\",nodeId:\"KhyBo02ZQ\",rendersWithMotion:true,scopeId:\"QoJPAusiU\",children:/*#__PURE__*/_jsx(ElementsTag,{height:\"100%\",id:\"KhyBo02ZQ\",layoutId:\"KhyBo02ZQ\",o8r40RqW4:\"Newsletter\",variant:\"JEVjag8IQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`min(${componentViewport?.width||\"100vw\"} - 64px, 524px)`,y:(componentViewport?.y||0)+56+(((componentViewport?.height||282)-112-246.2)/2+175.2+16),...addPropertyOverrides({E8dFmkJ25:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 524px)`,y:(componentViewport?.y||0)+56+(((componentViewport?.height||327.5)-112-240.6)/2+169.6+16)},fq8uYkvRp:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 700px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||390)-160-305.8)/2+218.8+32)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jb0pzh-container\",layoutDependency:layoutDependency,layoutId:\"ofnjv94UG-container\",nodeId:\"ofnjv94UG\",rendersWithMotion:true,scopeId:\"QoJPAusiU\",children:/*#__PURE__*/_jsx(UtilityMailingList,{height:\"100%\",id:\"ofnjv94UG\",layoutId:\"ofnjv94UG\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RcNd84ix8\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ztRW6.framer-4uy44e, .framer-ztRW6 .framer-4uy44e { display: block; }\",\".framer-ztRW6.framer-cembpf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 56px 32px 56px 32px; position: relative; width: 850px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ztRW6 .framer-pfpir8 { bottom: -154px; flex: none; overflow: hidden; position: absolute; right: -405px; top: -50px; width: 544px; z-index: 0; }\",\".framer-ztRW6 .framer-1qas9er, .framer-ztRW6 .framer-1yi3jno { aspect-ratio: 1.1652360515021458 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 288px); left: 1px; position: absolute; width: 336px; z-index: 0; }\",\".framer-ztRW6 .framer-f5sjtn { flex: none; height: 466px; left: -149px; overflow: hidden; position: absolute; right: -75px; top: -335px; z-index: 0; }\",\".framer-ztRW6 .framer-dt7n2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ztRW6 .framer-1pc1ydr { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 524px; position: relative; width: 100%; }\",\".framer-ztRW6 .framer-oud10m { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 900px; position: relative; width: 100%; }\",\".framer-ztRW6 .framer-1683eik-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ztRW6 .framer-jb0pzh-container { flex: none; height: auto; max-width: 524px; position: relative; width: 100%; }\",\".framer-ztRW6.framer-v-iayk7f.framer-cembpf { padding: 56px 16px 56px 16px; width: 450px; }\",\".framer-ztRW6.framer-v-iayk7f .framer-1pc1ydr { --framer-text-wrap: balance; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-ztRW6.framer-v-1xwavk2.framer-cembpf { padding: 80px 32px 80px 32px; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-pfpir8 { order: 0; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-f5sjtn { order: 1; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-dt7n2b { order: 3; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-1pc1ydr { max-width: unset; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-1683eik-container { order: 2; }\",\".framer-ztRW6.framer-v-1xwavk2 .framer-jb0pzh-container { max-width: 700px; order: 4; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-ztRW6[data-border=\"true\"]::after, .framer-ztRW6 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 282\n * @framerIntrinsicWidth 850\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"E8dFmkJ25\":{\"layout\":[\"fixed\",\"auto\"]},\"fq8uYkvRp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RHlG12bGz\":\"title\",\"UnVLOPjbL\":\"dIScription\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQoJPAusiU=withCSS(Component,css,\"framer-ztRW6\");export default FramerQoJPAusiU;FramerQoJPAusiU.displayName=\"Utility/Newsletter\";FramerQoJPAusiU.defaultProps={height:282,width:850};addPropertyControls(FramerQoJPAusiU,{variant:{options:[\"ZjdUtdn79\",\"E8dFmkJ25\",\"fq8uYkvRp\"],optionTitles:[\"Default\",\"Mobile\",\"Home\"],title:\"Variant\",type:ControlType.Enum},RHlG12bGz:{defaultValue:\"Inside MIX: News, Wins & What’s Next\",displayTextArea:true,title:\"Title\",type:ControlType.String},UnVLOPjbL:{defaultValue:\"Stay in the loop with updates from Medical Innovation Exchange. From new partnerships to upcoming events — be the first to hear how we're accelerating MedTech innovation worldwide.\",displayTextArea:false,title:\"DIscription\",type:ControlType.String}});addFonts(FramerQoJPAusiU,[{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/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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...ElementsTagFonts,...UtilityMailingListFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQoJPAusiU\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"RHlG12bGz\\\":\\\"title\\\",\\\"UnVLOPjbL\\\":\\\"dIScription\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E8dFmkJ25\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fq8uYkvRp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"850\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"282\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QoJPAusiU.map"],"mappings":"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"}