{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/Qxph0FTG0p4K4zE70bGs/ButtonsInput.js", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/CAiPOh5jW8sjhKQGY1KE/McPhA85jGy4xGOX7Dboz/FormPageLabel.js", "ssg:https://framerusercontent.com/modules/fPSKMdnAZGIeyDfLV8KP/UF1CreM6AP9OrHJ5kt1D/MultiStepFormButton.js", "ssg:https://framerusercontent.com/modules/wV9SghwspjN8vk1MgoSi/jK6W9I4VdUpVRrPPcIq5/MultiStepForm.js", "ssg:https://framerusercontent.com/modules/1aROsO11PPI7K3O12Jdh/R0W81iTwbQHjFIpgXf1v/iAJYOAr8Z.js", "ssg:https://framerusercontent.com/modules/HB0hdyPMalju1bJjtRi0/QdhPz7VPGK0YXj8wbIJ5/H7kRhoTh1.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,Image}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,fillProp,borderProp,shadowsProp,useInstanceId,HiddenInput,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function ButtonsInput(props){const{clickAction,options,textOptions,imageOptions,layout,border,shadows,valueSeparator}=props;const id=useInstanceId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const multiSelect=clickAction===\"nextPage\"?false:props.multiSelect;const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[value,setValue]=useState([]);const[invalid,setInvalid]=useState(false);const[nextPageQueued,setNextPageQueued]=useState(false);const[formId,setFormId]=useState(null);const ref=useRef(null);const state=multiStepFormState[formId];useEffect(()=>{const newFormId=getFormInfo(ref.current).formId;if(!multiStepFormState[newFormId]){setMultiStepFormState({});}setFormId(newFormId);},[]);useEffect(()=>{if(invalid){props.invalidEvent?.();}},[invalid]);useEffect(()=>{if(nextPageQueued){state?.nextPage?.();setNextPageQueued(false);}},[nextPageQueued]);function onSetValueEvent(event){setValue(multiSelect?event.detail.split(valueSeparator):[event.detail]);}const imageStyle={position:\"relative\",width:\"100%\",height:\"auto\",aspectRatio:imageOptions.aspectRatioMode==\"fixed\"?imageOptions.aspectRatio:undefined,borderRadius:imageOptions.radius,pointerEvents:\"none\",userSelect:\"none\",objectFit:\"cover\"};const rows=[];for(let i=0;i<options.length;i++){const option=options[i];const selected=multiSelect?value.includes(option.value):value.length===1&&value[0]===option.value;if(i%layout.columns==0){rows.push([]);}let layoutProps={};if(options.length%layout.columns==0||options.length-i>=layout.columns){layoutProps={flex:1};}else{layoutProps={flexBasis:`calc(${100/layout.columns}% - ${layout.gapH*(1-1/layout.columns)}px)`};}const color=invalid&&textOptions?.colorInvalid||(selected?textOptions?.colorOn:textOptions?.colorOff);const boxShadow=invalid&&shadows?.invalid||(selected?shadows?.on:shadows?.off);const borderColor=invalid&&border?.colorInvalid||(selected?border?.colorOn:border?.colorOff);const onClick=()=>{if(multiSelect){setValue(selected?value.filter(v=>v!==option.value):[...value,option.value]);}else{setValue(selected?[]:[option.value]);}setInvalid(false);if(clickAction==\"nextPage\"){setNextPageQueued(true);}};rows[rows.length-1].push(/*#__PURE__*/_jsxs(motion.button,{type:\"button\",onClick:onClick,onKeyDown:event=>{if(event.key===\"Enter\"){onClick();}},onFocus:()=>{props.focusEvent?.();if(invalid){setInvalid(false);}},onBlur:props.blurEvent,whileFocus:{...createBackground(props.fill,null,true,invalid),color:textOptions?.colorFocus||color,boxShadow:shadows?.focus||boxShadow,borderColor:border?.colorFocus||borderColor},animate:{...createBackground(props.fill,selected,false,invalid),color,boxShadow,borderColor},style:{position:\"relative\",display:\"flex\",flexDirection:textOptions?.location==\"bottom\"?\"column-reverse\":\"column\",gap:textOptions?.gap??0,padding:props.padding,borderRadius:props.radius,cursor:\"pointer\",overflow:\"hidden\",outline:\"none\",border:\"none\",backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined,...textOptions.font,...layoutProps},initial:false,transition:props.transition,children:[textOptions&&/*#__PURE__*/_jsx(\"span\",{style:{minHeight:\"1lh\",width:\"100%\"},children:option.title}),option.image&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flex:1,display:\"flex\",alignItems:imageOptions.alignV},children:isCanvas?/*#__PURE__*/_jsx(\"img\",{src:option.image.src,alt:option.image.alt||option.title||option.value,style:imageStyle}):/*#__PURE__*/_jsx(Image,{className:`${id}-image`,background:{fit:\"fill\",...option.image,alt:option.image.alt||option.title||option.value},style:imageStyle})}),border&&/*#__PURE__*/_jsx(Border,{...border,transition:props.transition})]},option.value));}return /*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,\"data-framerforms-type\":\"buttons\",ref:ref,style:{display:\"flex\",flexDirection:\"column\",gap:layout.gapV,flex:1,userSelect:\"none\"},children:[/*#__PURE__*/_jsx(\"button\",{type:\"button\",style:{display:\"none\"}}),/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required,value:value.join(valueSeparator),setInvalid:setInvalid,onSetValueEvent:onSetValueEvent}),rows.map((items,index)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:layout.gapH,width:\"100%\",alignItems:layout.height==\"fill\"?\"stretch\":layout.alignV,justifyContent:layout.alignH},children:items})),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`.${id}-image > div {\n                        position: relative !important;\n                        ${imageOptions.aspectRatioMode==\"fixed\"?\"height: 100%;\":\"\"}\n                    }`}})]});}ButtonsInput.displayName=\"Buttons Input\";addPropertyControls(ButtonsInput,{name:{type:ControlType.String,defaultValue:\"Buttons\",placeholder:\"Name\",preventLocalization:true},required:{type:ControlType.Boolean,defaultValue:false},clickAction:{type:ControlType.Enum,defaultValue:\"select\",options:[\"select\",\"nextPage\"],optionTitles:[\"Select\",\"Go To Next Page\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},multiSelect:{type:ControlType.Boolean,defaultValue:false,title:\"Multi-Select\",hidden:props=>props.clickAction!==\"select\"},valueSeparator:{type:ControlType.String,defaultValue:\", \",hidden:props=>!props.multiSelect||props.clickAction!==\"select\"},options:{type:ControlType.Array,defaultValue:[{value:\"Option1\",title:\"Option 1\"},{value:\"Option2\",title:\"Option 2\"},{value:\"Option3\",title:\"Option 3\"}],control:{type:ControlType.Object,controls:{value:{type:ControlType.String,defaultValue:\"\",preventLocalization:true},title:{type:ControlType.String,defaultValue:\"\"},image:{type:ControlType.ResponsiveImage}}}},layout:{type:ControlType.Object,controls:{columns:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true},height:{type:ControlType.Enum,defaultValue:\"fit\",options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true,hidden:props=>props.columns==1},alignH:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.columns==1},alignV:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true,title:\" \",hidden:props=>props.columns==1||props.height==\"fill\"},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>props.columns==1},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},textOptions:{type:ControlType.Object,optional:true,title:\"Text\",defaultValue:{location:\"top\",gap:10},controls:{location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1,textAlign:\"center\"}},colorOn:{type:ControlType.Color,defaultValue:\"#0099FF\"},colorOff:{type:ControlType.Color,defaultValue:\"#999\"},colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\"},colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\"}}},imageOptions:{type:ControlType.Object,title:\"Images\",controls:{aspectRatioMode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"],displaySegmentedControl:true,title:\"Aspect Ratio\"},aspectRatio:{type:ControlType.String,defaultValue:\"1 / 1\",placeholder:\"Width / Height\",title:\" \",preventLocalization:true,hidden:props=>props.aspectRatioMode!=\"fixed\"},alignV:{type:ControlType.Enum,defaultValue:\"center\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.aspectRatioMode!=\"auto\"},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"}}},fill:fillProp({onOff:true,invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"10px\"},border:borderProp({onOff:true,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:\"spring\",stiffness:1500,damping:70}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ButtonsInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ButtonsInput.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef}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 createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));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=createId();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\",{children:`\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\":{\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useState}from\"react\";import{useMultiStepFormStore,useCanvasState,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function FormPageLabel(props){var _props_style;const Tag=props.htmlTag||\"p\";const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ref=useRef(null);const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const canvasState=useCanvasState(ref);const[formId,setFormId]=useState(null);const state=isCanvas?canvasState:multiStepFormState[formId];useEffect(()=>{const newFormId=getFormInfo(ref.current).formId;setFormId(newFormId);if(!multiStepFormState[newFormId]){setMultiStepFormState({});}},[]);var _state_totalPages;return /*#__PURE__*/_jsx(Tag,{\"data-framerforms\":true,ref:ref,style:{color:props.color,userSelect:props.textSelect?\"auto\":\"none\",whiteSpace:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)?\"pre\":\"nowrap\",margin:0,...props.font,...props.style},children:props.text.replace(/\\[page\\]/g,(state===null||state===void 0?void 0:state.pageHistory)?state.pageHistory.length:1).replace(/\\[totalPages\\]/g,(_state_totalPages=state===null||state===void 0?void 0:state.totalPages)!==null&&_state_totalPages!==void 0?_state_totalPages:1)});}FormPageLabel.displayName=\"Form Page Label\";addPropertyControls(FormPageLabel,{text:{type:ControlType.String,defaultValue:\"Page [page] / [totalPages]\",description:\"*[page]*: current page\\n*[totalPages]*: total number of pages\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#888\"},textSelect:{type:ControlType.Boolean,defaultValue:true},htmlTag:{type:ControlType.Enum,options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],title:\"HTML Tag\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormPageLabel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormPageLabel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef,cloneElement}from\"react\";import{motion}from\"framer-motion\";import{borderProp,fillProp,createBackground,Border,HideElement,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function MultiStepFormButton(props){var _props_border,_props_border1,_props_font,_props_style,_props_border2;const prev=props.page==\"previous\";const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[formId,setFormId]=useState(null);const ref=useRef(null);const state=multiStepFormState[formId];useEffect(()=>{const newFormId=getFormInfo(ref.current).formId;if(!multiStepFormState[newFormId]){setMultiStepFormState({});}setFormId(newFormId);},[]);let hidden=false;if(isOptimizing||!state){hidden=prev;}else if(state===null||state===void 0?void 0:state.pageHistory){const page=state.pageHistory[state.pageHistory.length-1];if(prev){hidden=page===0;}else{hidden=state.isEndPage;}}if(hidden&&!isCanvas){return /*#__PURE__*/_jsx(HideElement,{ref:ref});}function onClick(){var _props_click;if(state){if(prev){state.previousPage();}else{state.nextPage();}}(_props_click=props.click)===null||_props_click===void 0?void 0:_props_click.call(props);}if(props.appearance==\"custom\"){var _props_customLayer,_props_style1,_props_style2;let layer=(_props_customLayer=props.customLayer)===null||_props_customLayer===void 0?void 0:_props_customLayer[0];const width=(_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.width;const height=(_props_style2=props.style)===null||_props_style2===void 0?void 0:_props_style2.height;if(layer&&props.style&&(width||height)){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...width&&{width:width},...height&&{height:height}}});}return /*#__PURE__*/_jsx(\"button\",{ref:ref,type:\"button\",style:{display:\"contents\"},onClick:onClick,onMouseEnter:props.hover,children:layer});}var _props_border_colorFocus;return /*#__PURE__*/_jsxs(motion.button,{\"data-framerforms\":true,ref:ref,type:\"button\",onClick:onClick,onMouseEnter:props.hover,className:hidden&&isCanvas?CANVAS_HIDDEN_CLASS_NAME:\"\",whileFocus:{...createBackground(props.fill,null,true),borderColor:(_props_border_colorFocus=(_props_border=props.border)===null||_props_border===void 0?void 0:_props_border.colorFocus)!==null&&_props_border_colorFocus!==void 0?_props_border_colorFocus:(_props_border1=props.border)===null||_props_border1===void 0?void 0:_props_border1.color},style:{position:\"relative\",display:\"flex\",justifyContent:((_props_font=props.font)===null||_props_font===void 0?void 0:_props_font.textAlign)||\"center\",alignItems:\"center\",...createBackground(props.fill),border:\"none\",color:props.color,padding:props.padding,borderRadius:props.radius,userSelect:\"none\",cursor:\"pointer\",textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?undefined:\"nowrap\",boxShadow:props.shadows,borderColor:(_props_border2=props.border)===null||_props_border2===void 0?void 0:_props_border2.color,...props.font,...props.style},transition:props.transition,children:[props.text,/*#__PURE__*/_jsx(Border,{...props.border}),hidden&&isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`\n                [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                    display: none !important;\n                }`})]});}MultiStepFormButton.displayName=\"Multi-Step Form Button\";addPropertyControls(MultiStepFormButton,{page:{type:ControlType.Enum,defaultValue:\"next\",options:[\"previous\",\"next\"],optionTitles:[\"Previous\",\"Next\"],displaySegmentedControl:true},autoHide:{type:ControlType.Boolean,defaultValue:true,title:\"Auto-Hide\",description:\"Hide on first/last page\"},appearance:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true},customLayer:{type:ControlType.ComponentInstance,title:\"Layer\",description:\"Connect a custom layer outside the breakpoint\",hidden:props=>props.appearance!==\"custom\"},text:{type:ControlType.String,defaultValue:\"Next\",hidden:props=>props.appearance!==\"default\"},fill:fillProp({focus:true,invalid:false,color:\"#333\",colorA:\"#8C8C8C\",colorB:\"#000\",hidden:props=>props.appearance!==\"default\"}),color:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.appearance!==\"default\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2},hidden:props=>props.appearance!==\"default\"},padding:{type:ControlType.Padding,defaultValue:\"10px 16px 10px 16px\",hidden:props=>props.appearance!==\"default\"},radius:{type:ControlType.BorderRadius,defaultValue:\"10px\",hidden:props=>props.appearance!==\"default\"},border:borderProp({focus:true,color:\"#0099FF00\",hidden:props=>props.appearance!==\"default\"}),shadows:{type:ControlType.BoxShadow,hidden:props=>props.appearance!==\"default\"},transition:{type:ControlType.Transition,defaultValue:{type:false},hidden:props=>props.appearance!==\"default\"},click:{type:ControlType.EventHandler},hover:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MultiStepFormButton\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MultiStepFormButton.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{createId,HiddenComponentLabel,useMultiStepFormStore,getFormInfo,isAncestor}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";const OPTIMIZATION_CLASS_NAME=\"framerforms-multi-step-form\";const SUBMIT_BUTTON_HIDDEN_ATTRIBUTE=\"framerforms-submit-button-hidden\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */function MultiStepFormComponent(props){const{scrollToTop}=props;const id=props.id||createId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[formInfo,setFormInfo]=useState(null);const stateRef=useRef(multiStepFormState[formInfo===null||formInfo===void 0?void 0:formInfo.formId]);const ref=useRef(null);const pageVideosRef=useRef({});const isFirstRenderRef=useRef(true);const state=multiStepFormState[formInfo===null||formInfo===void 0?void 0:formInfo.formId];const pageHistory=state===null||state===void 0?void 0:state.pageHistory;useEffect(()=>{const formInfo=getFormInfo(ref.current);setFormInfo(formInfo);const{formId,form,pages}=formInfo;function previousPage(){var _stateRef_current;const pageHistory=(_stateRef_current=stateRef.current)===null||_stateRef_current===void 0?void 0:_stateRef_current.pageHistory;if((pageHistory===null||pageHistory===void 0?void 0:pageHistory.length)>1){setMultiStepFormState(prev=>({[formId]:{...prev[formId],pageHistory:prev[formId].pageHistory.slice(0,-1),isEndPage:false}}));}}function nextPage(){const state=stateRef.current;if(state){const page=state.pageHistory[state.pageHistory.length-1];const{logicConfigs}=state;let newPage=null;if(logicConfigs.length&&pages){var _pages_children;const pageElement=(_pages_children=pages.children)===null||_pages_children===void 0?void 0:_pages_children[page];for(const logic of logicConfigs){if(isAncestor(pageElement,logic.ref.current)){const nextPageName=logic.getNextPage();if(nextPageName){const nextPageIndex=getChildIndexByDataFramerName(pages,nextPageName);if(nextPageIndex!==-1){newPage=nextPageIndex;}break;}}}}if(newPage===null&&page<state.totalPages-1){newPage=page+1;}const pageElement=pages.children[page];if(pageElement&&!isFormValid(pageElement)){newPage=null;}if(newPage){setMultiStepFormState(prev=>{const prevState=prev[formId];return{[formId]:{...prevState,pageHistory:[...prevState.pageHistory,newPage],isEndPage:isPageAnEndPage(newPage,prevState,pages,props.endPage,props.endPageCustom)}};});}}}function setPageHistoryLength(newLength){setMultiStepFormState(prev=>{var _prev_formId;var _prev_formId_pageHistory;const pageHistory=(_prev_formId_pageHistory=(_prev_formId=prev[formId])===null||_prev_formId===void 0?void 0:_prev_formId.pageHistory)!==null&&_prev_formId_pageHistory!==void 0?_prev_formId_pageHistory:[];return{[formId]:{...prev[formId],pageHistory:newLength>=pageHistory.length?pageHistory:pageHistory.slice(0,newLength),isEndPage:isPageAnEndPage(pageHistory[newLength-1],prev[formId],pages,props.endPage,props.endPageCustom)}};});}if(formId&&pages){setMultiStepFormState({[formId]:{totalPages:pages.children.length,pageHistory:[0],logicConfigs:[],isEndPage:pages.children.length==1,previousPage,nextPage,setPageHistoryLength}});}if(pages){const pageElements=pages.children;for(let i=0;i<pageElements.length;i++){const videos=pageElements[i].querySelectorAll(\"video\");if(!pageVideosRef.current[i]){pageVideosRef.current[i]=[];}for(const video of videos){pageVideosRef.current[i].push(video);if(video.hasAttribute(\"autoplay\")&&i!==0){const pauseVideo=()=>{if(!video.paused){setTimeout(()=>{if(!video.paused){video.pause();}},100)// 100 milliseconds = 0.1 seconds\n;}};if(!video.paused){// Video is already playing, pause it immediately\npauseVideo();}else{// Wait for the video to start playing, then pause it\nvideo.addEventListener(\"play\",pauseVideo,{once:true});}}}}}let unmountFunction=null;if(form){function onEnterPress(event){if(event.key!==\"Enter\"||event.target.tagName===\"TEXTAREA\"){return;}const currentInput=event.target;let previousElement=currentInput;let foundPage=false;while(previousElement&&!foundPage){const newElement=previousElement.parentElement;if(newElement==pages){foundPage=true;break;}previousElement=newElement;}const currentPage=previousElement;let stopEvent=true;if(currentPage){const inputs=getInputsOnPage(currentPage);const currentIndex=inputs.indexOf(currentInput);if(currentIndex<inputs.length-1){// Focus the next input on the current page\ninputs[currentIndex+1].focus();}else{const pageElements=Array.from(pages.children);const pageIndex=pageElements.indexOf(currentPage);if(pageIndex<pageElements.length-1){nextPage();}else{// Let the form submit if it's the last page\nstopEvent=false;}}}if(stopEvent){event.preventDefault();event.stopPropagation();}}// Override Enter key press event\nform.addEventListener(\"keydown\",onEnterPress,true);unmountFunction=()=>{form.removeEventListener(\"keydown\",onEnterPress,true);};}if(unmountFunction){return unmountFunction;}},[]);useEffect(()=>{stateRef.current=state;},[state]);useEffect(()=>{var _ref_current;if(state&&(!isCanvas||((_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.closest('[data-framer-component-container=\"true\"]')))){var _formInfo_form_querySelector,_formInfo_form;const submitButton=(_formInfo_form=formInfo.form)===null||_formInfo_form===void 0?void 0:(_formInfo_form_querySelector=_formInfo_form.querySelector('button[type=\"submit\"]'))===null||_formInfo_form_querySelector===void 0?void 0:_formInfo_form_querySelector.parentElement;if(submitButton){submitButton.setAttribute(SUBMIT_BUTTON_HIDDEN_ATTRIBUTE,state.isEndPage?\"false\":\"true\");}}},[state===null||state===void 0?void 0:state.isEndPage]);useEffect(()=>{const pages=formInfo===null||formInfo===void 0?void 0:formInfo.pages;if(pages&&pageHistory){var _state_logicConfigs;// Enable/disable form inputs on pages that have not been visited for submit validation\nif((state===null||state===void 0?void 0:(_state_logicConfigs=state.logicConfigs)===null||_state_logicConfigs===void 0?void 0:_state_logicConfigs.length)||props.endPage==\"customPages\"){for(let i=0;i<pages.children.length;i++){if(pageHistory.includes(i)){var _pages_children_i;const inputs=(_pages_children_i=pages.children[i])===null||_pages_children_i===void 0?void 0:_pages_children_i.querySelectorAll(`input[name][disabled=\"FramerForms\"], select[name][disabled=\"FramerForms\"], textarea[name][disabled=\"FramerForms\"]`);for(const input of inputs){input.removeAttribute(\"disabled\");}}else{var _pages_children_i1;const inputs=(_pages_children_i1=pages.children[i])===null||_pages_children_i1===void 0?void 0:_pages_children_i1.querySelectorAll(\"input[name]:not([disabled]), select[name]:not([disabled]), textarea[name]:not([disabled])\");for(const input of inputs){input.setAttribute(\"disabled\",\"FramerForms\");}}}}// Play/pause videos on form pages\nconst currentPage=pageHistory[pageHistory.length-1];if(pageVideosRef.current){for(const pageIndex of Object.keys(pageVideosRef.current)){const pageVideos=pageVideosRef.current[pageIndex];for(const video of pageVideos){if(pageIndex==currentPage){if(video.hasAttribute(\"autoplay\")){video.play();}}else if(!video.paused){video.pause();}}}}// Scroll to top of form\nif(scrollToTop&&formInfo.form&&!isFirstRenderRef.current){const rect=formInfo.form.getBoundingClientRect();const top=rect.top-scrollToTop.offset;const topIsInView=top>=0&&top<=window.innerHeight;if(!topIsInView){const windowScrollTop=window.pageYOffset||document.documentElement.scrollTop;window.scrollTo({top:windowScrollTop+top,behavior:scrollToTop.scrollStyle});}}if(!isFirstRenderRef.current){autoFocusInputOnPage(pages.children[currentPage]);}isFirstRenderRef.current=false;}fireAnalyticsEvent(props.analytics,pageHistory,formInfo===null||formInfo===void 0?void 0:formInfo.pages);},[pageHistory]);return /*#__PURE__*/_jsxs(HiddenComponentLabel,{text:\"Multi-Step Form\",children:[/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 452 60\",width:\"121\",height:\"16\",style:{marginBottom:5},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 58.178 27.448 L 58.178 0.912 L 33.172 0.912 C 14.852 0.912 0 15.76 0 34.08 L 0 59.086 L 58.178 59.086 L 58.178 27.46 C 58.172 44.93 44.008 59.09 26.538 59.09 L 26.538 27.45 L 58.178 27.45 Z\",fill:\"#473DFE\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 452.004 36.088 C 452.004 43.208 446.328 47.872 437.336 47.872 C 428.342 47.872 422.57 43.112 421.946 35.464 L 431.132 35.464 C 431.228 38.734 433.392 40.802 437.142 40.802 C 440.268 40.802 442.336 39.6 442.336 37.436 C 442.336 35.944 440.846 34.838 438.826 34.454 L 432.526 33.252 C 426.996 32.192 423.34 28.972 423.34 23.392 C 423.34 16.948 429.016 12.426 436.758 12.426 C 444.982 12.426 450.898 17.14 451.426 24.594 L 442.24 24.594 C 442 21.468 439.884 19.448 436.854 19.448 C 434.162 19.448 432.526 20.892 432.526 22.768 C 432.526 24.306 434.064 25.22 435.892 25.556 L 442.578 26.856 C 448.734 28.056 452.004 31.086 452.004 36.088 Z M 395.384 47.39 L 387.978 27.48 L 387.978 47.39 L 379.754 47.39 L 379.754 12.86 L 390.478 12.86 L 399.184 36.28 L 407.84 12.86 L 418.566 12.86 L 418.566 47.39 L 410.342 47.39 L 410.342 27.24 L 402.886 47.39 Z M 355.758 47.39 L 346.668 47.39 L 346.668 12.86 L 360.808 12.86 C 370.138 12.86 375.476 17.044 375.476 24.402 C 375.476 28.826 372.83 32.482 368.166 34.454 L 376.63 47.39 L 365.81 47.39 L 358.74 35.896 L 355.758 35.896 Z M 355.758 20.362 L 355.758 28.394 L 360.422 28.394 C 364.462 28.394 366.338 27.144 366.338 24.402 C 366.338 21.662 364.462 20.362 360.422 20.362 Z M 325.08 48.112 C 315.124 48.112 307.286 40.562 307.286 30.076 C 307.286 19.592 315.124 12.138 325.08 12.138 C 335.084 12.138 342.922 19.592 342.922 30.078 C 342.922 40.562 335.084 48.112 325.08 48.112 Z M 325.08 39.984 C 330.514 39.984 333.544 35.512 333.544 30.076 C 333.544 24.642 330.514 20.266 325.08 20.266 C 319.646 20.266 316.616 24.642 316.616 30.078 C 316.616 35.512 319.646 39.984 325.08 39.984 Z M 291.034 47.39 L 281.946 47.39 L 281.946 12.86 L 305.462 12.86 L 305.462 20.748 L 291.034 20.748 L 291.034 27.144 L 303.106 27.144 L 303.106 35.032 L 291.034 35.032 L 291.034 47.392 Z M 257.946 47.39 L 248.856 47.39 L 248.856 12.86 L 262.994 12.86 C 272.326 12.86 277.664 17.044 277.664 24.402 C 277.664 28.826 275.018 32.482 270.354 34.454 L 278.818 47.39 L 267.996 47.39 L 260.926 35.896 L 257.946 35.896 Z M 257.946 20.362 L 257.946 28.394 L 262.61 28.394 C 266.65 28.394 268.526 27.144 268.526 24.402 C 268.526 21.662 266.65 20.362 262.61 20.362 Z M 244.616 39.504 L 244.616 47.392 L 220.184 47.392 L 220.184 12.86 L 244.278 12.86 L 244.278 20.748 L 229.274 20.748 L 229.274 25.7 L 242.884 25.7 L 242.884 33.588 L 229.274 33.588 L 229.274 39.504 Z M 191.216 47.39 L 183.81 27.48 L 183.81 47.39 L 175.586 47.39 L 175.586 12.86 L 186.31 12.86 L 195.016 36.28 L 203.672 12.86 L 214.398 12.86 L 214.398 47.39 L 206.174 47.39 L 206.174 27.24 L 198.718 47.39 L 191.218 47.39 Z M 163.08 47.39 L 160.966 40.994 L 148.846 40.994 L 146.682 47.39 L 137.496 47.39 L 150.288 12.86 L 160.244 12.86 L 172.892 47.39 L 163.082 47.39 Z M 155.002 22.864 L 151.298 33.828 L 158.61 33.828 L 155 22.864 Z M 116.574 47.39 L 107.484 47.39 L 107.484 12.86 L 121.624 12.86 C 130.954 12.86 136.292 17.044 136.292 24.402 C 136.292 28.826 133.648 32.482 128.982 34.454 L 137.446 47.39 L 126.626 47.39 L 119.556 35.896 L 116.574 35.896 Z M 116.574 20.362 L 116.574 28.394 L 121.24 28.394 C 125.28 28.394 127.154 27.144 127.154 24.402 C 127.154 21.662 125.278 20.362 121.24 20.362 Z M 89.214 47.39 L 80.126 47.39 L 80.126 12.86 L 103.64 12.86 L 103.64 20.748 L 89.212 20.748 L 89.212 27.144 L 101.284 27.144 L 101.284 35.032 L 89.212 35.032 L 89.212 47.392 Z\",fill:\"#999\"})]}),/*#__PURE__*/_jsxs(\"div\",{ref:ref,id:id,\"data-framerforms-multi-step-form\":true,className:isOptimizing?OPTIMIZATION_CLASS_NAME:\"\",style:{display:\"none\"},children:[!isOptimizing&&!isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`form[framerforms-id=\"${formInfo===null||formInfo===void 0?void 0:formInfo.formId}\"] > [data-framer-name=\"Pages\" i] > *:not(:nth-child(${pageHistory?pageHistory[pageHistory.length-1]+1:1})) { display: none; }`}),isCanvas&&/*#__PURE__*/_jsx(\"style\",{children:`[data-framer-component-container=\"true\"] form[framerforms-id=\"${formInfo===null||formInfo===void 0?void 0:formInfo.formId}\"] > [data-framer-name=\"Pages\" i] > *:not(:first-child) { display: none; }`})]})]});}const MultiStepForm=withCSS(MultiStepFormComponent,[`form:has(.${OPTIMIZATION_CLASS_NAME}) > [data-framer-name=\"Pages\" i] > *:not(:first-child) { display: none; }`,`form:has(.${OPTIMIZATION_CLASS_NAME}) div:has(> button[type=\"submit\"]) { display: none; }`,`[${SUBMIT_BUTTON_HIDDEN_ATTRIBUTE}=\"true\"] { display: none; }`],OPTIMIZATION_CLASS_NAME);export default MultiStepForm;MultiStepForm.displayName=\"Multi-Step Form\";addPropertyControls(MultiStepForm,{endPage:{type:ControlType.Enum,defaultValue:\"lastPage\",options:[\"lastPage\",\"customPages\"],optionTitles:[\"Last Page\",\"Custom Pages\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},endPageCustom:{type:ControlType.Array,control:{type:ControlType.String,defaultValue:\"\",placeholder:\"Page Layer Name\",preventLocalization:true},title:\"Pages\",description:\"List of page names where the submit button is shown\",hidden:props=>props.endPage!==\"customPages\"},analytics:{type:ControlType.Object,optional:true,icon:\"interaction\",controls:{platform:{type:ControlType.Enum,options:[\"googleAnalytics\"],optionTitles:[\"Google Analytics 4\"]},googleAnalyticsEventName:{type:ControlType.String,placeholder:\"Event Name\",title:\"Event Name\",preventLocalization:true,hidden:props=>props.platform!==\"googleAnalytics\"},googleAnalyticsEventCategory:{type:ControlType.String,placeholder:\"Optional\",title:\"Category\",description:\"Make sure the Google Analytics 4 script is installed\",preventLocalization:true,hidden:props=>props.platform!==\"googleAnalytics\"}}},scrollToTop:{type:ControlType.Object,optional:true,title:\"Scroll to Top\",controls:{scrollStyle:{type:ControlType.Enum,defaultValue:\"smooth\",options:[\"smooth\",\"instant\"],optionTitles:[\"Smooth\",\"Instant\"],displaySegmentedControl:true,title:\"Scroll\"},offset:{type:ControlType.Number,defaultValue:32,step:1,description:\"When previous or next button is pressed, scroll to the top of the form with an offset\"}}}});//////////////////////////////////////////////////////////////\nfunction isFormValid(element){const inputs=element.querySelectorAll(\"input, select, textarea\");let invalidInputs=[];for(const input of inputs){if(isVisible(input)&&!input.reportValidity()){invalidInputs.push(input);}}// if (invalidInputs.length > 0) {\n//     console.log(\n//         \"Invalid inputs: \",\n//         invalidInputs.map((input) => input.name || input.type).join(\", \")\n//     )\n// }\nreturn invalidInputs.length===0;}function isVisible(element){return element.offsetParent!==null||element.type==\"hidden\";}function getChildIndexByDataFramerName(parentElement,name){const children=parentElement.children;for(let i=0;i<children.length;i++){if(children[i].getAttribute(\"data-framer-name\")===name){return i;}}return-1// Return -1 if no child with the specified attribute value is found\n;}function isPageAnEndPage(pageIndex,state,pages,endPageMode,customEndPages){let isEndPage=false;if(endPageMode===\"customPages\"&&pages){const step=pages.children[pageIndex];if(customEndPages.includes(step.getAttribute(\"data-framer-name\"))){isEndPage=true;}}else{isEndPage=pageIndex==state.totalPages-1;}return isEndPage;}function fireAnalyticsEvent(analytics,pageHistory,pages){if(!analytics||!pageHistory||!pages){return;}switch(analytics.platform){case\"googleAnalytics\":if(typeof window!==\"undefined\"){if(window.gtag){const pageIndex=pageHistory[pageHistory.length-1];const page=pages===null||pages===void 0?void 0:pages.children[pageIndex];const params={page_name:(page===null||page===void 0?void 0:page.getAttribute(\"data-framer-name\"))||(page===null||page===void 0?void 0:page.getAttribute(\"name\"))||`Page ${pageIndex+1}`};if(analytics.googleAnalyticsEventCategory){params.event_category=analytics.googleAnalyticsEventCategory;}window.gtag(\"event\",analytics.googleAnalyticsEventName,params);}else{console.error(\"Google Analytics gtag.js script is not installed.\");}}break;}}function getInputsOnPage(page){return Array.from(page.querySelectorAll('input:not([type=\"hidden\"]):not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]):not([data-framerforms-set-value-event]), textarea:not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]), select:not([disabled]):not([name=\"\"]):not([tabindex=\"-1\"]), button:not([disabled]):not([tabindex=\"-1\"])')).filter(el=>window.getComputedStyle(el).display!==\"none\");}function autoFocusInputOnPage(pageElement){if(!pageElement){return;}// Get all potential autofocus elements\nconst autofocusElements=pageElement.querySelectorAll(\"input[autofocus], select[autofocus], textarea[autofocus]\");// Convert NodeList to Array for easier manipulation\nconst elements=Array.from(autofocusElements);// Filter out hidden elements\nconst visibleElements=elements.filter(el=>{const style=window.getComputedStyle(el);return style.display!==\"none\"&&style.visibility!==\"hidden\"&&!el.hidden&&!el.disabled&&el.offsetParent!==null// Check if the element is rendered\n;});// If there are visible autofocus elements, focus the first one\nif(visibleElements.length>0){visibleElements[0].focus();}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MultiStepForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MultiStepForm.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={ftme0WDoO:{hover:true,pressed:true}};const cycleOrder=[\"ftme0WDoO\",\"sIMNx0D0g\",\"BnQzERM8b\",\"pH4HF3bBJ\",\"jqWxU5uyJ\"];const serializationHash=\"framer-wZnk9\";const variantClassNames={BnQzERM8b:\"framer-v-1hjs09a\",ftme0WDoO:\"framer-v-134wckq\",jqWxU5uyJ:\"framer-v-13ltieg\",pH4HF3bBJ:\"framer-v-1v1idbt\",sIMNx0D0g:\"framer-v-1d7mel0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};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:\"ftme0WDoO\",Disabled:\"BnQzERM8b\",Error:\"jqWxU5uyJ\",Loading:\"sIMNx0D0g\",Success:\"pH4HF3bBJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ftme0WDoO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ftme0WDoO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"sIMNx0D0g\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"sIMNx0D0g\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-134wckq\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"ftme0WDoO\",ref:ref??ref1,style:{backgroundColor:\"rgb(51, 51, 51)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"ftme0WDoO-hover\":{backgroundColor:\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",opacity:1},\"ftme0WDoO-pressed\":{opacity:1},BnQzERM8b:{opacity:.5},jqWxU5uyJ:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},pH4HF3bBJ:{opacity:1}},...addPropertyOverrides({\"ftme0WDoO-hover\":{\"data-framer-name\":undefined},\"ftme0WDoO-pressed\":{\"data-framer-name\":undefined},BnQzERM8b:{\"data-framer-name\":\"Disabled\"},jqWxU5uyJ:{\"data-framer-name\":\"Error\"},pH4HF3bBJ:{\"data-framer-name\":\"Success\"},sIMNx0D0g:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,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, 255, 255))\"},children:\"Submit\"})}),className:\"framer-6el9bp\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Q9fox2ZmQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{jqWxU5uyJ:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jqWxU5uyJ:{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\"})})},pH4HF3bBJ:{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, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-unsc4r\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"pm0oMsNfp\",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-xebtvj\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"irxFZltg6\",style:{background:'conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52)) /* {\"name\":\"Vivid\"} */ 342deg)',mask:\"none\",WebkitMask:\"none\"},variants:{sIMNx0D0g:{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-d4lqwj\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"W3ZgfQwSk\",style:{backgroundColor:\"var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wZnk9.framer-1vehgg9, .framer-wZnk9 .framer-1vehgg9 { display: block; }\",\".framer-wZnk9.framer-134wckq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-wZnk9 .framer-6el9bp { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-wZnk9 .framer-unsc4r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-wZnk9 .framer-xebtvj { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-wZnk9 .framer-d4lqwj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wZnk9.framer-134wckq { gap: 0px; } .framer-wZnk9.framer-134wckq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-wZnk9.framer-134wckq > :first-child { margin-left: 0px; } .framer-wZnk9.framer-134wckq > :last-child { margin-right: 0px; } }\",\".framer-wZnk9.framer-v-1d7mel0.framer-134wckq, .framer-wZnk9.framer-v-1hjs09a.framer-134wckq, .framer-wZnk9.framer-v-1v1idbt.framer-134wckq, .framer-wZnk9.framer-v-13ltieg.framer-134wckq { cursor: unset; }\",\".framer-wZnk9.framer-v-1d7mel0 .framer-xebtvj { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sIMNx0D0g\":{\"layout\":[\"fixed\",\"fixed\"]},\"BnQzERM8b\":{\"layout\":[\"fixed\",\"fixed\"]},\"pH4HF3bBJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"jqWxU5uyJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"mRmoFtBEQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"UbXFY1G0P\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriAJYOAr8Z=withCSS(Component,css,\"framer-wZnk9\");export default FrameriAJYOAr8Z;FrameriAJYOAr8Z.displayName=\"Submit Button 4\";FrameriAJYOAr8Z.defaultProps={height:40,width:240};addPropertyControls(FrameriAJYOAr8Z,{variant:{options:[\"ftme0WDoO\",\"sIMNx0D0g\",\"BnQzERM8b\",\"pH4HF3bBJ\",\"jqWxU5uyJ\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriAJYOAr8Z,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriAJYOAr8Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sIMNx0D0g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BnQzERM8b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pH4HF3bBJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jqWxU5uyJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mRmoFtBEQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UbXFY1G0P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iAJYOAr8Z.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,FormContainer,FormPlainTextInput,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonsInput from\"https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/Qxph0FTG0p4K4zE70bGs/ButtonsInput.js\";import FormPageLabel from\"https://framerusercontent.com/modules/CAiPOh5jW8sjhKQGY1KE/McPhA85jGy4xGOX7Dboz/FormPageLabel.js\";import MultiStepFormButton from\"https://framerusercontent.com/modules/fPSKMdnAZGIeyDfLV8KP/UF1CreM6AP9OrHJ5kt1D/MultiStepFormButton.js\";import MultiStepForm from\"https://framerusercontent.com/modules/wV9SghwspjN8vk1MgoSi/jK6W9I4VdUpVRrPPcIq5/MultiStepForm.js\";import SubmitButton4 from\"https://framerusercontent.com/modules/1aROsO11PPI7K3O12Jdh/R0W81iTwbQHjFIpgXf1v/iAJYOAr8Z.js\";const MultiStepFormFonts=getFonts(MultiStepForm);const ButtonsInputFonts=getFonts(ButtonsInput);const SubmitButton4Fonts=getFonts(SubmitButton4);const FormPageLabelFonts=getFonts(FormPageLabel);const MultiStepFormButtonFonts=getFonts(MultiStepFormButton);const serializationHash=\"framer-AeUal\";const variantClassNames={GPJaTRdV_:\"framer-v-lhkf5d\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GPJaTRdV_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lhkf5d\",className,classNames),\"data-framer-name\":\"Primary Form\",layoutDependency:layoutDependency,layoutId:\"GPJaTRdV_\",ref:ref??ref1,style:{backgroundColor:\"var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/189dc8af-810b-48f6-a73a-2cca4fd930b3/submit\",className:\"framer-88jzca\",\"data-framer-name\":\"Multi-Step Form\",layoutDependency:layoutDependency,layoutId:\"mNakvEZOb\",style:{backgroundColor:\"var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlx1ap-container\",layoutDependency:layoutDependency,layoutId:\"sHDmEhh4b-container\",children:/*#__PURE__*/_jsx(MultiStepForm,{analytics:{googleAnalyticsEventCategory:\"\",googleAnalyticsEventName:\"Lead Form\",platform:\"googleAnalytics\"},endPage:\"lastPage\",endPageCustom:[],height:\"100%\",id:\"sHDmEhh4b\",layoutId:\"sHDmEhh4b\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-94yrlr\",\"data-framer-name\":\"Pages\",layoutDependency:layoutDependency,layoutId:\"NyE3YA4PZ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-warayv\",\"data-framer-name\":\"Page 1\",layoutDependency:layoutDependency,layoutId:\"QgvHFIM0k\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14u8oiz\",layoutDependency:layoutDependency,layoutId:\"XZHNEI_Cy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TG9yYS1tZWRpdW0=\",\"--framer-font-family\":'\"Lora\", \"Lora Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17)))\"},children:\"Book An Appointment\"})}),className:\"framer-jzj41y\",fonts:[\"FS;Lora-medium\"],layoutDependency:layoutDependency,layoutId:\"P3Aor26iJ\",style:{\"--extracted-r6o4lv\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-591sel\",\"data-framer-name\":\"Page 1\",layoutDependency:layoutDependency,layoutId:\"NGIddyllq\",children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-1ne0uv2\",layoutDependency:layoutDependency,layoutId:\"RNCf8uVmz\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ybtnao\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"JgeDx_912\",placeholder:\"Name*\",required:true,style:{\"--framer-input-background\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\"},type:\"text\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1kdcvew\",layoutDependency:layoutDependency,layoutId:\"iNSfEf_2A\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-q33tgz\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"XE8FjtPSA\",placeholder:\"Email Address*\",required:true,style:{\"--framer-input-background\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\"},type:\"email\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1c06z8v\",layoutDependency:layoutDependency,layoutId:\"dCzjMoqsA\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-bba1cw\",inputName:\"Phone Number\",layoutDependency:layoutDependency,layoutId:\"XCv0439zz\",placeholder:\"Phone Number*\",required:true,style:{\"--framer-input-background\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\"},type:\"tel\"})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mwivt8\",\"data-framer-name\":\"Page 2\",layoutDependency:layoutDependency,layoutId:\"ENLavnER0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17)))\"},children:\"Tattoo Or Piercing?\"})}),className:\"framer-1kj8bk5\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"tMkv4nQCm\",style:{\"--extracted-r6o4lv\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-cqsxjs\",\"data-framer-name\":\"Input/Image Select\",layoutDependency:layoutDependency,layoutId:\"ubGtrfXWe\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mkjl60-container\",layoutDependency:layoutDependency,layoutId:\"fJj0t1rPo-container\",children:/*#__PURE__*/_jsx(ButtonsInput,{bgBlur:0,border:{colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",colorOff:\"rgba(136, 136, 136, 0.1)\",colorOn:\"rgb(0, 153, 255)\",style:\"solid\",width:\"1px\"},clickAction:\"nextPage\",fill:{colorAOff:\"rgb(187, 187, 187)\",colorAOn:\"rgb(102, 194, 255)\",colorBOff:\"rgb(103, 103, 103)\",colorBOn:\"rgb(0, 153, 255)\",colorOff:\"var(--token-5eff0085-7596-4e54-8930-a502ffda818e, rgb(9, 9, 11))\",colorOn:\"var(--token-53bffd67-7f50-4dcf-acfc-b8c0ff38d33d, rgb(48, 48, 48))\",gradientAngle:0,type:\"color\"},height:\"100%\",id:\"fJj0t1rPo\",imageOptions:{alignV:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"fixed\",radius:\"0px\"},layout:{alignH:\"start\",alignV:\"start\",columns:2,gapH:20,gapV:20,height:\"fill\"},layoutId:\"fJj0t1rPo\",multiSelect:false,name:\"Tattoo or Piercing\",options:[{image:addImageAlt({src:\"https://framerusercontent.com/images/UjhkHH6NFQT4qm184oYna5fYDmo.png\"},\"\"),title:\"Tattoo\",value:\"Tattoo\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/0hKOlioPvjAoEjmnMJyb0s9UUEg.png\"},\"\"),title:\"Piercing\",value:\"Piercing\"}],padding:\"20px\",radius:\"10px\",required:false,style:{width:\"100%\"},textOptions:{colorOff:\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",colorOn:\"var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52))\",font:{fontFamily:'\"Lora\", \"Lora Placeholder\", serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\",textAlign:\"center\"},gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"},valueSeparator:\", \",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vfct3h\",\"data-framer-name\":\"Page 3\",layoutDependency:layoutDependency,layoutId:\"HbAOIhVK3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nmpzh1\",layoutDependency:layoutDependency,layoutId:\"g1MMZe_EA\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17)))\"},children:\"Which Tattoo Artist?\"})}),className:\"framer-1dq6mg8\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"WJYJvfC4C\",style:{\"--extracted-r6o4lv\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-v5diya\",\"data-framer-name\":\"Input/Image Select\",layoutDependency:layoutDependency,layoutId:\"AuCgUTIVW\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cudkiz-container\",layoutDependency:layoutDependency,layoutId:\"vUCW4crA1-container\",children:/*#__PURE__*/_jsx(ButtonsInput,{bgBlur:0,border:{colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",colorOff:\"rgba(136, 136, 136, 0.1)\",colorOn:\"rgb(0, 153, 255)\",style:\"solid\",width:\"1px\"},clickAction:\"nextPage\",fill:{colorAOff:\"rgb(187, 187, 187)\",colorAOn:\"rgb(102, 194, 255)\",colorBOff:\"rgb(103, 103, 103)\",colorBOn:\"rgb(0, 153, 255)\",colorOff:\"var(--token-5eff0085-7596-4e54-8930-a502ffda818e, rgb(9, 9, 11))\",colorOn:\"var(--token-53bffd67-7f50-4dcf-acfc-b8c0ff38d33d, rgb(48, 48, 48))\",gradientAngle:0,type:\"color\"},height:\"100%\",id:\"vUCW4crA1\",imageOptions:{alignV:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"fixed\",radius:\"5px\"},layout:{alignH:\"start\",alignV:\"start\",columns:3,gapH:10,gapV:10,height:\"fill\"},layoutId:\"vUCW4crA1\",multiSelect:false,name:\"Artists Select\",options:[{image:addImageAlt({src:\"https://framerusercontent.com/images/5cCCXEhmjnzBqldU1qAXBVo6Co.jpeg\",srcSet:\"https://framerusercontent.com/images/5cCCXEhmjnzBqldU1qAXBVo6Co.jpeg?scale-down-to=1024 819w,https://framerusercontent.com/images/5cCCXEhmjnzBqldU1qAXBVo6Co.jpeg 1440w\"},\"\"),title:\"Andrew Robledo\",value:\"Andrew Robledo\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/0ADMXnQOrNvX1R6iYisyFCgiYoo.jpeg\",srcSet:\"https://framerusercontent.com/images/0ADMXnQOrNvX1R6iYisyFCgiYoo.jpeg?scale-down-to=1024 898w,https://framerusercontent.com/images/0ADMXnQOrNvX1R6iYisyFCgiYoo.jpeg 918w\"},\"\"),title:\"Sely\",value:\"Sely\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/Hbhzw2vbueFzUXD6bFBEQx4pg.jpeg\"},\"Myles\"),title:\"Myles\",value:\"Myles\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/YYPycjsGEChuP7SBdK4AP2eDik.jpeg\",srcSet:\"https://framerusercontent.com/images/YYPycjsGEChuP7SBdK4AP2eDik.jpeg?scale-down-to=1024 819w,https://framerusercontent.com/images/YYPycjsGEChuP7SBdK4AP2eDik.jpeg 1440w\"},\"\"),title:\"Sikes\",value:\"Sikes\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/IHkAg82ZgsyowPdmuHMSmI4AMU.jpeg\",srcSet:\"https://framerusercontent.com/images/IHkAg82ZgsyowPdmuHMSmI4AMU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IHkAg82ZgsyowPdmuHMSmI4AMU.jpeg 880w\"},\"\"),title:\"Alain Samon\",value:\"Alain Samon\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/8P7PzQXj7R2FtFcIvYXyanhn4g.jpeg\",srcSet:\"https://framerusercontent.com/images/8P7PzQXj7R2FtFcIvYXyanhn4g.jpeg 750w\"},\"\"),title:\"Dasc Tats\",value:\"Dasc Tats\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/UNbXcS4mSTGCJttMvOpGzc2G6E.jpeg\"},\"\"),title:\"Mike Wayne\",value:\"Mike Wayne\"},{image:addImageAlt({src:\"https://framerusercontent.com/images/hs7rzFOjrPeQp1Hqq5uRQAmI88Q.jpg\",srcSet:\"https://framerusercontent.com/images/hs7rzFOjrPeQp1Hqq5uRQAmI88Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hs7rzFOjrPeQp1Hqq5uRQAmI88Q.jpg 960w\"},\"\"),title:\"Mari Burkhalter  (Piercings)\",value:\"Mari Burkhalter (Piercings)\"}],padding:\"10px\",radius:\"10px\",required:false,style:{width:\"100%\"},textOptions:{colorOff:\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",colorOn:\"var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, rgb(191, 142, 52))\",font:{fontFamily:'\"Lora\", \"Lora Placeholder\", serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"},valueSeparator:\", \",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4fhr2z\",\"data-framer-name\":\"Page 4\",layoutDependency:layoutDependency,layoutId:\"kYcOxz_zj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17)))\"},children:\"What can we do for you?\"})}),className:\"framer-1g5p53w\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"eYAc_Rya2\",style:{\"--extracted-r6o4lv\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1pyzc5u\",\"data-framer-name\":\"Input/Text\",layoutDependency:layoutDependency,layoutId:\"NsNqDUUam\",children:[/*#__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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17)))\"},children:\"Describe your tattoo or piercing request.\"})}),className:\"framer-2oaym8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ZUw9G8cx8\",style:{\"--extracted-r6o4lv\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1m3vbjw\",inputName:\"Request\",layoutDependency:layoutDependency,layoutId:\"zQxZ5XyRx\",placeholder:\"Description\",style:{\"--framer-input-background\":\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-2507b644-ca70-48b4-8a80-9e3124a5c985, rgb(250, 250, 250))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-0afd1640-42dc-4cc1-b5d4-5e8497504d30, rgb(128, 128, 128))\"},type:\"textarea\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"300px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aag5uv-container\",layoutDependency:layoutDependency,layoutId:\"VvP2ASIjo-container\",children:/*#__PURE__*/_jsx(SubmitButton4,{height:\"100%\",id:\"VvP2ASIjo\",layoutId:\"VvP2ASIjo\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"jqWxU5uyJ\",pending:\"sIMNx0D0g\",success:\"pH4HF3bBJ\"},\"ftme0WDoO\"),width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hinqag\",layoutDependency:layoutDependency,layoutId:\"LsjE4c7eZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-49rkww-container\",layoutDependency:layoutDependency,layoutId:\"gbnMXdZmF-container\",children:/*#__PURE__*/_jsx(FormPageLabel,{color:\"var(--token-2e55662e-d6bf-4329-b432-3c735e37723b, rgb(17, 17, 17))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},height:\"100%\",htmlTag:\"p\",id:\"gbnMXdZmF\",layoutId:\"gbnMXdZmF\",text:\"Step [page] / [totalPages]\",textSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g925aa\",layoutDependency:layoutDependency,layoutId:\"Y6z2STBgQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwlogi-container\",\"data-framer-name\":\"Previous Button\",layoutDependency:layoutDependency,layoutId:\"VuZ9t4t9X-container\",name:\"Previous Button\",children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"default\",autoHide:true,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(255, 255, 255)\",customLayer:[],fill:{color:\"rgb(51, 51, 51)\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"VuZ9t4t9X\",layoutId:\"VuZ9t4t9X\",name:\"Previous Button\",padding:\"10px 16px 10px 16px\",page:\"previous\",radius:\"10px\",shadows:\"\",text:\"Previous\",transition:{duration:0,type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-azyukx-container\",\"data-framer-name\":\"Next Button\",layoutDependency:layoutDependency,layoutId:\"BMjnLDM17-container\",name:\"Next Button\",children:/*#__PURE__*/_jsx(MultiStepFormButton,{appearance:\"default\",autoHide:true,border:{color:\"rgba(0, 153, 255, 0)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(255, 255, 255)\",customLayer:[],fill:{color:\"rgb(51, 51, 51)\",colorA:\"rgb(140, 140, 140)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"BMjnLDM17\",layoutId:\"BMjnLDM17\",name:\"Next Button\",padding:\"10px 16px 10px 16px\",page:\"next\",radius:\"10px\",shadows:\"\",text:\"Next\",transition:{duration:0,type:\"tween\"},width:\"100%\"})})})]})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AeUal.framer-v0avg9, .framer-AeUal .framer-v0avg9 { display: block; }\",\".framer-AeUal.framer-lhkf5d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-AeUal .framer-88jzca { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-AeUal .framer-nlx1ap-container, .framer-AeUal .framer-49rkww-container, .framer-AeUal .framer-hwlogi-container, .framer-AeUal .framer-azyukx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AeUal .framer-94yrlr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-warayv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; min-height: 150px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-14u8oiz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-jzj41y, .framer-AeUal .framer-1kj8bk5, .framer-AeUal .framer-1dq6mg8, .framer-AeUal .framer-1g5p53w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AeUal .framer-591sel, .framer-AeUal .framer-4fhr2z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-1ne0uv2, .framer-AeUal .framer-1kdcvew, .framer-AeUal .framer-1c06z8v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-AeUal .framer-1ybtnao, .framer-AeUal .framer-q33tgz, .framer-AeUal .framer-bba1cw { --framer-input-focused-border-color: var(--token-53bffd67-7f50-4dcf-acfc-b8c0ff38d33d, #303030); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-AeUal .framer-mwivt8, .framer-AeUal .framer-vfct3h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 150px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-cqsxjs, .framer-AeUal .framer-v5diya { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-AeUal .framer-1mkjl60-container, .framer-AeUal .framer-1cudkiz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AeUal .framer-nmpzh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 21px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-1pyzc5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-2oaym8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-AeUal .framer-1m3vbjw { --framer-input-focused-border-color: var(--token-53bffd67-7f50-4dcf-acfc-b8c0ff38d33d, #303030); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-AeUal .framer-1aag5uv-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-AeUal .framer-1hinqag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 0px; position: relative; width: 100%; }\",\".framer-AeUal .framer-1g925aa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AeUal.framer-lhkf5d, .framer-AeUal .framer-88jzca, .framer-AeUal .framer-94yrlr, .framer-AeUal .framer-warayv, .framer-AeUal .framer-14u8oiz, .framer-AeUal .framer-591sel, .framer-AeUal .framer-1ne0uv2, .framer-AeUal .framer-1kdcvew, .framer-AeUal .framer-1c06z8v, .framer-AeUal .framer-mwivt8, .framer-AeUal .framer-cqsxjs, .framer-AeUal .framer-vfct3h, .framer-AeUal .framer-nmpzh1, .framer-AeUal .framer-v5diya, .framer-AeUal .framer-4fhr2z, .framer-AeUal .framer-1pyzc5u, .framer-AeUal .framer-1g925aa { gap: 0px; } .framer-AeUal.framer-lhkf5d > *, .framer-AeUal .framer-14u8oiz > *, .framer-AeUal .framer-1ne0uv2 > *, .framer-AeUal .framer-1kdcvew > *, .framer-AeUal .framer-1c06z8v > *, .framer-AeUal .framer-cqsxjs > *, .framer-AeUal .framer-nmpzh1 > *, .framer-AeUal .framer-v5diya > *, .framer-AeUal .framer-1pyzc5u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AeUal.framer-lhkf5d > :first-child, .framer-AeUal .framer-88jzca > :first-child, .framer-AeUal .framer-94yrlr > :first-child, .framer-AeUal .framer-warayv > :first-child, .framer-AeUal .framer-14u8oiz > :first-child, .framer-AeUal .framer-591sel > :first-child, .framer-AeUal .framer-1ne0uv2 > :first-child, .framer-AeUal .framer-1kdcvew > :first-child, .framer-AeUal .framer-1c06z8v > :first-child, .framer-AeUal .framer-mwivt8 > :first-child, .framer-AeUal .framer-cqsxjs > :first-child, .framer-AeUal .framer-vfct3h > :first-child, .framer-AeUal .framer-nmpzh1 > :first-child, .framer-AeUal .framer-v5diya > :first-child, .framer-AeUal .framer-4fhr2z > :first-child, .framer-AeUal .framer-1pyzc5u > :first-child { margin-top: 0px; } .framer-AeUal.framer-lhkf5d > :last-child, .framer-AeUal .framer-88jzca > :last-child, .framer-AeUal .framer-94yrlr > :last-child, .framer-AeUal .framer-warayv > :last-child, .framer-AeUal .framer-14u8oiz > :last-child, .framer-AeUal .framer-591sel > :last-child, .framer-AeUal .framer-1ne0uv2 > :last-child, .framer-AeUal .framer-1kdcvew > :last-child, .framer-AeUal .framer-1c06z8v > :last-child, .framer-AeUal .framer-mwivt8 > :last-child, .framer-AeUal .framer-cqsxjs > :last-child, .framer-AeUal .framer-vfct3h > :last-child, .framer-AeUal .framer-nmpzh1 > :last-child, .framer-AeUal .framer-v5diya > :last-child, .framer-AeUal .framer-4fhr2z > :last-child, .framer-AeUal .framer-1pyzc5u > :last-child { margin-bottom: 0px; } .framer-AeUal .framer-88jzca > *, .framer-AeUal .framer-591sel > *, .framer-AeUal .framer-mwivt8 > *, .framer-AeUal .framer-vfct3h > *, .framer-AeUal .framer-4fhr2z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AeUal .framer-94yrlr > *, .framer-AeUal .framer-warayv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AeUal .framer-1g925aa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AeUal .framer-1g925aa > :first-child { margin-left: 0px; } .framer-AeUal .framer-1g925aa > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1507.5\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH7kRhoTh1=withCSS(Component,css,\"framer-AeUal\");export default FramerH7kRhoTh1;FramerH7kRhoTh1.displayName=\"Lead Form\";FramerH7kRhoTh1.defaultProps={height:1507.5,width:340};addFonts(FramerH7kRhoTh1,[{explicitInter:true,fonts:[{family:\"Lora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UZVLDSVSCU6EHBA34MAMH3Z2RHDHB3QE/2GS24NKY26JCCD3ZHG5B4BSZKB4M5UH3/FKKAYEWGEGLZTIS3AJ3RN5KHPKRTYLGL.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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\"},{family:\"Lora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YQA3KKRVULCXJDCXSAONFQCA74AMMQFS/RGNGUOW44MB34GT7X2FQPGZNLW2Z3P3F/ZAXBVAFTWGWMVEZN7M2EPCUJJ4KGZZCI.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/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:\"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\"}]},...MultiStepFormFonts,...ButtonsInputFonts,...SubmitButton4Fonts,...FormPageLabelFonts,...MultiStepFormButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH7kRhoTh1\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1507.5\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"340\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "useInstanceId", "ae", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "disabled", "parentRef", "internalRef", "pe", "ref", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "fillProp", "onOff", "focus", "invalid", "optional", "hidden", "color", "colorA", "colorB", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "shadowsProp", "getFormInfo", "element", "form", "formId", "pages", "uuid", "d", "d2", "c", "r", "ButtonsInput", "props", "clickAction", "options", "textOptions", "imageOptions", "layout", "border", "shadows", "valueSeparator", "id", "useInstanceId", "isCanvas", "RenderTarget", "multiSelect", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "value", "setValue", "ye", "invalid", "setInvalid", "nextPageQueued", "setNextPageQueued", "formId", "setFormId", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "onSetValueEvent", "event", "imageStyle", "rows", "i", "option", "selected", "layoutProps", "color", "boxShadow", "borderColor", "onClick", "v", "u", "motion", "createBackground", "p", "Image2", "Border", "HiddenInput", "items", "index", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "createId", "HideElementComponent", "Y", "ref", "p", "HIDDEN_CLASS_NAME", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "createId", "u", "CANVAS_HIDDEN_CLASS_NAME", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "fillProp", "onOff", "focus", "invalid", "optional", "hidden", "color", "colorA", "colorB", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "useCanvasState", "ref", "totalPages", "setTotalPages", "ye", "ue", "element", "pages", "updateState", "multiStepForms", "multiStepForm", "form", "isAncestor", "observer", "mutationsList", "mutation", "ancestorElement", "descendantElement", "currentElement", "getFormInfo", "formId", "uuid", "d", "d2", "c", "r", "FormPageLabel", "props", "_props_style", "Tag", "isCanvas", "RenderTarget", "ref", "pe", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "canvasState", "useCanvasState", "formId", "setFormId", "ye", "state", "ue", "newFormId", "getFormInfo", "_state_totalPages", "p", "addPropertyControls", "ControlType", "CANVAS_HIDDEN_CLASS_NAME", "MultiStepFormButton", "props", "_props_border", "_props_border1", "_props_font", "_props_style", "_props_border2", "prev", "isCanvas", "RenderTarget", "isOptimizing", "window", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "formId", "setFormId", "ye", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "hidden", "page", "p", "HideElement", "onClick", "_props_click", "_props_customLayer", "_props_style1", "_props_style2", "layer", "width", "height", "q", "_props_border_colorFocus", "u", "motion", "createBackground", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "OPTIMIZATION_CLASS_NAME", "SUBMIT_BUTTON_HIDDEN_ATTRIBUTE", "MultiStepFormComponent", "props", "scrollToTop", "id", "createId", "isCanvas", "RenderTarget", "isOptimizing", "window", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "formInfo", "setFormInfo", "ye", "stateRef", "pe", "ref", "pageVideosRef", "isFirstRenderRef", "state", "pageHistory", "ue", "getFormInfo", "formId", "form", "pages", "previousPage", "_stateRef_current", "prev", "nextPage", "page", "logicConfigs", "newPage", "_pages_children", "pageElement", "logic", "isAncestor", "nextPageName", "nextPageIndex", "getChildIndexByDataFramerName", "isFormValid", "prevState", "isPageAnEndPage", "setPageHistoryLength", "newLength", "_prev_formId", "_prev_formId_pageHistory", "pageElements", "i", "videos", "video", "pauseVideo", "unmountFunction", "onEnterPress", "event", "currentInput", "previousElement", "foundPage", "newElement", "currentPage", "stopEvent", "inputs", "getInputsOnPage", "currentIndex", "_ref_current", "_formInfo_form_querySelector", "_formInfo_form", "submitButton", "_state_logicConfigs", "_pages_children_i", "input", "_pages_children_i1", "pageIndex", "pageVideos", "top", "windowScrollTop", "autoFocusInputOnPage", "fireAnalyticsEvent", "u", "HiddenComponentLabel", "p", "MultiStepForm", "withCSS", "MultiStepForm_default", "addPropertyControls", "ControlType", "element", "invalidInputs", "isVisible", "parentElement", "name", "children", "endPageMode", "customEndPages", "isEndPage", "step", "analytics", "params", "el", "autofocusElements", "visibleElements", "style", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText", "css", "FrameriAJYOAr8Z", "withCSS", "iAJYOAr8Z_default", "addPropertyControls", "ControlType", "addFonts", "MultiStepFormFonts", "getFonts", "MultiStepForm_default", "ButtonsInputFonts", "ButtonsInput", "SubmitButton4Fonts", "iAJYOAr8Z_default", "FormPageLabelFonts", "FormPageLabel", "MultiStepFormButtonFonts", "MultiStepFormButton", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "formVariants", "form", "variants", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "FormContainer", "formState", "u", "l", "ComponentViewportProvider", "MultiStepForm_default", "RichText", "FormPlainTextInput2", "ButtonsInput", "iAJYOAr8Z_default", "FormPageLabel", "MultiStepFormButton", "css", "FramerH7kRhoTh1", "withCSS", "H7kRhoTh1_default", "addFonts", "MultiStepFormFonts", "ButtonsInputFonts", "SubmitButton4Fonts", "FormPageLabelFonts", "MultiStepFormButtonFonts"]
}
