{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/28d2a4VreVXZoJwmw7cr/oarz2xYCndsXWaAGjJfJ/LogicBlock.js", "ssg:https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/NFTPoc8dJTXrWQecr5kR/ButtonsInput.js", "ssg:https://framerusercontent.com/modules/fPSKMdnAZGIeyDfLV8KP/Tlv6yMIOJgGh6ix4JfwE/MultiStepFormButton.js", "ssg:https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/YdWvQpq66jwG0GjLf2ex/TextInput.js", "ssg:https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/IN51EkCzXUVQdYgSdAXx/FileUploadInput.js", "ssg:https://framerusercontent.com/modules/wV9SghwspjN8vk1MgoSi/AYpasonb3YejzyMnKk8s/MultiStepForm.js", "ssg:https://framerusercontent.com/modules/Zuk86uj5PhShOngUy3yE/FWdR2qj0foz00NhNs1PV/G22mcmNJC.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{HiddenComponentLabel,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/FramerFormsShared.js\";const labelFormats={isSet:\"Name\",isNotSet:\"Not Name\",equals:\"Name = Value\",doesNotEqual:\"Name \u2260 Value\",startsWith:\"Name starts with Value\",doesNotStartWith:\"Name does not start with Value\",endsWith:\"Name ends with Value\",doesNotEndWith:\"Name does not end with Value\",contains:\"Name contains Value\",doesNotContain:\"Name does not contain Value\",greaterThan:\"Name > Value\",lessThan:\"Name < Value\",greaterThanOrEqualTo:\"Name \u2265 Value\",lessThanOrEqualTo:\"Name \u2264 Value\",isBefore:\"Name is before Value\",isAfter:\"Name is after Value\",isBetweenDates:\"Name is between Value\"};/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n */export default function LogicBlock(props){const{conditions,defaultCondition}=props;const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[formInfo,setFormInfo]=useState(null);const ref=useRef(null);useEffect(()=>{setFormInfo(getFormInfo(ref.current));},[ref]);useEffect(()=>{const form=formInfo===null||formInfo===void 0?void 0:formInfo.form;const formId=formInfo===null||formInfo===void 0?void 0:formInfo.formId;if(formId&&multiStepFormState[formId]){const getNextPage=()=>{for(const condition of conditions){var _form_querySelector;const value=(condition.type==\"radio\"?getRadioValue(form,condition.inputName):(_form_querySelector=form.querySelector(`[name=\"${condition.inputName}\"]`))===null||_form_querySelector===void 0?void 0:_form_querySelector.value)||\"\";const result=checkCondition(condition,value);if(result){return condition.pageName;}}return defaultCondition.pageName;};setMultiStepFormState(prev=>({[formId]:{...prev[formId],logicConfigs:[...prev[formId].logicConfigs,{getNextPage,ref}]}}));}},[formInfo]);return /*#__PURE__*/_jsx(HiddenComponentLabel,{text:\"Multi-Step Form Logic\",subtext:conditions.map(condition=>{const type=condition.type;const labelFormat=type==\"checkbox\"?condition.checkboxValue?\"isSet\":\"isNotSet\":labelFormats[condition[`${type}Condition`]]||\"\";let value=type==\"date\"?condition.dateCondition==\"isBetweenDates\"?`${formatDate(condition.dateValueStart)} and ${formatDate(condition.dateValueEnd)}`:formatDate(condition.dateValue):String(condition[`${type}Value`]);return`${labelFormat.replace(\"Name\",condition.inputName).replace(\"Value\",value)} \u2192 ${condition.pageName||\"[None]\"}`;}).join(\"\\n\")+`${conditions.length?\"\\n\":\"\"}Default: ${defaultCondition.pageName?defaultCondition.pageName:\"Next Page\"}`,ref:ref,\"data-framerforms-logic\":true});}LogicBlock.displayName=\"Form Logic Config\";addPropertyControls(LogicBlock,{conditions:{type:ControlType.Array,title:\"Conditions\",control:{type:ControlType.Object,controls:{inputName:{type:ControlType.String,defaultValue:\"\",placeholder:\"Input Name\"},type:{type:ControlType.Enum,defaultValue:\"text\",options:[\"text\",\"select\",\"radio\",\"number\",\"date\",\"checkbox\",\"fileUpload\"],optionTitles:[\"Text\",\"Select\",\"Radio\",\"Number\",\"Date\",\"Checkbox\",\"File Upload\"]},textCondition:{type:ControlType.Enum,defaultValue:\"equals\",title:\"Condition\",options:[\"isSet\",\"isNotSet\",\"equals\",\"doesNotEqual\",\"startsWith\",\"doesNotStartWith\",\"endsWith\",\"doesNotEndWith\",\"contains\",\"doesNotContain\"],optionTitles:[\"Is Set\",\"Is Not Set\",\"Equals\",\"Does Not Equal\",\"Starts With\",\"Does Not Start With\",\"Ends With\",\"Does Not End With\",\"Contains\",\"Does Not Contain\"],hidden:props=>props.type!==\"text\"},textValue:{type:ControlType.String,defaultValue:\"\",placeholder:\"Empty\",title:\"Value\",hidden:props=>props.type!==\"text\"||props.textCondition===\"isSet\"||props.textCondition===\"isNotSet\"},selectCondition:{type:ControlType.Enum,defaultValue:\"equals\",options:[\"isSet\",\"isNotSet\",\"equals\",\"doesNotEqual\"],optionTitles:[\"Is Set\",\"Is Not Set\",\"Equals\",\"Does Not Equal\"],title:\"Condition\",hidden:props=>props.type!==\"select\"},selectValue:{type:ControlType.String,defaultValue:\"\",placeholder:\"Empty\",title:\"Value\",hidden:props=>props.type!==\"select\"||props.selectCondition===\"isSet\"||props.selectCondition===\"isNotSet\"},radioCondition:{type:ControlType.Enum,defaultValue:\"equals\",options:[\"equals\",\"doesNotEqual\"],optionTitles:[\"Equals\",\"Does Not Equal\"],title:\"Condition\",hidden:props=>props.type!==\"radio\"},radioValue:{type:ControlType.String,defaultValue:\"\",placeholder:\"Empty\",title:\"Value\",hidden:props=>props.type!==\"radio\"},checkboxValue:{type:ControlType.Boolean,title:\"Checked\",hidden:props=>props.type!==\"checkbox\"},numberCondition:{type:ControlType.Enum,defaultValue:\"equals\",title:\"Condition\",options:[\"equals\",\"doesNotEqual\",\"greaterThan\",\"lessThan\",\"greaterThanOrEqualTo\",\"lessThanOrEqualTo\"],optionTitles:[\"Equals\",\"Does Not Equal\",\"Greater Than\",\"Less Than\",\"Greater Than or Equal To\",\"Less Than or Equal To\"],hidden:props=>props.type!==\"number\"},numberValue:{type:ControlType.Number,defaultValue:0,displayStepper:true,title:\"Value\",hidden:props=>props.type!==\"number\"},dateCondition:{type:ControlType.Enum,defaultValue:\"equals\",title:\"Condition\",options:[\"equals\",\"doesNotEqual\",\"isBefore\",\"isAfter\",\"isBetweenDates\"],optionTitles:[\"Equals\",\"Does Not Equal\",\"Is Before\",\"Is After\",\"Is Between Dates\"],hidden:props=>props.type!==\"date\"},dateValue:{type:ControlType.Date,title:\"Value\",hidden:props=>props.type!==\"date\"||props.dateCondition==\"isBetweenDates\"},dateValueStart:{type:ControlType.Date,title:\"Start\",hidden:props=>props.type!==\"date\"||props.dateCondition!==\"isBetweenDates\"},dateValueEnd:{type:ControlType.Date,title:\"End\",hidden:props=>props.type!==\"date\"||props.dateCondition!==\"isBetweenDates\"},fileUploadCondition:{type:ControlType.Enum,defaultValue:\"equals\",title:\"Has File\",options:[\"isSet\",\"isNotSet\"],optionTitles:[\"Yes\",\"No\"],displaySegmentedControl:true,hidden:props=>props.type!==\"fileUpload\"},pageName:{type:ControlType.String,defaultValue:\"\",placeholder:\"Page Name\",title:\"Go To\"}}}},defaultCondition:{type:ControlType.Object,title:\"Default\",controls:{pageName:{type:ControlType.String,defaultValue:\"\",placeholder:\"Page Name\",title:\"Go To\",description:\"If blank, goes to the next page\"}}}});function checkCondition(condition,value){switch(condition.type){case\"text\":switch(condition.textCondition){case\"isSet\":return value!==\"\";case\"isNotSet\":return value===\"\";case\"equals\":return value===condition.textValue;case\"doesNotEqual\":return value!==condition.textValue;case\"startsWith\":return value.startsWith(condition.textValue);case\"doesNotStartWith\":return!value.startsWith(condition.textValue);case\"endsWith\":return value.endsWith(condition.textValue);case\"doesNotEndWith\":return!value.endsWith(condition.textValue);case\"contains\":return value.includes(condition.textValue);case\"doesNotContain\":return!value.includes(condition.textValue);}break;case\"select\":switch(condition.selectCondition){case\"isSet\":return value!==\"\";case\"isNotSet\":return value===\"\";case\"equals\":return value===condition.selectValue;case\"doesNotEqual\":return value!==condition.selectValue;}break;case\"radio\":switch(condition.radioCondition){case\"equals\":return value===condition.radioValue;case\"doesNotEqual\":return value!==condition.radioValue;}break;case\"number\":const number=parseFloat(value);switch(condition.numberCondition){case\"equals\":return number===condition.numberValue;case\"doesNotEqual\":return number!==condition.numberValue;case\"greaterThan\":return number>condition.numberValue;case\"lessThan\":return number<condition.numberValue;case\"greaterThanOrEqualTo\":return number>=condition.numberValue;case\"lessThanOrEqualTo\":return number<=condition.numberValue;}break;case\"date\":const date=new Date(value);switch(condition.dateCondition){case\"equals\":return date===condition.dateValue;case\"doesNotEqual\":return date!==condition.dateValue;case\"isBefore\":return date<condition.dateValue;case\"isAfter\":return date>condition.dateValue;case\"isBetweenDates\":return date>=condition.dateValueStart&&date<=condition.dateValueEnd;}break;case\"checkbox\":return value==\"on\"==condition.checkboxValue;case\"fileUpload\":switch(condition.fileUploadCondition){case\"isSet\":return value!=\"\";case\"isNotSet\":return value==\"\";}break;}return false;}function formatDate(dateString){if(!dateString){return\"mm/dd/yyyy\";}const date=dateString;let month=date.getMonth()+1// Months are zero-based\n;let day=date.getDate();let year=date.getFullYear();// Ensure month and day are two digits\nif(month<10)month=\"0\"+month;if(day<10)day=\"0\"+day;return`${month}/${day}/${year}`;}function getRadioValue(form,radioName){// Ensure the form exists\nif(!form){return null;}// Get the array of radio buttons by name\nvar radios=form.elements[radioName];// Ensure the radio buttons exist\nif(!radios){console.log(`Radio buttons with name \"${radioName}\" not found.`);return null;}// Iterate through the radio buttons to find the checked one\nfor(var i=0;i<radios.length;i++){if(radios[i].checked){return radios[i].value// Return the value of the checked radio button\n;}}// If no radio button is checked, return null\nreturn null;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LogicBlock\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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,createId,HiddenInput,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/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=props.id||createId();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){var _props_invalidEvent;(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);}},[invalid]);useEffect(()=>{if(nextPageQueued){var _state_nextPage;state===null||state===void 0?void 0:(_state_nextPage=state.nextPage)===null||_state_nextPage===void 0?void 0:_state_nextPage.call(state);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===null||textOptions===void 0?void 0:textOptions.colorInvalid)||(selected?textOptions===null||textOptions===void 0?void 0:textOptions.colorOn:textOptions===null||textOptions===void 0?void 0:textOptions.colorOff);const boxShadow=invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||(selected?shadows===null||shadows===void 0?void 0:shadows.on:shadows===null||shadows===void 0?void 0:shadows.off);const borderColor=invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||(selected?border===null||border===void 0?void 0:border.colorOn:border===null||border===void 0?void 0: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);}};var _textOptions_gap;rows[rows.length-1].push(/*#__PURE__*/_jsxs(motion.button,{type:\"button\",onClick:onClick,onKeyDown:event=>{if(event.key===\"Enter\"){onClick();}},onFocus:()=>{var _props_focusEvent;(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}},onBlur:props.blurEvent,whileFocus:{...createBackground(props.fill,null,true,invalid),color:(textOptions===null||textOptions===void 0?void 0:textOptions.colorFocus)||color,boxShadow:(shadows===null||shadows===void 0?void 0:shadows.focus)||boxShadow,borderColor:(border===null||border===void 0?void 0:border.colorFocus)||borderColor},animate:{...createBackground(props.fill,selected,false,invalid),color,boxShadow,borderColor},style:{position:\"relative\",display:\"flex\",flexDirection:(textOptions===null||textOptions===void 0?void 0:textOptions.location)==\"bottom\"?\"column-reverse\":\"column\",gap:(_textOptions_gap=textOptions===null||textOptions===void 0?void 0:textOptions.gap)!==null&&_textOptions_gap!==void 0?_textOptions_gap:0,padding:props.padding,borderRadius:props.radius,cursor:\"pointer\",overflow:\"hidden\",outline:\"none\",border:\"none\",...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\",{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\",{children:`\n\t\t\t\t.${id}-image > div {\n\t\t\t\t\tposition: relative !important;\n\t\t\t\t\t${imageOptions.aspectRatioMode==\"fixed\"?\"height: 100%;\":\"\"}\n\t\t\t\t}\n\t\t\t`})]});}ButtonsInput.displayName=\"Buttons Input\";addPropertyControls(ButtonsInput,{name:{type:ControlType.String,defaultValue:\"Buttons\",placeholder:\"Name\"},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:\"\"},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:\" \",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(),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\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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/mdboekOz3SVNYfwZPHBY/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,{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\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";import{motion}from\"framer\";import{createBackground,Border,parsePadding,fillProp,borderProp,shadowsProp,createId}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function TextInput(props){const{type,textAreaHeight,shadows,border}=props;const id=props.id||createId();const Element=type==\"textArea\"?\"textarea\":\"input\";const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);let attributes={};let styles={};if(type==\"textArea\"){const[pt,pr,pb,pl]=parsePadding(props.padding);const heightMode=textAreaHeight.mode;const autoHeightSupported=typeof CSS!==\"undefined\"?CSS.supports(\"field-sizing\",\"content\"):true;attributes.rows=heightMode==\"fixed\"?textAreaHeight.lines:1;styles={display:\"block\",minHeight:heightMode==\"auto\"&&!autoHeightSupported?`calc(${textAreaHeight.fallbackLines}lh + ${pt+pb}px)`:heightMode!==\"fixed\"?`calc(${textAreaHeight.minLines}lh + ${pt+pb}px)`:undefined,maxHeight:heightMode!==\"fixed\"?`calc(${textAreaHeight.maxLines}lh + ${pt+pb}px)`:undefined,fieldSizing:heightMode==\"auto\"&&autoHeightSupported?\"content\":undefined,resize:heightMode==\"resizable\"?\"vertical\":\"none\"};}const onFocus=()=>{var _props_focusEvent;setFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}};const onBlur=()=>{var _props_blurEvent;setFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);};const onInvalid=event=>{var _props_invalidEvent;event.preventDefault();setInvalid(true);(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);};return /*#__PURE__*/_jsxs(motion.div,{id:id,onFocus:onFocus,onBlur:onBlur,animate:{...createBackground(props.fill,null,focused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||focused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default),borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||focused&&(border===null||border===void 0?void 0:border.colorFocus)||(border===null||border===void 0?void 0:border.color)},style:{borderRadius:props.radius,overflow:type==\"textArea\"&&props.textAreaScrollbar==\"auto\"?\"hidden\":\"visible\",...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(Element,{name:props.name,required:props.required,autoFocus:props.autoFocus,placeholder:props.placeholder,minLength:props.minLengthEnabled?props.minLength:undefined,maxLength:props.maxLengthEnabled?props.maxLength:undefined,defaultValue:props.value,onInvalid:onInvalid,style:{display:\"block\",padding:props.padding,color:props.color,background:\"none\",border:\"none\",textOverflow:\"ellipsis\",...styles,...props.font,...props.style},...attributes}),/*#__PURE__*/_jsx(Border,{...props.border,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{children:`#${id} ${Element}::placeholder {\n                    color: ${props.placeholderColor};\n                }\n                #${id} ${Element}:focus {\n                    appearance: none;\n                    outline: none;\n                    border: none;\n                    display: none;\n                }`}),type==\"textArea\"&&props.textAreaScrollbar==\"hidden\"&&/*#__PURE__*/_jsx(\"style\",{children:`#${id} textarea::-webkit-scrollbar {\n                        display: none; /* WebKit browsers (Chrome, Safari) */\n                    }\n                    #${id} textarea {\n                        -ms-overflow-style: none; /* IE and Edge */\n                        scrollbar-width: none; /* Firefox */\n                    }`})]});}TextInput.displayName=\"Text Input\";addPropertyControls(TextInput,{name:{type:ControlType.String,defaultValue:\"Text\"},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},minLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Min Length\"},minLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.minLengthEnabled},maxLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Max Length\"},maxLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.maxLengthEnabled},value:{type:ControlType.String,placeholder:\"Default Value\"},type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"textArea\",\"input\"],optionTitles:[\"Yes\",\"No\"],displaySegmentedControl:true,title:\"Text Area\"},textAreaHeight:{type:ControlType.Object,title:\"Height\",controls:{mode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"resizable\",\"fixed\"],optionTitles:[\"Auto\",\"Resizable\",\"Fixed\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},minLines:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},maxLines:{type:ControlType.Number,defaultValue:8,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},lines:{type:ControlType.Number,defaultValue:5,min:1,step:1,displayStepper:true,hidden:props=>props.mode!==\"fixed\"},fallbackLines:{type:ControlType.Number,defaultValue:5,min:1,step:1,title:\"Fallback\",description:\"Auto height is [not supported on all browsers](https://caniuse.com/mdn-css_properties_field-sizing_content). Fallback is used when auto height is not supported.\",hidden:props=>props.mode!==\"auto\"}},hidden:props=>props.type!=\"textArea\"},textAreaScrollbar:{type:ControlType.Enum,defaultValue:\"hidden\",options:[\"auto\",\"hidden\"],optionTitles:[\"Auto\",\"Hidden\"],displaySegmentedControl:true,title:\"Scrollbar\",hidden:props=>props.type!=\"textArea\"},placeholder:{type:ControlType.String,defaultValue:\"Write here...\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp(),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp(),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextInput\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer\";import{createBackground,Border,borderProp,fillProp,createId,iconProp,Icon,HiddenInput}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/FramerFormsShared.js\";const presignedUrlApi=\"https://api.framerforms.com/s3/signed-url\";const MAX_SIZE_LIMIT_MB=25;const MAX_SIZE_LIMIT=MAX_SIZE_LIMIT_MB*1024*1024// 25MB in bytes\n;const LOADING_SPINNER=`url(\"data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 24C18.627 24 24 18.6274 24 12C24 5.37256 18.627 0 12 0C5.37305 0 0 5.37256 0 12C0 18.6274 5.37305 24 12 24ZM12 22C17.5234 22 22 17.5229 22 12C22 6.47705 17.5234 2 12 2C6.47656 2 2 6.47705 2 12C2 17.5229 6.47656 22 12 22Z' fill='%23FFFFFF'/%3E%3C/svg%3E\")`;/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function FileUploadInput(props){const{shadows,border,layout,icon}=props;const id=props.id||createId();const isVertical=props.layout.direction==\"vertical\";const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);const[fileName,setFileName]=useState(\"\");const[fileUploadUrl,setFileUploadUrl]=useState(\"\");const[isUploading,setIsUploading]=useState(false);const inputRef=useRef(null);useEffect(()=>{if(invalid){var _props_invalidEvent;(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);}},[invalid]);function onFocus(){var _props_focusEvent;setFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}}function onBlur(){var _props_blurEvent;setFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);}let fileTypes=\"\";switch(props.fileTypes){case\"audio\":fileTypes=\"audio/*\";break;case\"video\":fileTypes=\"video/*\";break;case\"image\":fileTypes=\"image/*\";break;case\"custom\":const fileTypeStrings=[];for(const fileType of props.fileTypesCustom){if(fileType.startsWith(\".\")||fileType==\"audio/*\"||fileType==\"video/*\"||fileType==\"image/*\"){fileTypeStrings.push(fileType);}else{fileTypeStrings.push(`.${fileType}`);}}fileTypes=fileTypeStrings.join(\",\");break;}async function onFileChange(event){const file=event.target.files[0];setFileName(file?file.name:\"\");setIsUploading(true);const result=await uploadFile(file);setFileUploadUrl((result===null||result===void 0?void 0:result.fileLocation)||\"\");setIsUploading(false);}function onKeyDown(event){if(event.key==\"Enter\"){var _inputRef_current;(_inputRef_current=inputRef.current)===null||_inputRef_current===void 0?void 0:_inputRef_current.click();}}return /*#__PURE__*/_jsxs(motion.div,{onFocus:onFocus,onBlur:onBlur,onKeyDown:onKeyDown,animate:{...createBackground(props.fill,null,focused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||focused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default),borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||focused&&(border===null||border===void 0?void 0:border.colorFocus)||(border===null||border===void 0?void 0:border.color)},style:{borderRadius:props.radius,padding:props.padding,color:props.color,display:\"flex\",flexDirection:`${isVertical?\"column\":\"row\"}${(icon===null||icon===void 0?void 0:icon.location)==\"end\"?\"-reverse\":\"\"}`,alignItems:isVertical?layout.alignH:\"center\",justifyContent:isVertical?\"center\":layout.alignH,gap:layout.gap,textAlign:\"center\",...props.font,...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required||isUploading,value:fileUploadUrl,setInvalid:setInvalid,noPrefill:true}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,type:\"file\",accept:fileTypes,autoFocus:props.autoFocus,onChange:onFileChange,style:{position:\"absolute\",inset:0,opacity:0,cursor:\"pointer\"},\"data-framerforms-no-prefill\":true}),icon&&(isUploading&&icon.spinner?/*#__PURE__*/_jsx(motion.div,{animate:{rotate:360},transition:{duration:1,repeat:Infinity,ease:\"linear\"},style:{width:icon.size,height:icon.size,background:`conic-gradient(from 0deg at 50% 50%, ${icon.color||props.color} 0%, transparent 100%)`,mask:LOADING_SPINNER,maskSize:icon.size}}):/*#__PURE__*/_jsx(Icon,{...icon,defaultImage:`url('data:image/svg+xml,${encodeURIComponent(`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"28\" height=\"28\"><path d=\"M 9.366 18.419 C 8.284 18.422 7.242 18.009 6.456 17.266 C 5.69 16.541 5.254 15.535 5.25 14.481 C 5.25 13.437 5.684 12.436 6.456 11.697 C 7.242 10.953 8.284 10.54 9.366 10.544 C 9.624 9.395 10.378 8.385 11.463 7.738 C 12.009 7.413 12.61 7.191 13.235 7.082 C 13.869 6.971 14.518 6.973 15.152 7.088 C 15.783 7.202 16.383 7.429 16.919 7.753 C 17.445 8.068 17.903 8.483 18.269 8.975 C 18.626 9.458 18.873 10 18.997 10.57 C 19.121 11.139 19.12 11.725 18.992 12.294 L 19.867 12.294 C 21.558 12.294 22.929 13.665 22.929 15.356 C 22.929 17.048 21.558 18.419 19.867 18.419 L 18.992 18.419\" fill=\"transparent\" stroke-width=\"1.75\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 11.117 15.794 L 13.742 13.169 L 16.367 15.794 M 13.742 13.169 L 13.742 21.044\" fill=\"transparent\" stroke-width=\"1.75\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 0.6 5.85 C 0.6 2.951 2.951 0.6 5.85 0.6 L 22.15 0.6 C 25.049 0.6 27.4 2.951 27.4 5.85 L 27.4 22.15 C 27.4 25.049 25.049 27.4 22.15 27.4 L 5.85 27.4 C 2.951 27.4 0.6 25.049 0.6 22.15 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"white\"></path></svg>`)}')`})),isUploading?props.uploadingText.replace(\"[FileName]\",fileName):fileName.length?fileName:props.text.replace(\"##\",MAX_SIZE_LIMIT_MB.toString()),/*#__PURE__*/_jsx(Border,{...props.border}),/*#__PURE__*/_jsx(\"style\",{children:`\n            #${id} input:focus {\n                outline: none;\n            }`})]});}FileUploadInput.displayName=\"File Upload Input\";addPropertyControls(FileUploadInput,{userId:{type:ControlType.String,defaultValue:\"\",placeholder:\"FramerForms User ID\",title:\"User ID\",description:\"Get your user ID [here](https://app.framerforms.com/dashboard/account)\",hidden:props=>true},name:{type:ControlType.String,defaultValue:\"File\"},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},fileTypes:{type:ControlType.Enum,defaultValue:\"all\",options:[\"all\",\"audio\",\"video\",\"image\",\"custom\"],optionTitles:[\"Any File\",\"Any Audio File\",\"Any Video File\",\"Any Image File\",\"Custom\"]},fileTypesCustom:{type:ControlType.Array,defaultValue:[\".pdf\"],control:{type:ControlType.String,placeholder:\".pdf\"},title:\" \",hidden:props=>props.fileTypes!==\"custom\"},text:{type:ControlType.String,defaultValue:`Click to upload file or drag-and-drop. Max ##mb`,description:\"*##* \u2192 max size in MB\"},uploadingText:{type:ControlType.String,defaultValue:\"Uploading [FileName]...\",description:\"*[FileName]* \u2192 file name\"},layout:{type:ControlType.Object,controls:{direction:{type:ControlType.Enum,defaultValue:\"vertical\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},alignH:{type:ControlType.Enum,defaultValue:\"center\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Align\"},gap:{type:ControlType.Number,defaultValue:12,min:0,step:1}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Color\"},fill:fillProp({}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},icon:iconProp({size:28,controls:{location:{type:ControlType.Enum,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"],displaySegmentedControl:true},spinner:{type:ControlType.Boolean,description:\"Show a loading spinner while file is uploading\"}}}),border:borderProp({}),shadows:{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{default:{type:ControlType.BoxShadow},focus:{type:ControlType.BoxShadow}}},transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function uploadFile(file){return new Promise((resolve,reject)=>{fetchPresignedURL(file).then(({presignedUrl})=>postToPresignedURL(file,presignedUrl)).then(resolve).catch(reject);});}function fetchPresignedURL(file){var _file_name;return fetch(presignedUrlApi,{method:\"POST\",body:JSON.stringify({file_name:(_file_name=file.name)===null||_file_name===void 0?void 0:_file_name.replace(/\\s+/g,\"-\")}),headers:{\"Content-Type\":\"application/json\"}}).then(async response=>{const responseBody=await response.json();if(response.status>200){throw new Error(responseBody.errorMessage);}return responseBody;});}function postToPresignedURL(file,presignedUrl){return new Promise((resolve,reject)=>{fetch(presignedUrl,{method:\"PUT\",body:file}).then(()=>resolve({fileLocation:removeURLParameters(presignedUrl)})).catch(reject);});}function removeURLParameters(urlString){const url=new URL(urlString);url.search=\"\";return url.toString();}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FileUploadInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "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/mdboekOz3SVNYfwZPHBY/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\"},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\",hidden:props=>props.platform!==\"googleAnalytics\"},googleAnalyticsEventCategory:{type:ControlType.String,placeholder:\"Optional\",title:\"Category\",description:\"Make sure the Google Analytics 4 script is installed\",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 (ba0a5a9)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gkz57y6CWbQMsy81QUIJ/7ZfSOo7lLTuqRHA7LCFZ/EbXcqVWMf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xuj62duVP0Dazk9og3xh/lXNQ0iDN7XVvQYtiR2X1/GkPzN8RFm.js\";const cycleOrder=[\"BvAr802NL\",\"uzX91KKTm\"];const serializationHash=\"framer-lnRrV\";const variantClassNames={BvAr802NL:\"framer-v-1iuv4ty\",uzX91KKTm:\"framer-v-w9oskw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"BvAr802NL\",Mobile:\"uzX91KKTm\"};const getProps=({height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,M16zQ4vHG:(_ref=question!==null&&question!==void 0?question:props.M16zQ4vHG)!==null&&_ref!==void 0?_ref:\"Question\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"BvAr802NL\"};};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,M16zQ4vHG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BvAr802NL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1iuv4ty\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"BvAr802NL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({uzX91KKTm:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1qwrba1\",\"data-styles-preset\":\"EbXcqVWMf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-1c5af0de-e35b-4019-a64e-6a1849078690, rgb(250, 250, 252)))\"},children:\"Enter your details\"})}),className:\"framer-b14vdg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zi1c3_r7O\",style:{\"--extracted-1of0zx5\":\"var(--token-1c5af0de-e35b-4019-a64e-6a1849078690, rgb(250, 250, 252))\"},text:M16zQ4vHG,variants:{uzX91KKTm:{\"--extracted-a0htzi\":\"var(--token-1c5af0de-e35b-4019-a64e-6a1849078690, rgb(250, 250, 252))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uzX91KKTm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1y37pxy\",\"data-styles-preset\":\"GkPzN8RFm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1c5af0de-e35b-4019-a64e-6a1849078690, rgb(250, 250, 252)))\"},children:\"Question\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lnRrV.framer-r0uqq3, .framer-lnRrV .framer-r0uqq3 { display: block; }\",\".framer-lnRrV.framer-1iuv4ty { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 12px 0px 6px 0px; position: relative; width: 760px; }\",\".framer-lnRrV .framer-b14vdg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lnRrV.framer-1iuv4ty { gap: 0px; } .framer-lnRrV.framer-1iuv4ty > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lnRrV.framer-1iuv4ty > :first-child { margin-top: 0px; } .framer-lnRrV.framer-1iuv4ty > :last-child { margin-bottom: 0px; } }\",\".framer-lnRrV.framer-v-w9oskw.framer-1iuv4ty { padding: 6px 0px 4px 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 71\n * @framerIntrinsicWidth 760\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"uzX91KKTm\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerVariables {\"M16zQ4vHG\":\"question\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG22mcmNJC=withCSS(Component,css,\"framer-lnRrV\");export default FramerG22mcmNJC;FramerG22mcmNJC.displayName=\"Form question\";FramerG22mcmNJC.defaultProps={height:71,width:760};addPropertyControls(FramerG22mcmNJC,{variant:{options:[\"BvAr802NL\",\"uzX91KKTm\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},M16zQ4vHG:{defaultValue:\"Question\",displayTextArea:false,title:\"Question\",type:ControlType.String}});addFonts(FramerG22mcmNJC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG22mcmNJC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"uzX91KKTm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"71\",\"framerVariables\":\"{\\\"M16zQ4vHG\\\":\\\"question\\\"}\",\"framerIntrinsicWidth\":\"760\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G22mcmNJC.map"],
  "mappings": "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",
  "names": ["labelFormats", "LogicBlock", "props", "conditions", "defaultCondition", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "formInfo", "setFormInfo", "ye", "ref", "pe", "ue", "getFormInfo", "form", "formId", "getNextPage", "condition", "_form_querySelector", "value", "getRadioValue", "checkCondition", "prev", "p", "HiddenComponentLabel", "type", "labelFormat", "formatDate", "addPropertyControls", "ControlType", "number", "date", "dateString", "month", "day", "year", "radioName", "radios", "i", "ButtonsInput", "props", "clickAction", "options", "textOptions", "imageOptions", "layout", "border", "shadows", "valueSeparator", "id", "createId", "isCanvas", "RenderTarget", "multiSelect", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "value", "setValue", "ye", "invalid", "setInvalid", "nextPageQueued", "setNextPageQueued", "formId", "setFormId", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "_props_invalidEvent", "_state_nextPage", "onSetValueEvent", "event", "imageStyle", "rows", "i", "option", "selected", "layoutProps", "color", "boxShadow", "borderColor", "onClick", "v", "_textOptions_gap", "u", "motion", "_props_focusEvent", "createBackground", "p", "Image2", "Border", "HiddenInput", "items", "index", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "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", "TextInput", "props", "type", "textAreaHeight", "shadows", "border", "id", "createId", "Element", "focused", "setFocused", "ye", "invalid", "setInvalid", "attributes", "styles", "pt", "pr", "pb", "pl", "parsePadding", "heightMode", "autoHeightSupported", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "onInvalid", "event", "_props_invalidEvent", "u", "motion", "createBackground", "p", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "presignedUrlApi", "MAX_SIZE_LIMIT_MB", "MAX_SIZE_LIMIT", "LOADING_SPINNER", "FileUploadInput", "props", "shadows", "border", "layout", "icon", "id", "createId", "isVertical", "focused", "setFocused", "ye", "invalid", "setInvalid", "fileName", "setFileName", "fileUploadUrl", "setFileUploadUrl", "isUploading", "setIsUploading", "inputRef", "pe", "ue", "_props_invalidEvent", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "fileTypes", "fileTypeStrings", "fileType", "onFileChange", "event", "file", "result", "uploadFile", "onKeyDown", "_inputRef_current", "u", "motion", "createBackground", "p", "HiddenInput", "Icon", "Border", "addPropertyControls", "ControlType", "fillProp", "iconProp", "borderProp", "resolve", "reject", "fetchPresignedURL", "presignedUrl", "postToPresignedURL", "_file_name", "response", "responseBody", "removeURLParameters", "urlString", "url", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "M16zQ4vHG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerG22mcmNJC", "withCSS", "G22mcmNJC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
