{"version":3,"file":"wZfEIG0Ao.B3J1xmdR.mjs","names":["p","observer","__legacyOverrideHOC_DataObserverContext","__legacyOverrideHOC_DataObserverContext","className","css"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js","https:/framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js","https:/framerusercontent.com/modules/jN5AF5FNTkSugCLkzefZ/IQEfqrDJz0IFk0bfHn6K/Add_TimeZone_to_Form.js","https:/framerusercontent.com/modules/LuWE0Gb7bDjlvcnCPFk1/uhOwJlVqE0xvJ9waYWxn/Attributer.js","https:/framerusercontent.com/modules/7yNB5RXjq3XWlIZYs1wz/6lscsjxBU74j8nNEeIJ3/Forms_Work_Email_Validation.js","https:/framerusercontent.com/modules/gLYYMR9o5szCRuoIyodE/tH4QD3bqu0eC1sWNhy4F/wZfEIG0Ao.js"],"sourcesContent":["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef,useId}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                        [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                            display: none !important;\n                        }`}})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,parsePadding,fillProp,borderProp,shadowsProp,useInstanceId,HiddenInput}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function PhoneNumberInput(props){const{countryCodeOptions,border,shadows}=props;const id=useInstanceId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasCC=!!countryCodeOptions;const ccConnected=hasCC&&countryCodeOptions?.style!==\"split\";const phoneFormat=props.format==\"custom\"?props.customFormat==\"\"?\"XXXXXXXXXX\":props.customFormat:props.format;const countryCodeFormat=hasCC?countryCodeOptions.format==\"custom\"?countryCodeOptions.customFormat==\"\"?\"X\":countryCodeOptions.customFormat:countryCodeOptions.format:\"\";const maxDigits=countXCharacters(phoneFormat);const defaultCountryCode=String(countryCodeOptions?.defaultCountryCode)??\"1\";const[countryCode,setCountryCode]=useState(defaultCountryCode);const[phoneNumber,setPhoneNumber]=useState(\"\");const[countryCodeFocused,setCountryCodeFocused]=useState(false);const[phoneNumberFocused,setPhoneNumberFocused]=useState(false);const[invalid,setInvalid]=useState(false);const countryCodeInputRef=useRef(null);const phoneNumberInputRef=useRef(null);const[pt,pr,pb,pl]=parsePadding(props.padding);const[tl,tr,br,bl]=parsePadding(props.radius);const[bwt,bwr,bwb,bwl]=parsePadding(border?.width);useEffect(()=>{if(invalid){props.invalidEvent?.();}},[invalid]);const isComplete=phoneNumber.length===maxDigits;function onPhoneNumberChange(event){const unformatted=unformatValue(event.target.value).substring(0,maxDigits);const formattedValue=formatPhoneNumber(phoneNumber,phoneFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setPhoneNumber(unformatted.slice(0,-1));}else{setPhoneNumber(unformatted);}}function onCountryCodeChange(event){const unformatted=unformatValue(event.target.value).substring(0,3);const formattedValue=formatCountryCode(countryCode,countryCodeFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setCountryCode(unformatted.slice(0,-1));}else{setCountryCode(unformatted);}}function onCountryCodeFocus(){setCountryCodeFocused(true);if(invalid){setInvalid(false);}const lastChar=countryCodeFormat.slice(-1);if(lastChar!=\"X\"&&lastChar!=\"x\"){const countryCodeInput=countryCodeInputRef.current;if(countryCodeInput){const formattedValue=formatCountryCode(countryCode,countryCodeFormat);const cursorPosition=Math.max(countryCodeFormat.lastIndexOf(\"X\"),countryCodeFormat.lastIndexOf(\"x\"))+countryCode.length;setTimeout(()=>countryCodeInput.setSelectionRange(cursorPosition,cursorPosition),5);}}props.focusEvent?.();}function onPhoneNumberKeyDown(event){if(hasCC&&phoneNumber===\"\"){if(event.key===\"Backspace\"){countryCodeInputRef.current?.focus();}if(event.key===\"ArrowLeft\"){countryCodeInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeKeyDown(event){if(hasCC){if(event.key===\"ArrowRight\"&&event.target.selectionStart===event.target.value.length){phoneNumberInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeBlur(event){if(countryCode.length===0){setCountryCode(defaultCountryCode);}setCountryCodeFocused(false);props.blurEvent?.();}function onPhoneNumberFocus(){setPhoneNumberFocused(true);props.focusEvent?.();if(invalid){setInvalid(false);}}function onPhoneNumberBlur(){setPhoneNumberFocused(false);props.blurEvent?.();}return /*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,id:id,style:{display:\"flex\",flexDirection:\"row\",gap:countryCodeOptions?.style==\"split\"?countryCodeOptions.gap:0,...props.style},children:[/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required||phoneNumber.length>0&&!isComplete,value:isComplete?hasCC?`+${countryCode} ${phoneNumber}`:phoneNumber:\"\",setInvalid:setInvalid}),hasCC&&/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,countryCodeFocused,invalid),boxShadow:invalid&&shadows?.invalid||countryCodeFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(tl,0,0,bl):props.radius,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:countryCodeInputRef,value:formatCountryCode(isCanvas?countryCodeOptions.defaultCountryCode:countryCode,countryCodeFormat),onChange:onCountryCodeChange,onFocus:onCountryCodeFocus,onBlur:onCountryCodeBlur,onKeyDown:onCountryCodeKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,width:countryCodeOptions.width+pl,height:\"100%\",margin:0,display:\"block\",padding:px(pt,0,pb,pl),...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,0,bwb,bwl):border.width,opacity:countryCodeFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:countryCodeFocused?1:0,transition:props.transition})]}),/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,phoneNumberFocused,invalid),boxShadow:invalid&&shadows?.invalid||phoneNumberFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(0,tr,br,0):props.radius,flex:1,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:phoneNumberInputRef,autoFocus:props.autoFocus,value:formatPhoneNumber(phoneNumber,phoneFormat),onChange:onPhoneNumberChange,onFocus:onPhoneNumberFocus,onBlur:onPhoneNumberBlur,onKeyDown:onPhoneNumberKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,margin:0,display:\"block\",padding:props.padding,width:\"100%\",height:\"100%\",textOverflow:\"ellipsis\",...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,bwr,bwb,0):border.width,opacity:phoneNumberFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:phoneNumberFocused?1:0,transition:props.transition})]}),countryCodeOptions?.style==\"divider\"&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:border?.colorFocus&&(countryCodeFocused||phoneNumberFocused)?0:1},style:{position:\"absolute\",width:countryCodeOptions.divider.width,left:countryCodeOptions.width+pl-Math.round(countryCodeOptions.divider.width/2),top:countryCodeOptions.divider.inset,bottom:countryCodeOptions.divider.inset,backgroundColor:countryCodeOptions.divider.color},initial:false,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                    #${id} input::placeholder {\n                        color: ${props.placeholderColor};\n                    }\n                    #${id} input:focus {\n                        outline: none;\n                    }`}})]});}PhoneNumberInput.displayName=\"Phone Number Input\";addPropertyControls(PhoneNumberInput,{name:{type:ControlType.String,defaultValue:\"Phone Number\",preventLocalization:true},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},countryCodeOptions:{type:ControlType.Object,optional:true,defaultValue:{defaultCountryCode:1,format:\"+1\",width:40},title:\"Country Code\",controls:{defaultCountryCode:{title:\"Default\",type:ControlType.Number,min:0,max:999,step:1,defaultValue:1},format:{title:\"Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+X\",\"(X)\",\"(+X)\",\"X\",\"custom\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"+X\",description:\"*X* -> country code\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},width:{type:ControlType.Number,defaultValue:45,min:1,step:1},style:{type:ControlType.Enum,defaultValue:\"divider\",options:[\"connected\",\"divider\",\"split\"],optionTitles:[\"Connected\",\"Divider\",\"Split\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},divider:{type:ControlType.Object,hidden:props=>props.style!==\"divider\",controls:{color:{type:ControlType.Color,defaultValue:\"rgba(136, 136, 136, 0.15)\"},width:{type:ControlType.Number,defaultValue:1,min:1,step:1,displayStepper:true},inset:{type:ControlType.Number,defaultValue:8,min:0,step:1,displayStepper:true}}},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1,hidden:props=>props.style!==\"split\"}}},format:{type:ControlType.Enum,defaultValue:\"(XXX) XXX - XXXX\",options:[\"(XXX) XXX - XXXX\",\"(XXX) XXX-XXXX\",\"XXX-XXX-XXXX\",\"XXX.XXX.XXXX\",\"XXX XXX XXXX\",\"XXXXXXXXXXX\",\"XX XXXX XXXX\",\"custom\"],optionTitles:[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12 3456 7890\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"(XXX) XXX - XXXX\",description:\"*X* -> phone number\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},placeholder:{type:ControlType.String,defaultValue:\"\",placeholder:\"Auto\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp({invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp({invalid:true}),shadows:shadowsProp(),bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\"},transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function formatPhoneNumber(phoneNumber,format){if(!phoneNumber){return\"\";}let index=0// Tracks the position in the replacements string\n;let cutOffIndex=null// To determine where to slice the template after replacement\n;const result=format.replace(/[Xx]/g,(match,offset)=>{if(index<phoneNumber.length){return phoneNumber[index++];}else{if(phoneNumber.length<10&&cutOffIndex===null){// Set cut-off index at the first unmatched Xx after all replacements are used\ncutOffIndex=offset;}return\"\";}});// Slice the template to remove the part after the last valid replacement if necessary\nreturn cutOffIndex!==null?result.slice(0,cutOffIndex):result;}function replaceXWithNumbers(input){let count=1;return input.replace(/[Xx]/g,()=>{let number=count%10;if(number===0)number=0;count++;return number;});}function formatCountryCode(countryCode,format){return format.replace(/[Xx]/,countryCode);}function unformatValue(value){return value.replace(/\\D/g,\"\");}function isLastCharacterANumber(str){if(str.length===0)return false// Check if the string is empty\n;const lastChar=str[str.length-1]// Get the last character\n;return!isNaN(lastChar)&&!isNaN(parseFloat(lastChar))// Check if it's a numeric value\n;}const px=(a,b,c,d)=>`${a}px ${b}px ${c}px ${d}px`;function countXCharacters(str){// Convert the string to lowercase to count both 'X' and 'x'\nconst lowercaseStr=str.toLowerCase();// Use a regular expression to match 'x' characters\nconst xRegex=/x/g;// Use the match() method to find all occurrences of 'x'\nconst matches=lowercaseStr.match(xRegex);// Return the count of matches, or 0 if no matches found\nreturn matches?matches.length:0;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneNumberInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneNumberInput.map","// Overrides.tsx\nimport{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";export function AddTimezoneField(){const ref=React.useRef(null);React.useEffect(()=>{const form=ref.current;if(!form)return;// Don’t add it twice\nif(form.querySelector('input[name=\"timezone\"]'))return;// Compute UTC offset\nconst offsetMinutes=-new Date().getTimezoneOffset()// positive if ahead of UTC\n;const sign=offsetMinutes>=0?\"+\":\"-\";const absMinutes=Math.abs(offsetMinutes);const hours=String(Math.floor(absMinutes/60)).padStart(2,\"0\");const minutes=String(absMinutes%60).padStart(2,\"0\");const tz=`UTC${sign}${hours}:${minutes}`;// Create & append hidden input\nconst input=document.createElement(\"input\");input.type=\"hidden\";input.name=\"timezone\";input.value=tz;form.appendChild(input);},[]);return{ref};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withAddTimezoneField(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AddTimezoneField(props)});};}withAddTimezoneField.displayName=\"AddTimezoneField\";\nexport const __FramerMetadata__ = {\"exports\":{\"AddTimezoneField\":{\"type\":\"override\",\"name\":\"AddTimezoneField\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAddTimezoneField\":{\"type\":\"reactHoc\",\"name\":\"withAddTimezoneField\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Add_TimeZone_to_Form.map","/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";export default function Attributer(props){const style={display:\"none\"};return /*#__PURE__*/_jsxs(\"div\",{style:style,children:[/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channel]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown1]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown2]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown3]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-channeldrilldown4]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-landingpagegroup]\"}),/*#__PURE__*/_jsx(\"input\",{name:\"[attributer-landingpage]\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Attributer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Attributer.map","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";//Add to the error message text element\nexport function SetErrorMessageIDandDisplay(){return{ref:node=>{if(node){// Assign the desired id.\nnode.id=\"emailError\";// Hide the element initially.\nnode.style.display=\"none\";// Force the text color to red.\nnode.style.color=\"red\";}}};}// Define personal email domains that are not allowed.\nconst personalDomains=[\"aol.com\",\"att.net\",\"comcast.net\",\"facebook.com\",\"gmail.com\",\"gamail.com\",\"gmx.com\",\"googlemail.com\",\"hey.com\",\"hotmail.com\",\"hotmail.co.uk\",\"mac.com\",\"me.com\",\"mail.com\",\"msn.com\",\"live.com\",\"sbcglobal.net\",\"verizon.net\",\"yahoo.com\",\"yahoo.co.uk\",\"email.com\",\"fastmail.fm\",\"games.com\",\"gmx.net\",\"hush.com\",\"hushmail.com\",\"icloud.com\",\"iname.com\",\"inbox.com\",\"lavabit.com\",\"love.com\",\"outlook.com\",\"pobox.com\",\"protonmail.ch\",\"protonmail.com\",\"tutanota.de\",\"tutanota.com\",\"tutamail.com\",\"tuta.io\",\"keemail.me\",\"rocketmail.com\",\"safe-mail.net\",\"wow.com\",\"ygm.com\",\"ymail.com\",\"zoho.com\",\"yandex.com\",\"bellsouth.net\",\"charter.net\",\"cox.net\",\"earthlink.net\",\"juno.com\",\"btinternet.com\",\"virginmedia.com\",\"blueyonder.co.uk\",\"freeserve.co.uk\",\"live.co.uk\",\"ntlworld.com\",\"o2.co.uk\",\"orange.net\",\"sky.com\",\"talktalk.co.uk\",\"tiscali.co.uk\",\"virgin.net\",\"wanadoo.co.uk\",\"bt.com\",\"sina.com\",\"sina.cn\",\"qq.com\",\"naver.com\",\"hanmail.net\",\"daum.net\",\"nate.com\",\"yahoo.co.jp\",\"yahoo.co.kr\",\"yahoo.co.id\",\"yahoo.co.in\",\"yahoo.com.sg\",\"yahoo.com.ph\",\"163.com\",\"yeah.net\",\"126.com\",\"21cn.com\",\"aliyun.com\",\"foxmail.com\",\"hotmail.fr\",\"live.fr\",\"laposte.net\",\"yahoo.fr\",\"wanadoo.fr\",\"orange.fr\",\"gmx.fr\",\"sfr.fr\",\"neuf.fr\",\"free.fr\",\"gmx.de\",\"hotmail.de\",\"live.de\",\"online.de\",\"t-online.de\",\"web.de\",\"yahoo.de\",\"libero.it\",\"virgilio.it\",\"hotmail.it\",\"aol.it\",\"tiscali.it\",\"alice.it\",\"live.it\",\"yahoo.it\",\"email.it\",\"tin.it\",\"poste.it\",\"teletu.it\",\"mail.ru\",\"rambler.ru\",\"yandex.ru\",\"ya.ru\",\"list.ru\",\"hotmail.be\",\"live.be\",\"skynet.be\",\"voo.be\",\"tvcablenet.be\",\"telenet.be\",\"hotmail.com.ar\",\"live.com.ar\",\"yahoo.com.ar\",\"fibertel.com.ar\",\"speedy.com.ar\",\"arnet.com.ar\",\"yahoo.com.mx\",\"live.com.mx\",\"hotmail.es\",\"hotmail.com.mx\",\"prodigy.net.mx\",\"yahoo.ca\",\"hotmail.ca\",\"bell.net\",\"shaw.ca\",\"sympatico.ca\",\"rogers.com\",\"yahoo.com.br\",\"hotmail.com.br\",\"outlook.com.br\",\"uol.com.br\",\"bol.com.br\",\"terra.com.br\",\"ig.com.br\",\"itelefonica.com.br\",\"r7.com\",\"zipmail.com.br\",\"globo.com\",\"globomail.com\",\"oi.com.br\",\"workdomain.com\",\"company.com\",\"work.com\",\"domain.com\",\"workmail.com\"];export function ValidateEmailOnBlur(){const wrapperRef=React.useRef(null);React.useEffect(()=>{const wrapper=wrapperRef.current;if(!wrapper)return;// Find the actual <input> inside the Framer component\nconst inputEl=wrapper.querySelector(\"input\");const errorEl=document.getElementById(\"emailError\");if(!inputEl||!errorEl)return;// Helper to show/hide error\nconst showError=()=>{errorEl.textContent=\"Please use your work email.\";errorEl.style.display=\"block\";};const hideError=()=>{errorEl.style.display=\"none\";};// Core validation\nconst validate=()=>{const val=inputEl.value.trim().toLowerCase();hideError();if(!val.includes(\"@\"))return;const domain=val.split(\"@\")[1];if(personalDomains.includes(domain)){showError();inputEl.value=\"\";}};// Initial run (catch autofill)\nsetTimeout(validate,200);// Attach listeners\ninputEl.addEventListener(\"input\",validate);inputEl.addEventListener(\"blur\",validate);// Cleanup\nreturn()=>{inputEl.removeEventListener(\"input\",validate);inputEl.removeEventListener(\"blur\",validate);};},[]);return{ref:wrapperRef};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withSetErrorMessageIDandDisplay(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...SetErrorMessageIDandDisplay(props)});};}withSetErrorMessageIDandDisplay.displayName=\"SetErrorMessageIDandDisplay\";export function withValidateEmailOnBlur(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ValidateEmailOnBlur(props)});};}withValidateEmailOnBlur.displayName=\"ValidateEmailOnBlur\";\nexport const __FramerMetadata__ = {\"exports\":{\"withSetErrorMessageIDandDisplay\":{\"type\":\"reactHoc\",\"name\":\"withSetErrorMessageIDandDisplay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ValidateEmailOnBlur\":{\"type\":\"override\",\"name\":\"ValidateEmailOnBlur\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withValidateEmailOnBlur\":{\"type\":\"reactHoc\",\"name\":\"withValidateEmailOnBlur\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SetErrorMessageIDandDisplay\":{\"type\":\"override\",\"name\":\"SetErrorMessageIDandDisplay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Forms_Work_Email_Validation.map","// Generated by Framer (6d96db3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}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/n05XYkzMLwEX4ag4RvIo/Cu5Cq7u7nadDAoXn0NP2/ickuMUi8E.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={K2eX6NuIG:{hover:true,pressed:true}};const cycleOrder=[\"K2eX6NuIG\",\"mbMs0_UI3\",\"v9VCsMoNZ\",\"qd5n1Br09\",\"JX1K32_Hv\"];const serializationHash=\"framer-RqYA0\";const variantClassNames={JX1K32_Hv:\"framer-v-1fc1udw\",K2eX6NuIG:\"framer-v-1sux8mz\",mbMs0_UI3:\"framer-v-csc200\",qd5n1Br09:\"framer-v-dcthtm\",v9VCsMoNZ:\"framer-v-13k2jr7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.2,type:\"spring\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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={Default:\"K2eX6NuIG\",Disabled:\"v9VCsMoNZ\",Error:\"JX1K32_Hv\",Loading:\"mbMs0_UI3\",Success:\"qd5n1Br09\"};const getProps=({height,hover,id,width,...props})=>{return{...props,I5cs4Xn0I:hover??props.I5cs4Xn0I,variant:humanReadableVariantMap[props.variant]??props.variant??\"K2eX6NuIG\"};};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,I5cs4Xn0I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K2eX6NuIG\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1y4z43w=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(I5cs4Xn0I){const res=await I5cs4Xn0I(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"mbMs0_UI3\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"mbMs0_UI3\")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.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sux8mz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"K2eX6NuIG\",onMouseEnter:onMouseEnter1y4z43w,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f75cdb47-2c39-44d9-8fc9-b6007b92ea6c, rgb(163, 206, 77))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ff1aee5d-d936-44d4-b8f1-e986dee6b2e5, rgb(180, 236, 75))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:1,...style},variants:{\"K2eX6NuIG-hover\":{backgroundColor:\"var(--token-f75cdb47-2c39-44d9-8fc9-b6007b92ea6c, rgb(163, 206, 77))\",opacity:1},\"K2eX6NuIG-pressed\":{backgroundColor:\"var(--token-687f4121-5cc4-4813-a143-69ac34cc7396, rgb(112, 141, 58))\",opacity:1},JX1K32_Hv:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},qd5n1Br09:{backgroundColor:\"var(--token-fe28af8c-e96c-41c4-9b5e-05cfbad6d570, rgb(53, 63, 35))\",opacity:1},v9VCsMoNZ:{opacity:.5}},...addPropertyOverrides({\"K2eX6NuIG-hover\":{\"data-framer-name\":undefined},\"K2eX6NuIG-pressed\":{\"data-framer-name\":undefined},JX1K32_Hv:{\"data-framer-name\":\"Error\"},mbMs0_UI3:{\"data-framer-name\":\"Loading\"},qd5n1Br09:{\"data-framer-name\":\"Success\"},v9VCsMoNZ:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1fgo89p\",\"data-styles-preset\":\"ickuMUi8E\",children:\"Submit\"})}),className:\"framer-1t1o4l9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ad6iEEaRs\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{JX1K32_Hv:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"},qd5n1Br09:{\"--extracted-r6o4lv\":\"var(--token-e6920c13-53c4-45d1-886f-1fdaa6a6b3e3, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JX1K32_Hv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},qd5n1Br09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e6920c13-53c4-45d1-886f-1fdaa6a6b3e3, rgb(255, 255, 255)))\"},children:\"Submitted! Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwbs7k\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"VWq7drjE0\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ry36ms\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"J68KHtv6m\",style:{background:\"conic-gradient(from 0deg at 50% 50%, var(--token-fe28af8c-e96c-41c4-9b5e-05cfbad6d570, rgb(53, 63, 35)) 7.208614864864882deg, var(--token-ff1aee5d-d936-44d4-b8f1-e986dee6b2e5, rgb(180, 236, 75)) 342deg)\",mask:\"none\",WebkitMask:\"none\"},variants:{mbMs0_UI3:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rnoul6\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"S3DpBmqeA\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RqYA0.framer-1sqmtaf, .framer-RqYA0 .framer-1sqmtaf { display: block; }\",\".framer-RqYA0.framer-1sux8mz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-RqYA0 .framer-1t1o4l9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-RqYA0 .framer-xwbs7k { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-RqYA0 .framer-1ry36ms { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-RqYA0 .framer-rnoul6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-RqYA0.framer-v-csc200.framer-1sux8mz, .framer-RqYA0.framer-v-13k2jr7.framer-1sux8mz, .framer-RqYA0.framer-v-dcthtm.framer-1sux8mz, .framer-RqYA0.framer-v-1fc1udw.framer-1sux8mz { cursor: unset; }\",\".framer-RqYA0.framer-v-csc200 .framer-1ry36ms { overflow: hidden; }\",...sharedStyle.css,'.framer-RqYA0[data-border=\"true\"]::after, .framer-RqYA0 [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 48\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mbMs0_UI3\":{\"layout\":[\"fixed\",\"fixed\"]},\"v9VCsMoNZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"qd5n1Br09\":{\"layout\":[\"fixed\",\"fixed\"]},\"JX1K32_Hv\":{\"layout\":[\"fixed\",\"fixed\"]},\"dzB2vl1r3\":{\"layout\":[\"fixed\",\"fixed\"]},\"d7I5eBhrq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"I5cs4Xn0I\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwZfEIG0Ao=withCSS(Component,css,\"framer-RqYA0\");export default FramerwZfEIG0Ao;FramerwZfEIG0Ao.displayName=\"Submit Button\";FramerwZfEIG0Ao.defaultProps={height:48,width:240};addPropertyControls(FramerwZfEIG0Ao,{variant:{options:[\"K2eX6NuIG\",\"mbMs0_UI3\",\"v9VCsMoNZ\",\"qd5n1Br09\",\"JX1K32_Hv\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},I5cs4Xn0I:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerwZfEIG0Ao,[{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:\"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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwZfEIG0Ao\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"I5cs4Xn0I\\\":\\\"hover\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mbMs0_UI3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v9VCsMoNZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qd5n1Br09\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JX1K32_Hv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dzB2vl1r3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"d7I5eBhrq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wZfEIG0Ao.map"],"mappings":"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"}