{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/D1EPk0J2wbiwcoQNpZBH/FileUploadInput.js", "ssg:https://framerusercontent.com/modules/MVzz2HKOSVPXKxZqPZdW/JALKlMU2qFT9SzSjy1FR/SharedFormCode.js", "ssg:https://framerusercontent.com/modules/pvJO0FKMDXvmGZCGBs55/ODe8DhLtilxFv110E4dB/Countries.js", "ssg:https://framerusercontent.com/modules/V59wttelZuiLRosougLs/dhr36rd0qfGLLZh7ndpO/FormField.js", "ssg:https://framerusercontent.com/modules/capduC81dskazRn18JvB/FxK3i3s7SSq6ULCxm5Yr/yCOcTOlRX.js", "ssg:https://framerusercontent.com/modules/WZj6YF9Bul6ttcQzojCJ/WoiJWeREBZCBTSUrnbyy/yCOcTOlRX.js"],
  "sourcesContent": ["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,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/y3zt4fv5F2ZtnBW8nZvn/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,{\"data-framerforms\":true,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)\",preventLocalization:true,hidden:props=>true},name:{type:ControlType.String,defaultValue:\"File\",preventLocalization:true},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\",preventLocalization:true},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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FileUploadInput.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const useFormStore=createStore({});export const SUPABASE_KEY=\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im1ocndkdnNpdHJ6Y3pybmV1YXhnIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDkxNjgyNzgsImV4cCI6MjAyNDc0NDI3OH0.4Pyysu1vMhnd1k1hbOSZ2lcx7hr1iH6MgX7fyTScYmU\";export function FormIcon(props){var _icon_image;const{icon,style}=props;if(!icon){return null;}return[/*#__PURE__*/_jsx(\"div\",{className:\"form-icon\",style:{width:icon.size,height:icon.size,opacity:icon.opacity,color:icon.color||props.fontColor,backgroundImage:icon.type==\"image\"&&`url(${(_icon_image=icon.image)===null||_icon_image===void 0?void 0:_icon_image.src})`,backgroundSize:\"cover\",backgroundPosition:\"center\",pointerEvents:\"none\",...style},dangerouslySetInnerHTML:icon.type==\"svg\"?{__html:icon.svg.replace(/width=\"(\\d+)\"/,`width=\"${icon.size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${icon.size}\"`)}:undefined}),(icon===null||icon===void 0?void 0:icon.type)==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.form-icon svg { display: block; }`})];}FormIcon.displayName=\"FramerForms 2.0/Icon\";export const iconPropertyControls={type:ControlType.Object,optional:true,controls:{position:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},gap:{type:ControlType.Number,defaultValue:12,min:0,step:1},type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},color:{type:ControlType.Color,optional:true,hidden:props=>props.type!=\"svg\"},size:{type:ControlType.Number,defaultValue:24,min:1,step:1},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}};export const shadowPropertyControls={type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.25)\"},x:{type:ControlType.Number,defaultValue:0,displayStepper:true},y:{type:ControlType.Number,defaultValue:2,displayStepper:true},blur:{type:ControlType.Number,defaultValue:4,min:0,displayStepper:true},spread:{type:ControlType.Number,defaultValue:0,displayStepper:true}}};export function createBackground(fill,on=null){if(fill){let{color,colorA,colorB}=fill;if(typeof on==\"boolean\"){if(on){color=fill.colorOn;colorA=fill.colorAOn;colorB=fill.colorBOn;}else{color=fill.colorOff;colorA=fill.colorAOff;colorB=fill.colorBOff;}}if(fill.type==\"color\"){return{backgroundColor:color,backgroundImage:\"none\"};}else{return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function fillProp({color=\"#FFF\",colorA=\"#FFF\",colorB=\"#000\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,defaultValue:noDefault?undefined:{type:\"color\",color,colorA,colorB,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!=\"color\"},colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!=\"gradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}export function fillPropOnOff({colorOn=\"#FFF\",colorAOn=\"#FFF\",colorBOn=\"#000\",colorOff=\"#FFF\",colorAOff=\"#FFF\",colorBOff=\"#000\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,defaultValue:noDefault?undefined:{type:\"color\",colorOn,colorAOn,colorBOn,colorOff,colorAOff,colorBOff,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!=\"color\"},colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!=\"gradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!=\"gradient\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!=\"color\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!=\"gradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}\nexport const __FramerMetadata__ = {\"exports\":{\"FormIcon\":{\"type\":\"reactComponent\",\"name\":\"FormIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowPropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconPropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SUPABASE_KEY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillPropOnOff\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SharedFormCode.map", "export const countries=[\"Afghanistan\",\"\\xc5land Islands\",\"Albania\",\"Algeria\",\"American Samoa\",\"Andorra\",\"Angola\",\"Anguilla\",\"Antarctica\",\"Antigua & Barbuda\",\"Argentina\",\"Armenia\",\"Aruba\",\"Ascension Island\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bermuda\",\"Bhutan\",\"Bolivia\",\"Bosnia & Herzegovina\",\"Botswana\",\"Bouvet Island\",\"Brazil\",\"British Indian Ocean Territory\",\"British Virgin Islands\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Canary Islands\",\"Cape Verde\",\"Caribbean Netherlands\",\"Cayman Islands\",\"Central African Republic\",\"Ceuta & Melilla\",\"Chad\",\"Chile\",\"China\",\"Christmas Island\",\"Clipperton Island\",\"Cocos (Keeling) Islands\",\"Colombia\",\"Comoros\",\"Congo - Brazzaville\",\"Congo - Kinshasa\",\"Cook Islands\",\"Costa Rica\",\"C\\xf4te D\u2019Ivoire\",\"Croatia\",\"Cuba\",\"Cura\\xe7ao\",\"Cyprus\",\"Czechia\",\"Denmark\",\"Diego Garcia\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"England\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"European Union\",\"Falkland Islands\",\"Faroe Islands\",\"Fiji\",\"Finland\",\"France\",\"French Guiana\",\"French Polynesia\",\"French Southern Territories\",\"Gabon\",\"Gambia\",\"Georgia\",\"Germany\",\"Ghana\",\"Gibraltar\",\"Greece\",\"Greenland\",\"Grenada\",\"Guadeloupe\",\"Guam\",\"Guatemala\",\"Guernsey\",\"Guinea\",\"Guinea-Bissau\",\"Guyana\",\"Haiti\",\"Heard & McDonald Islands\",\"Honduras\",\"Hong Kong SAR China\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Isle of Man\",\"Israel\",\"Italy\",\"Jamaica\",\"Japan\",\"Jersey\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\",\"Luxembourg\",\"Macau SAR China\",\"Macedonia\",\"Madagascar\",\"Malawi\",\"Malaysia\",\"Maldives\",\"Mali\",\"Malta\",\"Marshall Islands\",\"Martinique\",\"Mauritania\",\"Mauritius\",\"Mayotte\",\"Mexico\",\"Micronesia\",\"Moldova\",\"Monaco\",\"Mongolia\",\"Montenegro\",\"Montserrat\",\"Morocco\",\"Mozambique\",\"Myanmar (Burma)\",\"Namibia\",\"Nauru\",\"Nepal\",\"Netherlands\",\"New Caledonia\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Niue\",\"Norfolk Island\",\"North Korea\",\"Northern Mariana Islands\",\"Norway\",\"Oman\",\"Pakistan\",\"Palau\",\"Palestinian Territories\",\"Panama\",\"Papua New Guinea\",\"Paraguay\",\"Peru\",\"Philippines\",\"Pitcairn Islands\",\"Poland\",\"Portugal\",\"Puerto Rico\",\"Qatar\",\"R\\xe9union\",\"Romania\",\"Russia\",\"Rwanda\",\"Samoa\",\"San Marino\",\"S\\xe3o Tom\\xe9 & Pr\\xedncipe\",\"Saudi Arabia\",\"Scotland\",\"Senegal\",\"Serbia\",\"Seychelles\",\"Sierra Leone\",\"Singapore\",\"Sint Maarten\",\"Slovakia\",\"Slovenia\",\"Solomon Islands\",\"Somalia\",\"South Africa\",\"South Georgia & South Sandwich Islands\",\"South Korea\",\"South Sudan\",\"Spain\",\"Sri Lanka\",\"St. Barth\\xe9lemy\",\"St. Helena\",\"St. Kitts & Nevis\",\"St. Lucia\",\"St. Martin\",\"St. Pierre & Miquelon\",\"St. Vincent & Grenadines\",\"Sudan\",\"Suriname\",\"Svalbard & Jan Mayen\",\"Swaziland\",\"Sweden\",\"Switzerland\",\"Syria\",\"Taiwan\",\"Tajikistan\",\"Tanzania\",\"Thailand\",\"Timor-Leste\",\"Togo\",\"Tokelau\",\"Tonga\",\"Trinidad & Tobago\",\"Tristan Da Cunha\",\"Tunisia\",\"Turkey\",\"Turkmenistan\",\"Turks & Caicos Islands\",\"Tuvalu\",\"U.S. Outlying Islands\",\"U.S. Virgin Islands\",\"Uganda\",\"Ukraine\",\"United Arab Emirates\",\"United Kingdom\",\"United Nations\",\"United States\",\"Uruguay\",\"Uzbekistan\",\"Vanuatu\",\"Vatican City\",\"Venezuela\",\"Vietnam\",\"Wales\",\"Wallis & Futuna\",\"Western Sahara\",\"Yemen\",\"Zambia\",\"Zimbabwe\"];export const countryEmojis=[\"\uD83C\uDDE6\uD83C\uDDEB\",\"\uD83C\uDDE6\uD83C\uDDFD\",\"\uD83C\uDDE6\uD83C\uDDF1\",\"\uD83C\uDDE9\uD83C\uDDFF\",\"\uD83C\uDDE6\uD83C\uDDF8\",\"\uD83C\uDDE6\uD83C\uDDE9\",\"\uD83C\uDDE6\uD83C\uDDF4\",\"\uD83C\uDDE6\uD83C\uDDEE\",\"\uD83C\uDDE6\uD83C\uDDF6\",\"\uD83C\uDDE6\uD83C\uDDEC\",\"\uD83C\uDDE6\uD83C\uDDF7\",\"\uD83C\uDDE6\uD83C\uDDF2\",\"\uD83C\uDDE6\uD83C\uDDFC\",\"\uD83C\uDDE6\uD83C\uDDE8\",\"\uD83C\uDDE6\uD83C\uDDFA\",\"\uD83C\uDDE6\uD83C\uDDF9\",\"\uD83C\uDDE6\uD83C\uDDFF\",\"\uD83C\uDDE7\uD83C\uDDF8\",\"\uD83C\uDDE7\uD83C\uDDED\",\"\uD83C\uDDE7\uD83C\uDDE9\",\"\uD83C\uDDE7\uD83C\uDDE7\",\"\uD83C\uDDE7\uD83C\uDDFE\",\"\uD83C\uDDE7\uD83C\uDDEA\",\"\uD83C\uDDE7\uD83C\uDDFF\",\"\uD83C\uDDE7\uD83C\uDDEF\",\"\uD83C\uDDE7\uD83C\uDDF2\",\"\uD83C\uDDE7\uD83C\uDDF9\",\"\uD83C\uDDE7\uD83C\uDDF4\",\"\uD83C\uDDE7\uD83C\uDDE6\",\"\uD83C\uDDE7\uD83C\uDDFC\",\"\uD83C\uDDE7\uD83C\uDDFB\",\"\uD83C\uDDE7\uD83C\uDDF7\",\"\uD83C\uDDEE\uD83C\uDDF4\",\"\uD83C\uDDFB\uD83C\uDDEC\",\"\uD83C\uDDE7\uD83C\uDDF3\",\"\uD83C\uDDE7\uD83C\uDDEC\",\"\uD83C\uDDE7\uD83C\uDDEB\",\"\uD83C\uDDE7\uD83C\uDDEE\",\"\uD83C\uDDF0\uD83C\uDDED\",\"\uD83C\uDDE8\uD83C\uDDF2\",\"\uD83C\uDDE8\uD83C\uDDE6\",\"\uD83C\uDDEE\uD83C\uDDE8\",\"\uD83C\uDDE8\uD83C\uDDFB\",\"\uD83C\uDDE7\uD83C\uDDF6\",\"\uD83C\uDDF0\uD83C\uDDFE\",\"\uD83C\uDDE8\uD83C\uDDEB\",\"\uD83C\uDDEA\uD83C\uDDE6\",\"\uD83C\uDDF9\uD83C\uDDE9\",\"\uD83C\uDDE8\uD83C\uDDF1\",\"\uD83C\uDDE8\uD83C\uDDF3\",\"\uD83C\uDDE8\uD83C\uDDFD\",\"\uD83C\uDDE8\uD83C\uDDF5\",\"\uD83C\uDDE8\uD83C\uDDE8\",\"\uD83C\uDDE8\uD83C\uDDF4\",\"\uD83C\uDDF0\uD83C\uDDF2\",\"\uD83C\uDDE8\uD83C\uDDEC\",\"\uD83C\uDDE8\uD83C\uDDE9\",\"\uD83C\uDDE8\uD83C\uDDF0\",\"\uD83C\uDDE8\uD83C\uDDF7\",\"\uD83C\uDDE8\uD83C\uDDEE\",\"\uD83C\uDDED\uD83C\uDDF7\",\"\uD83C\uDDE8\uD83C\uDDFA\",\"\uD83C\uDDE8\uD83C\uDDFC\",\"\uD83C\uDDE8\uD83C\uDDFE\",\"\uD83C\uDDE8\uD83C\uDDFF\",\"\uD83C\uDDE9\uD83C\uDDF0\",\"\uD83C\uDDE9\uD83C\uDDEC\",\"\uD83C\uDDE9\uD83C\uDDEF\",\"\uD83C\uDDE9\uD83C\uDDF2\",\"\uD83C\uDDE9\uD83C\uDDF4\",\"\uD83C\uDDEA\uD83C\uDDE8\",\"\uD83C\uDDEA\uD83C\uDDEC\",\"\uD83C\uDDF8\uD83C\uDDFB\",\"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F\",\"\uD83C\uDDEC\uD83C\uDDF6\",\"\uD83C\uDDEA\uD83C\uDDF7\",\"\uD83C\uDDEA\uD83C\uDDEA\",\"\uD83C\uDDEA\uD83C\uDDF9\",\"\uD83C\uDDEA\uD83C\uDDFA\",\"\uD83C\uDDEB\uD83C\uDDF0\",\"\uD83C\uDDEB\uD83C\uDDF4\",\"\uD83C\uDDEB\uD83C\uDDEF\",\"\uD83C\uDDEB\uD83C\uDDEE\",\"\uD83C\uDDEB\uD83C\uDDF7\",\"\uD83C\uDDEC\uD83C\uDDEB\",\"\uD83C\uDDF5\uD83C\uDDEB\",\"\uD83C\uDDF9\uD83C\uDDEB\",\"\uD83C\uDDEC\uD83C\uDDE6\",\"\uD83C\uDDEC\uD83C\uDDF2\",\"\uD83C\uDDEC\uD83C\uDDEA\",\"\uD83C\uDDE9\uD83C\uDDEA\",\"\uD83C\uDDEC\uD83C\uDDED\",\"\uD83C\uDDEC\uD83C\uDDEE\",\"\uD83C\uDDEC\uD83C\uDDF7\",\"\uD83C\uDDEC\uD83C\uDDF1\",\"\uD83C\uDDEC\uD83C\uDDE9\",\"\uD83C\uDDEC\uD83C\uDDF5\",\"\uD83C\uDDEC\uD83C\uDDFA\",\"\uD83C\uDDEC\uD83C\uDDF9\",\"\uD83C\uDDEC\uD83C\uDDEC\",\"\uD83C\uDDEC\uD83C\uDDF3\",\"\uD83C\uDDEC\uD83C\uDDFC\",\"\uD83C\uDDEC\uD83C\uDDFE\",\"\uD83C\uDDED\uD83C\uDDF9\",\"\uD83C\uDDED\uD83C\uDDF2\",\"\uD83C\uDDED\uD83C\uDDF3\",\"\uD83C\uDDED\uD83C\uDDF0\",\"\uD83C\uDDED\uD83C\uDDFA\",\"\uD83C\uDDEE\uD83C\uDDF8\",\"\uD83C\uDDEE\uD83C\uDDF3\",\"\uD83C\uDDEE\uD83C\uDDE9\",\"\uD83C\uDDEE\uD83C\uDDF7\",\"\uD83C\uDDEE\uD83C\uDDF6\",\"\uD83C\uDDEE\uD83C\uDDEA\",\"\uD83C\uDDEE\uD83C\uDDF2\",\"\uD83C\uDDEE\uD83C\uDDF1\",\"\uD83C\uDDEE\uD83C\uDDF9\",\"\uD83C\uDDEF\uD83C\uDDF2\",\"\uD83C\uDDEF\uD83C\uDDF5\",\"\uD83C\uDDEF\uD83C\uDDEA\",\"\uD83C\uDDEF\uD83C\uDDF4\",\"\uD83C\uDDF0\uD83C\uDDFF\",\"\uD83C\uDDF0\uD83C\uDDEA\",\"\uD83C\uDDF0\uD83C\uDDEE\",\"\uD83C\uDDFD\uD83C\uDDF0\",\"\uD83C\uDDF0\uD83C\uDDFC\",\"\uD83C\uDDF0\uD83C\uDDEC\",\"\uD83C\uDDF1\uD83C\uDDE6\",\"\uD83C\uDDF1\uD83C\uDDFB\",\"\uD83C\uDDF1\uD83C\uDDE7\",\"\uD83C\uDDF1\uD83C\uDDF8\",\"\uD83C\uDDF1\uD83C\uDDF7\",\"\uD83C\uDDF1\uD83C\uDDFE\",\"\uD83C\uDDF1\uD83C\uDDEE\",\"\uD83C\uDDF1\uD83C\uDDF9\",\"\uD83C\uDDF1\uD83C\uDDFA\",\"\uD83C\uDDF2\uD83C\uDDF4\",\"\uD83C\uDDF2\uD83C\uDDF0\",\"\uD83C\uDDF2\uD83C\uDDEC\",\"\uD83C\uDDF2\uD83C\uDDFC\",\"\uD83C\uDDF2\uD83C\uDDFE\",\"\uD83C\uDDF2\uD83C\uDDFB\",\"\uD83C\uDDF2\uD83C\uDDF1\",\"\uD83C\uDDF2\uD83C\uDDF9\",\"\uD83C\uDDF2\uD83C\uDDED\",\"\uD83C\uDDF2\uD83C\uDDF6\",\"\uD83C\uDDF2\uD83C\uDDF7\",\"\uD83C\uDDF2\uD83C\uDDFA\",\"\uD83C\uDDFE\uD83C\uDDF9\",\"\uD83C\uDDF2\uD83C\uDDFD\",\"\uD83C\uDDEB\uD83C\uDDF2\",\"\uD83C\uDDF2\uD83C\uDDE9\",\"\uD83C\uDDF2\uD83C\uDDE8\",\"\uD83C\uDDF2\uD83C\uDDF3\",\"\uD83C\uDDF2\uD83C\uDDEA\",\"\uD83C\uDDF2\uD83C\uDDF8\",\"\uD83C\uDDF2\uD83C\uDDE6\",\"\uD83C\uDDF2\uD83C\uDDFF\",\"\uD83C\uDDF2\uD83C\uDDF2\",\"\uD83C\uDDF3\uD83C\uDDE6\",\"\uD83C\uDDF3\uD83C\uDDF7\",\"\uD83C\uDDF3\uD83C\uDDF5\",\"\uD83C\uDDF3\uD83C\uDDF1\",\"\uD83C\uDDF3\uD83C\uDDE8\",\"\uD83C\uDDF3\uD83C\uDDFF\",\"\uD83C\uDDF3\uD83C\uDDEE\",\"\uD83C\uDDF3\uD83C\uDDEA\",\"\uD83C\uDDF3\uD83C\uDDEC\",\"\uD83C\uDDF3\uD83C\uDDFA\",\"\uD83C\uDDF3\uD83C\uDDEB\",\"\uD83C\uDDF0\uD83C\uDDF5\",\"\uD83C\uDDF2\uD83C\uDDF5\",\"\uD83C\uDDF3\uD83C\uDDF4\",\"\uD83C\uDDF4\uD83C\uDDF2\",\"\uD83C\uDDF5\uD83C\uDDF0\",\"\uD83C\uDDF5\uD83C\uDDFC\",\"\uD83C\uDDF5\uD83C\uDDF8\",\"\uD83C\uDDF5\uD83C\uDDE6\",\"\uD83C\uDDF5\uD83C\uDDEC\",\"\uD83C\uDDF5\uD83C\uDDFE\",\"\uD83C\uDDF5\uD83C\uDDEA\",\"\uD83C\uDDF5\uD83C\uDDED\",\"\uD83C\uDDF5\uD83C\uDDF3\",\"\uD83C\uDDF5\uD83C\uDDF1\",\"\uD83C\uDDF5\uD83C\uDDF9\",\"\uD83C\uDDF5\uD83C\uDDF7\",\"\uD83C\uDDF6\uD83C\uDDE6\",\"\uD83C\uDDF7\uD83C\uDDEA\",\"\uD83C\uDDF7\uD83C\uDDF4\",\"\uD83C\uDDF7\uD83C\uDDFA\",\"\uD83C\uDDF7\uD83C\uDDFC\",\"\uD83C\uDDFC\uD83C\uDDF8\",\"\uD83C\uDDF8\uD83C\uDDF2\",\"\uD83C\uDDF8\uD83C\uDDF9\",\"\uD83C\uDDF8\uD83C\uDDE6\",\"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74\uDB40\uDC7F\",\"\uD83C\uDDF8\uD83C\uDDF3\",\"\uD83C\uDDF7\uD83C\uDDF8\",\"\uD83C\uDDF8\uD83C\uDDE8\",\"\uD83C\uDDF8\uD83C\uDDF1\",\"\uD83C\uDDF8\uD83C\uDDEC\",\"\uD83C\uDDF8\uD83C\uDDFD\",\"\uD83C\uDDF8\uD83C\uDDF0\",\"\uD83C\uDDF8\uD83C\uDDEE\",\"\uD83C\uDDF8\uD83C\uDDE7\",\"\uD83C\uDDF8\uD83C\uDDF4\",\"\uD83C\uDDFF\uD83C\uDDE6\",\"\uD83C\uDDEC\uD83C\uDDF8\",\"\uD83C\uDDF0\uD83C\uDDF7\",\"\uD83C\uDDF8\uD83C\uDDF8\",\"\uD83C\uDDEA\uD83C\uDDF8\",\"\uD83C\uDDF1\uD83C\uDDF0\",\"\uD83C\uDDE7\uD83C\uDDF1\",\"\uD83C\uDDF8\uD83C\uDDED\",\"\uD83C\uDDF0\uD83C\uDDF3\",\"\uD83C\uDDF1\uD83C\uDDE8\",\"\uD83C\uDDF2\uD83C\uDDEB\",\"\uD83C\uDDF5\uD83C\uDDF2\",\"\uD83C\uDDFB\uD83C\uDDE8\",\"\uD83C\uDDF8\uD83C\uDDE9\",\"\uD83C\uDDF8\uD83C\uDDF7\",\"\uD83C\uDDF8\uD83C\uDDEF\",\"\uD83C\uDDF8\uD83C\uDDFF\",\"\uD83C\uDDF8\uD83C\uDDEA\",\"\uD83C\uDDE8\uD83C\uDDED\",\"\uD83C\uDDF8\uD83C\uDDFE\",\"\uD83C\uDDF9\uD83C\uDDFC\",\"\uD83C\uDDF9\uD83C\uDDEF\",\"\uD83C\uDDF9\uD83C\uDDFF\",\"\uD83C\uDDF9\uD83C\uDDED\",\"\uD83C\uDDF9\uD83C\uDDF1\",\"\uD83C\uDDF9\uD83C\uDDEC\",\"\uD83C\uDDF9\uD83C\uDDF0\",\"\uD83C\uDDF9\uD83C\uDDF4\",\"\uD83C\uDDF9\uD83C\uDDF9\",\"\uD83C\uDDF9\uD83C\uDDE6\",\"\uD83C\uDDF9\uD83C\uDDF3\",\"\uD83C\uDDF9\uD83C\uDDF7\",\"\uD83C\uDDF9\uD83C\uDDF2\",\"\uD83C\uDDF9\uD83C\uDDE8\",\"\uD83C\uDDF9\uD83C\uDDFB\",\"\uD83C\uDDFA\uD83C\uDDF2\",\"\uD83C\uDDFB\uD83C\uDDEE\",\"\uD83C\uDDFA\uD83C\uDDEC\",\"\uD83C\uDDFA\uD83C\uDDE6\",\"\uD83C\uDDE6\uD83C\uDDEA\",\"\uD83C\uDDEC\uD83C\uDDE7\",\"\uD83C\uDDFA\uD83C\uDDF3\",\"\uD83C\uDDFA\uD83C\uDDF8\",\"\uD83C\uDDFA\uD83C\uDDFE\",\"\uD83C\uDDFA\uD83C\uDDFF\",\"\uD83C\uDDFB\uD83C\uDDFA\",\"\uD83C\uDDFB\uD83C\uDDE6\",\"\uD83C\uDDFB\uD83C\uDDEA\",\"\uD83C\uDDFB\uD83C\uDDF3\",\"\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73\uDB40\uDC7F\",\"\uD83C\uDDFC\uD83C\uDDEB\",\"\uD83C\uDDEA\uD83C\uDDED\",\"\uD83C\uDDFE\uD83C\uDDEA\",\"\uD83C\uDDFF\uD83C\uDDF2\",\"\uD83C\uDDFF\uD83C\uDDFC\"];\nexport const __FramerMetadata__ = {\"exports\":{\"countryEmojis\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"countries\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countries.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Link,RenderTarget,Image}from\"framer\";import{useEffect,useRef,useState}from\"react\";import{motion}from\"framer-motion\";import{FormIcon,iconPropertyControls,useFormStore,createBackground,fillProp,fillPropOnOff}from\"https://framerusercontent.com/modules/MVzz2HKOSVPXKxZqPZdW/JALKlMU2qFT9SzSjy1FR/SharedFormCode.js\";import{countries,countryEmojis}from\"https://framerusercontent.com/modules/pvJO0FKMDXvmGZCGBs55/ODe8DhLtilxFv110E4dB/Countries.js\";const NO_REQUIRED_TYPES=[\"consent\",\"slider\"];const NO_PREFILL_TYPES=[\"consent\"];const CHARACTER_LIMIT_TYPES=[\"input\",\"textArea\"];const CHECKBOX_TYPES=[\"checkbox\",\"consent\",\"multiSelect\"];const OPTIONS_TYPES=[\"dropdown\",\"radio\",\"multiSelect\"];const TEXT_PLACEHOLDER_TYPES=[\"input\",\"textArea\"];const PLACEHOLDER_FONT_COLOR_TYPES=[\"input\",\"textArea\",\"number\",\"email\",\"phoneNumber\",\"dropdown\",\"country\"];const GAP_TYPES=[\"checkbox\",\"consent\",\"slider\",\"nps\",\"phoneNumber\"];const GAP_HV_TYPES=[\"radio\",\"multiSelect\",\"imageSelect\"];const MIN_MAX_STEP_TYPES=[\"number\",\"slider\"];const BOOLEAN_VALUE_TYPES=[\"checkbox\",\"consent\"];const INVALID_STATE={valid:false,required:\"required\",value:\"value\"};const DROPDOWN_NONE_SELECTED_VALUE=\"[{(None Selected)}]\";const DASHES_ONLY_REGEX=/^-+$/;/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 500\n */export default function FormField(props){var _formState_formId_name,_formState_formId;const{formId,type,name,options,gap,border,icon,consentLink,invalidStyle,checkboxStyle,booleanValues}=props;var _props_id;const id=(_props_id=props.id)!==null&&_props_id!==void 0?_props_id:\"a\"+String(Math.floor(Math.random()*999999999));const isCanvas=RenderTarget.current()===RenderTarget.canvas;const required=NO_REQUIRED_TYPES.includes(type)?true:props.required;const iconOnLeft=(icon===null||icon===void 0?void 0:icon.position)==\"left\";const pt=props.paddingIsMixed?props.paddingTop:props.padding;const pl=props.paddingIsMixed?props.paddingLeft:props.padding;const pb=props.paddingIsMixed?props.paddingBottom:props.padding;const pr=props.paddingIsMixed?props.paddingRight:props.padding;const plIcon=pl+(icon&&iconOnLeft?icon.size+icon.gap:0);const prIcon=pr+(icon&&!iconOnLeft?icon.size+icon.gap:0);const minHeight=icon?pt+icon.size+pb:undefined;const[formState,setFormState]=useFormStore();const value=formState===null||formState===void 0?void 0:(_formState_formId=formState[formId])===null||_formState_formId===void 0?void 0:(_formState_formId_name=_formState_formId[name])===null||_formState_formId_name===void 0?void 0:_formState_formId_name.value;const[invalid,setInvalid]=useState(INVALID_STATE.valid);const invalidRef=useRef(INVALID_STATE.valid);const ref=useRef(null);function updateField(key,value){// if (formState[formId]) {\nsetFormState(prev=>{var _prev_formId;return{[formId]:{...prev[formId],[name]:{...(_prev_formId=prev[formId])===null||_prev_formId===void 0?void 0:_prev_formId[name],[key]:value}}};});}function invalidate(newState){invalidRef.current=newState;setInvalid(newState);}function revalidate(){invalidRef.current=INVALID_STATE.valid;setInvalid(INVALID_STATE.valid);}async function isValid(value){let valid=true;if(required){switch(type){case\"input\":case\"textArea\":case\"email\":case\"url\":valid=value&&value.length>0;break;case\"phoneNumber\":if(props.phoneNumberCountryCode){var _value_,_value_1;valid=Array.isArray(value)&&((_value_=value[0])===null||_value_===void 0?void 0:_value_.length)>0&&((_value_1=value[1])===null||_value_1===void 0?void 0:_value_1.length)>0;}else{var _value_2;valid=Array.isArray(value)&&((_value_2=value[1])===null||_value_2===void 0?void 0:_value_2.length);}break;case\"multiSelect\":case\"imageSelect\":valid=Array.isArray(value)&&value.length>0;break;case\"consent\":case\"checkbox\":valid=value==booleanValues.on;break;default:valid=value!=null;break;}}// Invalidate and early return\nif(!valid){invalidate(INVALID_STATE.required);return valid;}// Check field value validity\nswitch(type){case\"email\":if(value.length>0){const{emailFilters}=props;if(!isEmailAddress(value)){valid=false;}const domain=value.split(\"@\")[1];if(valid){for(const blockedDomain of emailFilters.blockedDomains.split(\"\\n\")){if(blockedDomain==domain){valid=false;break;}}}if(valid&&emailFilters.businessEmailsOnly){try{const response=await fetch(\"https://f.hubspotusercontent40.net/hubfs/2832391/Marketing/Lead-Capture/free-domains-2.csv\");if(!response.ok){throw new Error(\"Network response was not ok\");}const data=await response.text();valid=!data.split(\"\\r\\n\").includes(domain);}catch(error){console.error(\"Error fetching email domains list:\",error);}}if(emailFilters.blockedDomains.length>0){for(const domain of emailFilters.blockedDomains){if(value.endsWith(domain)){return false;}}}}break;case\"input\":case\"textArea\":if(props.textCharacterLimit&&(value.length<props.textCharacterLimit.min||value.length>props.textCharacterLimit.max)){valid=false;}break;case\"url\":if(value.length>0&&!parseURL(value,props.urlAcceptedDomains)[0]){valid=false;}break;}if(!valid){invalidate(INVALID_STATE.value);}return valid;}useEffect(()=>{let defaultValue=null;switch(type){case\"input\":case\"textArea\":case\"email\":case\"url\":defaultValue=\"\";break;case\"checkbox\":defaultValue=booleanValues.off;break;case\"dropdown\":defaultValue=options.includes(props.dropdownDefaultValue)?props.dropdownDefaultValue:null;break;case\"multiSelect\":case\"imageSelect\":defaultValue=[];break;case\"phoneNumber\":defaultValue=[props.phoneNumberCountryCode?String(props.phoneNumberCountryCode.defaultCountryCode):null,\"\"];break;case\"slider\":defaultValue=props.sliderDefaultValue;break;case\"country\":defaultValue=props.countryDefaultValue==\"none\"?null:props.countryDefaultValue;break;}let prefillValue=null;if(props.prefill&&!NO_PREFILL_TYPES.includes(type)){const urlParam=props.prefillUrlParameter||props.name;const searchParams=new URLSearchParams(window.location.search);if(searchParams.has(urlParam)){const param=searchParams.get(urlParam);switch(type){case\"checkbox\":prefillValue=[\"true\",\"yes\",\"on\",\"y\"].includes(param.toLowerCase())?booleanValues.on:booleanValues.off;break;case\"number\":if(isNumber(param)){prefillValue=Number(param);}break;case\"slider\":if(isNumber(param)){prefillValue=Math.min(Math.max(Number(param),props.min),props.max);}break;case\"multiSelect\":const values=param.split(/,\\s*/);prefillValue=[];for(const value of values){if(options.includes(value)){prefillValue.push(value);}}break;case\"imageSelect\":const optionNames=props.imageOptions.map(v=>v.name);if(props.imageSelectMultiSelect){const values=param.split(/,\\s*/);prefillValue=[];for(const value of values){if(optionNames.includes(value)){prefillValue.push(value);}}}else{if(optionNames.includes(param)){prefillValue=[param];}}case\"radio\":case\"dropdown\":if(options.includes(param)){prefillValue=param;}break;case\"nps\":if(isNumber(param)){prefillValue=Math.min(Math.max(Number(param),0),props.npsMax);}break;case\"phoneNumber\":break;default:if(param!==\"\"){prefillValue=param;}break;}}}const otherFieldData={};if(type==\"phoneNumber\"){otherFieldData.processValue=value=>{if(props.phoneNumberCountryCode&&value[0]!=null){return`+${value[0]}${value[1]}`;}else{return String(value[1]);}};}setFormState(prev=>{var _prev_formId,_prev_formId1;return{[formId]:{...prev[formId],[name]:{ref,class:\"formField\",value:((_prev_formId=prev[formId])===null||_prev_formId===void 0?void 0:_prev_formId[name])?(_prev_formId1=prev[formId])===null||_prev_formId1===void 0?void 0:_prev_formId1[name].value:prefillValue!==null&&prefillValue!==void 0?prefillValue:defaultValue,defaultValue,name,required,visible:true,isValid,type,...otherFieldData}}};});return()=>{updateField(\"visible\",false);};},[]);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;const style={flex:1,border:\"none\",outline:\"none\",backgroundColor:\"transparent\",paddingTop:pt,paddingRight:prIcon,paddingBottom:pb,paddingLeft:plIcon,color:props.fontColor,...props.font,...props.style};function onChangeEventTargetValue(event){updateField(\"value\",event.target.value);}const elements=[];switch(type){case\"input\":var _props_textCharacterLimit;elements.push(/*#__PURE__*/_jsx(\"input\",{value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,style:style,placeholder:props.textPlaceholder,maxLength:((_props_textCharacterLimit=props.textCharacterLimit)===null||_props_textCharacterLimit===void 0?void 0:_props_textCharacterLimit.max)||undefined}));break;case\"checkbox\":case\"consent\":elements.push(/*#__PURE__*/_jsxs(\"label\",{style:{position:\"relative\",display:\"flex\",flexDirection:\"row\",cursor:\"pointer\",alignItems:\"center\",gap:gap,...style},children:[/*#__PURE__*/_jsx(Checkbox,{...checkboxStyle,on:value===booleanValues.on}),/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",checked:value===booleanValues.on,onChange:event=>{updateField(\"value\",event.target.checked?booleanValues.on:type==\"checkbox\"?booleanValues.off:null);},onFocus:revalidate,style:{position:\"absolute\",pointerEvents:\"none\",opacity:0}}),type==\"checkbox\"?props.checkboxText:/*#__PURE__*/_jsxs(\"span\",{children:[props.consentText,props.consentLinkText.length>0&&/*#__PURE__*/_jsx(Link,{href:consentLink.link,openInNewTab:consentLink.newTab,children:/*#__PURE__*/_jsx(motion.a,{whileHover:{color:consentLink.hoverColor,textDecoration:consentLink.underline==\"hover\"?\"underline\":undefined},whileTap:{color:consentLink.pressColor},style:{color:consentLink.color,textDecoration:consentLink.underline==\"yes\"?\"underline\":\"none\"},initial:false,transition:{type:false},children:props.consentLinkText})}),props.consentSuffixText]})]}));break;case\"dropdown\":const dropdownNoneSelected=value==null||!options.includes(value);elements.push(/*#__PURE__*/_jsxs(Dropdown,{style:style,baseStyle:props.style,value:dropdownNoneSelected?DROPDOWN_NONE_SELECTED_VALUE:value,onChange:event=>{updateField(\"value\",event.target.value==DROPDOWN_NONE_SELECTED_VALUE?null:event.target.value);},onFocus:revalidate,fontColor:dropdownNoneSelected?props.placeholderFontColor:style.color,paddingRight:prIcon,arrow:props.dropdownArrow,children:[!options.includes(props.dropdownDefaultValue)&&[/*#__PURE__*/_jsx(\"option\",{value:DROPDOWN_NONE_SELECTED_VALUE,disabled:required,children:props.dropdownNoneSelectedText}),/*#__PURE__*/_jsx(\"hr\",{})],options.map((option,index)=>DASHES_ONLY_REGEX.test(option)&&option.length>=3?/*#__PURE__*/_jsx(\"hr\",{}):/*#__PURE__*/_jsx(\"option\",{value:option,children:option},index))]}));break;case\"textArea\":var _props_textCharacterLimit1;const{textAreaHeight}=props;const useMinMaxHeight=textAreaHeight.mode!==\"fixed\";const minHeightCalc=`calc(${textAreaHeight.minLines}lh + ${pt+pb}px)`;elements.push(/*#__PURE__*/_jsx(\"div\",{style:{borderRadius,overflow:\"hidden\",flex:1},children:/*#__PURE__*/_jsx(\"textarea\",{value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,rows:textAreaHeight.mode==\"fixed\"?textAreaHeight.lines:1,style:{display:\"block\",minHeight:useMinMaxHeight?minHeight?`max(${minHeight}px, ${minHeightCalc})`:minHeightCalc:minHeight,maxHeight:useMinMaxHeight?`calc(${textAreaHeight.maxLines}lh + ${pt+pb}px)`:undefined,fieldSizing:textAreaHeight.mode==\"auto\"?\"content\":undefined,resize:textAreaHeight.mode==\"resizable\"?\"vertical\":\"none\",...style},placeholder:props.textPlaceholder,maxLength:((_props_textCharacterLimit1=props.textCharacterLimit)===null||_props_textCharacterLimit1===void 0?void 0:_props_textCharacterLimit1.max)||undefined})}));if(!props.textAreaScrollbar){elements.push(/*#__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                        }\n                        #${id} textarea {\n                            scrollbar-width: none; /* Firefox */\n                        }`}));}break;case\"multiSelect\":const multiSelectArray=Array.isArray(value)?value:[];const multiSelectOnChange=(event,name)=>{const multiSelectValue=event.target.checked?[...multiSelectArray,name]:multiSelectArray.filter(v=>v!==name);updateField(\"value\",multiSelectValue);};elements.push(/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gapV,...style},children:props.options.map((option,index)=>/*#__PURE__*/_jsxs(\"label\",{style:{position:\"relative\",display:\"flex\",flexDirection:\"row\",gap:props.gapH,alignItems:\"center\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsx(Checkbox,{...checkboxStyle,on:multiSelectArray.includes(option)}),/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",checked:multiSelectArray.includes(option),onChange:e=>multiSelectOnChange(e,option),onFocus:revalidate,style:{position:\"absolute\",pointerEvents:\"none\",opacity:0}}),option]},index))}));break;case\"radio\":const{radioStyle}=props;const radioBorder=radioStyle.border;const radioDotPadding=(radioStyle.size-radioStyle.dotSize)/2;elements.push(/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gapV,...style},children:props.options.map((option,index)=>/*#__PURE__*/_jsxs(\"label\",{onClick:()=>{updateField(\"value\",value===option?\"\":option);},style:{position:\"relative\",display:\"flex\",flexDirection:\"row\",gap:props.gapH,alignItems:\"center\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsxs(motion.div,{animate:{backgroundColor:value===option?radioStyle.fillOn:radioStyle.fillOff,boxShadow:value===option?radioStyle.shadowOn:radioStyle.shadowOff},style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:radioStyle.size,height:radioStyle.size,minWidth:radioStyle.size,borderRadius:radioStyle.radius,position:\"relative\"},initial:false,transition:radioStyle.transition,children:[radioStyle.dotColor&&/*#__PURE__*/_jsx(motion.div,{animate:{scale:value===option?1:.5,opacity:value===option?1:0},style:{position:\"absolute\",left:radioDotPadding,top:radioDotPadding,width:radioStyle.dotSize,height:radioStyle.dotSize,backgroundColor:radioStyle.dotColor,borderRadius:Math.max(0,radioStyle.radius-radioDotPadding)},initial:false,transition:radioStyle.transition}),radioBorder&&/*#__PURE__*/_jsx(motion.div,{animate:{borderColor:value===option?radioBorder.colorOn:radioBorder.colorOff},style:{position:\"absolute\",inset:0,borderWidth:radioBorder.widthIsMixed?`${radioBorder.widthTop}px ${radioBorder.widthRight}px ${radioBorder.widthBottom}px ${radioBorder.widthLeft}px`:`${radioBorder.width}px`,borderStyle:radioBorder.style,borderRadius:radioStyle.radius,pointerEvents:\"none\"},initial:false,transition:radioStyle.transition})]}),option]},index))}));break;case\"imageSelect\":var _imageSelectButtons_text;const{imageOptions,imageSelectButtons,imageSelectColumns,imageSelectMultiSelect}=props;const imageStyle={position:\"relative\",width:\"100%\",height:\"auto\",aspectRatio:imageSelectButtons.images.aspectRatioMode==\"fixed\"?imageSelectButtons.images.aspectRatio:undefined,borderRadius:imageSelectButtons.images.radius,pointerEvents:\"none\",objectFit:\"cover\"};const imageSelectArray=Array.isArray(value)?value:[];const rows=[];for(let i=0;i<imageOptions.length;i++){var _imageSelectButtons_text1,_imageSelectButtons_text2,_imageSelectButtons_text3,_imageSelectButtons_text4,_rows_;const option=imageOptions[i];const selected=imageSelectMultiSelect?imageSelectArray.includes(option.name):imageSelectArray.length===1&&imageSelectArray[0]===option.name;if(i%imageSelectColumns==0){rows.push([]);}let layoutProps={};if(imageOptions.length%imageSelectColumns==0||imageOptions.length-i>=imageSelectColumns){layoutProps={flex:1};}else{layoutProps={flexBasis:`calc(${100/imageSelectColumns}% - ${props.gapH*(1-1/imageSelectColumns)}px)`};}const onClick=()=>{if(imageSelectMultiSelect){updateField(\"value\",selected?imageSelectArray.filter(v=>v!==option.name):[...imageSelectArray,option.name]);}else{updateField(\"value\",selected?[]:[option.name]);}};(_rows_=rows[rows.length-1])===null||_rows_===void 0?void 0:_rows_.push(/*#__PURE__*/_jsxs(motion.div,{onClick:onClick,animate:{...createBackground(imageSelectButtons.fill,selected),color:selected?(_imageSelectButtons_text1=imageSelectButtons.text)===null||_imageSelectButtons_text1===void 0?void 0:_imageSelectButtons_text1.fontColorOn:(_imageSelectButtons_text2=imageSelectButtons.text)===null||_imageSelectButtons_text2===void 0?void 0:_imageSelectButtons_text2.fontColorOff,boxShadow:selected?imageSelectButtons.shadowOn:imageSelectButtons.shadowOff},style:{position:\"relative\",display:\"flex\",flexDirection:((_imageSelectButtons_text3=imageSelectButtons.text)===null||_imageSelectButtons_text3===void 0?void 0:_imageSelectButtons_text3.location)==\"bottom\"?\"column-reverse\":\"column\",gap:(_imageSelectButtons_text4=imageSelectButtons.text)===null||_imageSelectButtons_text4===void 0?void 0:_imageSelectButtons_text4.gap,padding:imageSelectButtons.padding,borderRadius:imageSelectButtons.radius,cursor:\"pointer\",overflow:\"hidden\",...layoutProps},initial:false,transition:imageSelectButtons.transition,children:[imageSelectButtons.text&&/*#__PURE__*/_jsx(\"span\",{style:{minHeight:\"1lh\"},children:option.name}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flex:1,display:\"flex\",alignItems:imageSelectButtons.images.align},children:option.image?isCanvas?/*#__PURE__*/_jsx(\"img\",{src:option.image.src,alt:option.image.alt||option.name,style:imageStyle}):/*#__PURE__*/_jsx(Image,{className:`${props.id}-image`,background:{fit:\"fill\",...option.image,alt:option.image.alt||option.name},style:imageStyle}):/*#__PURE__*/_jsxs(\"svg\",{width:\"100%\",height:\"100%\",viewBox:\"0 0 38 38\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",style:{border:\"1px solid #808080\",backgroundColor:\"#80808033\",borderRadius:imageSelectButtons.images.radius},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M22 15H22.01\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M10 13C10 12.2044 10.3161 11.4413 10.8787 10.8787C11.4413 10.3161 12.2044 10 13 10H25C25.7956 10 26.5587 10.3161 27.1213 10.8787C27.6839 11.4413 28 12.2044 28 13V25C28 25.7956 27.6839 26.5587 27.1213 27.1213C26.5587 27.6839 25.7956 28 25 28H13C12.2044 28 11.4413 27.6839 10.8787 27.1213C10.3161 26.5587 10 25.7956 10 25V13Z\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M10 23.0001L15 18.0001C15.928 17.1071 17.072 17.1071 18 18.0001L23 23.0001\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M21 21.0001L22 20.0001C22.928 19.1071 24.072 19.1071 25 20.0001L28 23.0001\",stroke:\"#808080\",\"stroke-width\":\"2\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"})]})}),imageSelectButtons.border&&/*#__PURE__*/_jsx(motion.div,{animate:{borderColor:selected?imageSelectButtons.border.colorOn:imageSelectButtons.border.colorOff},style:{position:\"absolute\",inset:0,borderWidth:imageSelectButtons.border.width,borderStyle:imageSelectButtons.border.style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:imageSelectButtons.transition})]},option.name));}elements.push(/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:props.gapV,flex:1,...style,...(_imageSelectButtons_text=imageSelectButtons.text)===null||_imageSelectButtons_text===void 0?void 0:_imageSelectButtons_text.font},children:[rows.map((items,index)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:props.gapH,width:\"100%\",alignItems:imageSelectButtons.height==\"fill\"?\"stretch\":\"start\",justifyContent:props.imageSelectAlign},children:items})),/*#__PURE__*/_jsx(\"style\",{children:`\n                        .${props.id}-image > div {\n                            position: relative !important;\n                            ${imageSelectButtons.images.aspectRatioMode==\"fixed\"?\"height: 100%;\":\"\"}\n                        }\n                    `})]}));break;case\"number\":const numberUpdateFormState=event=>{const roundedValue=Math.round(Number(event.target.value)/props.step)*props.step;const boundedValue=Math.min(Math.max(roundedValue,props.min),props.max);updateField(\"value\",boundedValue);};const numberOnFocusLost=event=>{numberUpdateFormState(event);};const numberOnKeyDown=event=>{if(event.key===\"Enter\"){numberUpdateFormState(event);}};elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"number\",value:value==null?\"\":value,onChange:onChangeEventTargetValue,onFocus:revalidate,onKeyDown:numberOnKeyDown,onBlur:numberOnFocusLost,style:style,placeholder:props.numberPlaceholder,min:props.min,max:props.max,step:props.step}));break;case\"slider\":var _handle_border,_handle_border1,_track_border,_track_border1,_props_sliderLabel;const track=props.sliderTrack;const handle=props.sliderHandle;const handleCSS=`appearance: none;\n                -webkit-appearance: none;\n                width: ${handle.size}px;\n                height: ${handle.size}px;\n                border-radius: ${handle.radius}px;\n                background-color: ${handle.color};\n                box-sizing: border-box;\n                translate: 0 ${(-handle.size+track.height)/2-(track.border?Math.min(track.border.width,track.height/2):0)}px;\n                border-width: ${((_handle_border=handle.border)===null||_handle_border===void 0?void 0:_handle_border.width)||0}px;\n                border-style: ${handle.border?\"solid\":\"none\"};\n                border-color: ${((_handle_border1=handle.border)===null||_handle_border1===void 0?void 0:_handle_border1.color)||\"none\"};`;const trackCSS=`appearance: none;\n                -webkit-appearance: none;\n                height: ${track.height}px;\n                border-radius: ${track.radius}px;\n                background-color: ${track.color};\n                box-sizing: border-box;\n                border-width: ${((_track_border=track.border)===null||_track_border===void 0?void 0:_track_border.width)||0}px;\n                border-style: ${track.border?\"solid\":\"none\"};\n                border-color: ${((_track_border1=track.border)===null||_track_border1===void 0?void 0:_track_border1.color)||\"none\"};`;elements.push(/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:((_props_sliderLabel=props.sliderLabel)===null||_props_sliderLabel===void 0?void 0:_props_sliderLabel.position)==\"right\"?\"row-reverse\":\"row\",gap:gap,alignItems:\"center\",...style},children:[props.sliderLabel&&/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,minWidth:props.sliderLabel.minWidth},children:[props.sliderLabel.prefix,value||props.sliderDefaultValue,props.sliderLabel.suffix]}),/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:props.min,max:props.max,step:props.step,value:value||props.sliderDefaultValue,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{flex:1,appearance:\"none\",outline:\"none\",margin:0,cursor:\"pointer\",height:Math.max(handle.size,track.height),background:\"none\"}})]}),/*#__PURE__*/_jsx(\"style\",{children:`#${id} input[type=range]::-webkit-slider-thumb {${handleCSS}}\n                    #${id} input[type=range]::-moz-range-thumb {${handleCSS}}\n\n                    #${id} input[type=range]::-webkit-slider-runnable-track {${trackCSS}}\n                    #${id} input[type=range]::-moz-range-track {${trackCSS}}\n                    #${id} input[type=range]::-moz-range-progress {${trackCSS}}\n                    `}));break;case\"nps\":const{npsButtons,npsLabels}=props;const{innerRadius,outerRadius}=npsButtons;const buttonBorder=npsButtons.border;elements.push(/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:(npsLabels===null||npsLabels===void 0?void 0:npsLabels.location)==\"bottom\"?\"column-reverse\":\"column\",gap:gap,...style,width:undefined},children:[npsLabels&&/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"span\",{children:npsLabels.left}),/*#__PURE__*/_jsx(\"span\",{children:npsLabels.right})]}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",gap:npsButtons.gap},children:Array.from({length:props.npsMax+1}).map((_,index)=>{const selected=value===index;const radius=index==0?`${outerRadius}px ${innerRadius}px ${innerRadius}px ${outerRadius}px`:index==props.npsMax?`${innerRadius}px ${outerRadius}px ${outerRadius}px ${innerRadius}px`:`${innerRadius}px`;return /*#__PURE__*/_jsxs(motion.button,{animate:{...createBackground(npsButtons.fill,selected),color:selected?npsButtons.selectedFontColor:npsButtons.deelectedFontColor},style:{position:\"relative\",flex:1,height:npsButtons.height,border:\"none\",outline:\"none\",borderRadius:radius,minWidth:npsButtons.minWidth,cursor:\"pointer\",...npsButtons.font},onClick:()=>{updateField(\"value\",selected?null:index);revalidate();},initial:false,transition:npsButtons.transition,children:[index,buttonBorder&&/*#__PURE__*/_jsx(motion.div,{animate:{borderColor:selected?buttonBorder.selectedColor:buttonBorder.deselectedColor},style:{position:\"absolute\",inset:0,borderWidth:buttonBorder.widthIsMixed?`${buttonBorder.widthTop}px ${buttonBorder.widthRight}px ${buttonBorder.widthBottom}px ${buttonBorder.widthLeft}px`:`${buttonBorder.width}px`,borderStyle:buttonBorder.style,borderRadius:radius,pointerEvents:\"none\"},initial:false,transition:npsButtons.transition})]},index);})})]}));break;case\"date\":case\"time\":elements.push(/*#__PURE__*/_jsx(\"input\",{type:type,value:value==null?\"\":value,onChange:onChangeEventTargetValue,onFocus:revalidate,style:{...style}}),/*#__PURE__*/_jsx(\"style\",{children:`#${id} input::-webkit-datetime-edit {\n                    flex: 0 1 auto;\n                    z-index: 1;\n                    cursor: text;\n                    color: ${props.fontColor};\n                }\n                \n                #${id} input::-webkit-calendar-picker-indicator {\n                    position: absolute;\n                    width: 100%;\n                    height: 100%;\n                    inset: 0;\n                    padding: 0;\n                    opacity: 0;\n                    margin: 0;\n                    overflow: visible;\n                    cursor: pointer;\n                }`}));break;case\"email\":function emailOnFocusLost(event){if(event.target.value.length>0&&!isEmailAddress(event.target.value)){invalidate(INVALID_STATE.value);}}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"email\",value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,onBlur:emailOnFocusLost,style:style,placeholder:props.emailPlaceholder}));break;case\"phoneNumber\":const countryCode=props.phoneNumberCountryCode;const phoneFormat=props.phoneNumberFormat==\"custom\"?props.phoneNumberCustomFormat==\"\"?\"XXXXXXXXXX\":props.phoneNumberCustomFormat:props.phoneNumberFormat;const phoneValue=Array.isArray(value)?value:[countryCode?String(countryCode.defaultCountryCode):null,\"\"];function phoneNumberOnChange(event){const unformatted=unformatPhoneNumber(event.target.value);const formattedValue=formatPhoneNumber(phoneValue[1],phoneFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){updateField(\"value\",[phoneValue[0],unformatted.slice(0,-1)]);}else{updateField(\"value\",[phoneValue[0],unformatted]);}}if(countryCode){const countryCodeFormat=countryCode.format==\"custom\"?countryCode.customFormat==\"\"?\"X\":countryCode.customFormat:countryCode.format;function countryCodeOnChange(event){const unformatted=unformatCountryCode(event.target.value).substring(0,3);const formattedValue=formatCountryCode(phoneValue[0],countryCodeFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){updateField(\"value\",[unformatted.slice(0,-1),phoneValue[1]]);}else{updateField(\"value\",[unformatted,phoneValue[1]]);}}function onCountryCodeFocus(){revalidate();const lastChar=countryCodeFormat.slice(-1);if(ref.current&&lastChar!=\"X\"&&lastChar!=\"x\"){const countryCodeInput=ref.current.querySelector(\".countryCode\");if(countryCodeInput){const formattedValue=formatCountryCode(phoneValue[0],countryCodeFormat);const cursorPosition=Math.max(countryCodeFormat.lastIndexOf(\"X\"),countryCodeFormat.lastIndexOf(\"x\"))+phoneValue[0].length;setTimeout(()=>countryCodeInput.setSelectionRange(cursorPosition,cursorPosition),5);}}}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"tel\",className:\"countryCode\",value:formatCountryCode(isCanvas?countryCode.defaultCountryCode:phoneValue[0],countryCodeFormat),onChange:countryCodeOnChange,onFocus:onCountryCodeFocus,style:{...style,flex:0,width:countryCode.width+plIcon,padding:`${pt}px 0 ${pb}px ${plIcon}px`},placeholder:formatCountryCode(countryCode.defaultCountryCode,countryCodeFormat)}));}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"tel\",maxLength:phoneFormat.length,value:formatPhoneNumber(phoneValue[1],phoneFormat),onChange:phoneNumberOnChange,onFocus:revalidate,style:{...style,padding:`${pt}px ${prIcon}px ${pb}px ${countryCode?0:plIcon}px`},placeholder:props.phoneNumberPlaceholder||replaceXWithNumbers(phoneFormat)}));break;case\"url\":function urlOnFocusLost(event){const[urlValid,domain,fullURL]=parseURL(event.target.value,props.urlAcceptedDomains);if(!urlValid){invalidate(INVALID_STATE.value);}}elements.push(/*#__PURE__*/_jsx(\"input\",{type:\"url\",value:value,onChange:onChangeEventTargetValue,onFocus:revalidate,onBlur:urlOnFocusLost,style:style,placeholder:props.urlPlaceholder}));break;case\"country\":const countryNoneSelected=value==null||!countries.includes(value);elements.push(/*#__PURE__*/_jsxs(Dropdown,{style:style,baseStyle:props.style,value:countryNoneSelected?DROPDOWN_NONE_SELECTED_VALUE:value,onChange:event=>{updateField(\"value\",event.target.value==DROPDOWN_NONE_SELECTED_VALUE?null:event.target.value);},onFocus:revalidate,fontColor:countryNoneSelected?props.placeholderFontColor:style.color,paddingRight:prIcon,arrow:props.dropdownArrow,children:[props.countryDefaultValue==\"none\"&&[/*#__PURE__*/_jsx(\"option\",{value:DROPDOWN_NONE_SELECTED_VALUE,disabled:required,children:props.countryNoneSelectedText}),/*#__PURE__*/_jsx(\"hr\",{})],props.pinnedCountries.length>0&&[...props.pinnedCountries.map((country,index)=>/*#__PURE__*/_jsx(\"option\",{value:country,children:props.countryEmojis?countryEmojis[countries.indexOf(country)]+\" \"+country:country},country)),/*#__PURE__*/_jsx(\"hr\",{})],countries.map((country,index)=>/*#__PURE__*/_jsx(\"option\",{value:country,children:props.countryEmojis?countryEmojis[index]+\" \"+country:country},country))]}));break;}return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",...props.style},children:[/*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":false,\"data-framerforms-no-prefill\":true,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,onInvalid:event=>{event.preventDefault();invalidate(INVALID_STATE.required);}}),/*#__PURE__*/_jsxs(motion.div,{ref:ref,id:id,animate:{...createBackground(invalid&&invalidStyle.fill?invalidStyle.fill:props.fill)},style:{position:\"relative\",display:\"flex\",color:props.fontColor,borderRadius:borderRadius,overflow:\"visible\",minHeight:minHeight,userSelect:\"none\",boxShadow:props.shadows,...props.font,...props.style},initial:false,transition:invalidStyle.transition,children:[icon&&/*#__PURE__*/_jsx(FormIcon,{icon:icon,style:{position:\"absolute\",top:`calc(50% - ${icon.size/2}px)`,left:iconOnLeft?pl:undefined,right:!iconOnLeft?pr:undefined}}),elements,border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.color,borderRadius:borderRadius,pointerEvents:\"none\"}}),invalidStyle.border&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:invalid?1:0},style:{position:\"absolute\",inset:0,borderWidth:invalidStyle.border.widthIsMixed?`${invalidStyle.border.widthTop}px ${invalidStyle.border.widthRight}px ${invalidStyle.border.widthBottom}px ${invalidStyle.border.widthLeft}px`:`${invalidStyle.border.width}px`,borderStyle:invalidStyle.border.style,borderColor:invalidStyle.border.color,borderRadius:borderRadius,pointerEvents:\"none\"},initial:false,transition:invalidStyle.transition}),PLACEHOLDER_FONT_COLOR_TYPES.includes(type)&&/*#__PURE__*/_jsx(\"style\",{children:`#${id} input::placeholder, #${id} textarea::placeholder {\n                        color: ${props.placeholderFontColor};\n                    }`})]}),invalid&&invalidStyle.errorMessage&&/*#__PURE__*/_jsx(\"p\",{style:{width:\"100%\",margin:0,marginTop:invalidStyle.errorMessage.gap,whiteSpace:\"pre\",color:invalidStyle.errorMessage.fontColor,...invalidStyle.errorMessage.font},children:invalid==INVALID_STATE.required?invalidStyle.errorMessage.requiredMessage:invalidStyle.errorMessage.invalidMessage})]});}FormField.displayName=\"FramerForms 2.0/Form Field\";addPropertyControls(FormField,{formId:{type:ControlType.Number,defaultValue:0,step:1,min:0,displayStepper:true,title:\"Form ID\",description:\"Match with Form ID on Submit Button.\"},type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"input\",\"checkbox\",\"dropdown\",\"textArea\",\"email\",\"phoneNumber\",\"multiSelect\",\"radio\",\"imageSelect\",\"number\",\"slider\",\"nps\",\"date\",\"time\",\"consent\",\"url\",\"country\"],optionTitles:[\"Input\",\"Checkbox\",\"Dropdown\",\"Multiline Text\",\"Email\",\"Phone Number\",\"Multi-Select\",\"Radio\",\"Image Select\",\"Number\",\"Slider\",\"Net Promoter Score\",\"Date\",\"Time\",\"Consent\",\"URL\",\"Country\"]},name:{type:ControlType.String,defaultValue:\"fieldName\"},required:{type:ControlType.Boolean,defaultValue:false,hidden:props=>NO_REQUIRED_TYPES.includes(props.type)},prefill:{type:ControlType.Boolean,defaultValue:false,title:\"Pre-fill\",hidden:props=>NO_PREFILL_TYPES.includes(props.type)},prefillUrlParameter:{type:ControlType.String,defaultValue:\"\",placeholder:\"Pre-fill URL Parameter\",title:\" \",description:\"[Documentation ->](https://insertframe.io/docs/how-to-use-pre-filled-fields-in-framerforms)\",hidden:props=>NO_PREFILL_TYPES.includes(props.type)||!props.prefill},textPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Type...\",hidden:props=>!TEXT_PLACEHOLDER_TYPES.includes(props.type)},numberPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"0\",hidden:props=>props.type!=\"number\"},emailPlaceholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"hello@example.com\",hidden:props=>props.type!=\"email\"},textCharacterLimit:{type:ControlType.Object,optional:true,title:\"Character Limit\",hidden:props=>!CHARACTER_LIMIT_TYPES.includes(props.type),controls:{min:{type:ControlType.Number,defaultValue:0,step:1,title:\"Min Characters\"},max:{type:ControlType.Number,defaultValue:100,step:1,title:\"Max Characters\"}}},phoneNumberFormat:{title:\"Format\",type:ControlType.Enum,defaultValue:\"(123) 456 - 7890\",options:[\"(XXX) XXX - XXXX\",\"(XXX) XXX-XXXX\",\"XXX-XXX-XXXX\",\"XXX.XXX.XXXX\",\"XXX XXX XXXX\",\"XXXXXXXXXXX\",\"XX XXXX XXXX\",\"custom\"],optionTitles:[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12 3456 7890\",\"Custom Format\"],hidden:props=>props.type!==\"phoneNumber\"},phoneNumberCustomFormat:{title:\" \",type:ControlType.String,defaultValue:\"(XXX) XXX - XXXX\",description:\"*X* -> phone number\",hidden:props=>props.type!==\"phoneNumber\"||props.phoneNumberFormat!==\"custom\"},phoneNumberPlaceholder:{type:ControlType.String,defaultValue:\"\",placeholder:\"Auto\",title:\"Placeholder\",hidden:props=>props.type!=\"phoneNumber\"},phoneNumberCountryCode:{type:ControlType.Object,title:\"Country Code\",optional:true,defaultValue:{defaultCountryCode:1,format:\"+1\",width:40},controls:{defaultCountryCode:{title:\"Default\",type:ControlType.Number,min:0,max:999,step:1,defaultValue:1},format:{title:\"Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+X\",\"(X)\",\"(+X)\",\"X\",\"custom\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"+X\",description:\"*X* -> country code\",hidden:props=>props.format!==\"custom\"},width:{type:ControlType.Number,defaultValue:50,min:1,step:1}},hidden:props=>props.type!==\"phoneNumber\"},urlAcceptedDomains:{type:ControlType.Object,optional:true,title:\"Accepted Domains\",controls:{mode:{type:ControlType.Enum,defaultValue:\"blacklist\",options:[\"blacklist\",\"whitelist\"],optionTitles:[\"Blacklist\",\"Whitelist\"],displaySegmentedControl:true},domains:{type:ControlType.Array,control:{type:ControlType.String,placeholder:\"example.com\"},description:\"*Blacklist:* URLs from any domains in the list are rejected.\\n*Whitelist:* Only URLs from domains in the list are accepted.\"}},hidden:props=>props.type!=\"url\"},urlPlaceholder:{type:ControlType.String,defaultValue:\"framerforms.com\",placeholder:\"example.com\",title:\"Placeholder\",hidden:props=>props.type!=\"url\"},emailFilters:{type:ControlType.Object,buttonTitle:\"Blocked Emails\",controls:{businessEmailsOnly:{type:ControlType.Boolean,defaultValue:false,description:\"Block emails from free email providers such as Gmail and iCloud to require business emails. Uses [HubSpot's Domain List](https://knowledge.hubspot.com/forms/what-domains-are-blocked-when-using-the-forms-email-domains-to-block-feature)\"},blockedDomains:{type:ControlType.String,displayTextArea:true,placeholder:\"example.com\",description:\"Block email addresses from domains in the list. One domain per line.\"}},hidden:props=>props.type!=\"email\"},consentText:{type:ControlType.String,defaultValue:\"I agree to the \",title:\"Prefix\",hidden:props=>props.type!=\"consent\"},consentLinkText:{type:ControlType.String,defaultValue:\"Terms & Conditions\",title:\"Link Text\",hidden:props=>props.type!=\"consent\"},consentSuffixText:{type:ControlType.String,defaultValue:\".\",title:\"Suffix\",hidden:props=>props.type!=\"consent\"},consentLink:{type:ControlType.Object,title:\"Link\",buttonTitle:\"Consent Link\",controls:{link:{type:ControlType.Link},newTab:{type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:\"#0075FF\"},hoverColor:{type:ControlType.Color,defaultValue:\"#2E8FFF\"},pressColor:{type:ControlType.Color,defaultValue:\"#000\"},underline:{type:ControlType.Enum,defaultValue:\"yes\",options:[\"yes\",\"no\",\"hover\"],optionTitles:[\"Yes\",\"No\",\"Hover\"],displaySegmentedControl:true}},hidden:props=>props.type!=\"consent\"||!props.consentLinkText.length},checkboxText:{type:ControlType.String,defaultValue:\"Checkbox\",title:\"Text\",hidden:props=>props.type!=\"checkbox\"},options:{title:\"Options\",type:ControlType.Array,propertyControl:{type:ControlType.String},defaultValue:[\"Option 1\",\"Option 2\",\"Option 3\"],hidden:props=>!OPTIONS_TYPES.includes(props.type)},imageOptions:{type:ControlType.Array,title:\"Options\",defaultValue:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],control:{type:ControlType.Object,controls:{name:{type:ControlType.String},image:{type:ControlType.ResponsiveImage}}},hidden:props=>props.type!=\"imageSelect\"},imageSelectMultiSelect:{type:ControlType.Boolean,defaultValue:false,title:\"Multi-Select\",hidden:props=>props.type!=\"imageSelect\"},imageSelectButtons:{type:ControlType.Object,title:\"Buttons\",buttonTitle:\"Style\",controls:{images:{type:ControlType.Object,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\"},align:{type:ControlType.Enum,defaultValue:\"center\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],displaySegmentedControl:true,hidden:props=>props.aspectRatioMode!=\"auto\"},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"}}},text:{type:ControlType.Object,optional:true,defaultValue:{location:\"top\",fontColorDefault:\"#000\",fontColorSelected:\"#000\",gap:10},controls:{location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1,textAlign:\"center\"}},fontColorOn:{type:ControlType.Color,defaultValue:\"#000\",title:\"Color On\"},fontColorOff:{type:ControlType.Color,defaultValue:\"#000\",title:\"Color Off\"},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},fill:fillPropOnOff({colorOn:\"#EBF4FF\",colorAOn:\"#70B3FF\",colorBOn:\"#0075FF\",colorOff:\"#EDEDED\",colorAOff:\"#EDEDED\",colorBOff:\"#CCC\"}),height:{type:ControlType.Enum,defaultValue:\"fit\",options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true},padding:{type:ControlType.Padding,defaultValue:\"10px\"},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\"},border:{type:ControlType.Object,optional:true,defaultValue:{colorOn:\"#0075FF\",colorOff:\"#EDEDED00\",width:\"2px\",style:\"solid\"},controls:{colorOn:{type:ControlType.Color,defaultValue:\"#0075FF\"},colorOff:{type:ControlType.Color,defaultValue:\"#0075FF00\"},width:{type:ControlType.Padding,defaultValue:\"2px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadowOn:{type:ControlType.BoxShadow},shadowOff:{type:ControlType.BoxShadow},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1500,damping:70}}},hidden:props=>props.type!=\"imageSelect\"},imageSelectColumns:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true,title:\"Columns\",hidden:props=>props.type!=\"imageSelect\"},imageSelectAlign:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.type!=\"imageSelect\"||props.imageSelectColumns==1},checkboxStyle:{type:ControlType.Object,title:\"Checkbox\",buttonTitle:\"Style\",controls:{fillOn:{type:ControlType.Color,defaultValue:\"#0075FF\"},fillOff:{type:ControlType.Color,defaultValue:\"#EDEDED\"},size:{type:ControlType.Number,defaultValue:16,min:1,step:1},radius:{type:ControlType.Number,defaultValue:4,min:0},border:{type:ControlType.Object,optional:true,defaultValue:{colorOn:\"rgba(219, 219, 219, 0)\",colorOff:\"#DBDBDB\",width:1,style:\"solid\"},controls:{colorOn:{type:ControlType.Color,defaultValue:\"rgba(219, 219, 219, 0)\"},colorOff:{type:ControlType.Color,defaultValue:\"#DBDBDB\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadowOn:{type:ControlType.BoxShadow},shadowOff:{type:ControlType.BoxShadow},icon:{type:ControlType.Object,optional:true,defaultValue:{size:12,color:\"#FFF\",rounded:true},buttonTitle:\"Style\",title:\"Check\",controls:{size:{type:ControlType.Number,defaultValue:16,min:1,step:1},lineWidth:{type:ControlType.Number,defaultValue:1.5,min:.1,step:.1},color:{type:ControlType.Color,defaultValue:\"#FFF\"},rounded:{type:ControlType.Boolean,defaultValue:true}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1500,damping:70}}},hidden:props=>!CHECKBOX_TYPES.includes(props.type)},radioStyle:{type:ControlType.Object,title:\"Radio\",buttonTitle:\"Style\",controls:{fillOn:{type:ControlType.Color,defaultValue:\"#EDEDED\"},fillOff:{type:ControlType.Color,defaultValue:\"#EDEDED\"},size:{type:ControlType.Number,defaultValue:16,min:1,step:1},radius:{type:ControlType.Number,defaultValue:8,min:0},dotColor:{type:ControlType.Color,defaultValue:\"#0075FF\",optional:true},dotSize:{type:ControlType.Number,defaultValue:8,min:1,step:1,hidden:props=>!props.dotColor},border:{type:ControlType.Object,optional:true,defaultValue:{colorOn:\"#0075FF\",colorOff:\"#DBDBDB\",width:1,style:\"solid\"},controls:{colorOn:{type:ControlType.Color,defaultValue:\"#0075FF\"},colorOff:{type:ControlType.Color,defaultValue:\"#DBDBDB\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadowOn:{type:ControlType.BoxShadow},shadowOff:{type:ControlType.BoxShadow},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1500,damping:70}}},hidden:props=>props.type!==\"radio\"},booleanValues:{type:ControlType.Object,title:\"Values\",icon:\"boolean\",controls:{on:{type:ControlType.String,defaultValue:\"on\",placeholder:\"Value\"},off:{type:ControlType.String,defaultValue:\"off\",placeholder:\"Value\"}},hidden:props=>!BOOLEAN_VALUE_TYPES.includes(props.type)},npsMax:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,title:\"Max\",hidden:props=>props.type!=\"nps\"},npsLabels:{type:ControlType.Object,title:\"Labels\",optional:true,defaultValue:{left:\"Not Likely\",right:\"Extremely Likely\",location:\"top\"},controls:{left:{type:ControlType.String,defaultValue:\"Not Likely\"},right:{type:ControlType.String,defaultValue:\"Extremely Likely\"},location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true}},hidden:props=>props.type!=\"nps\"},npsButtons:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Buttons\",controls:{fill:fillPropOnOff({colorOn:\"#0075FF\",colorAOn:\"#70B3FF\",colorBOn:\"#0075FF\",colorOff:\"#F0F0F0\",colorAOff:\"#F2F2F2\",colorBOff:\"#CCC\"}),font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1}},selectedFontColor:{type:ControlType.Color,defaultValue:\"#FFFFFF\",title:\"Font Color On\"},deselectedFontColor:{type:ControlType.Color,defaultValue:\"#000000\",title:\"Font Color Off\"},innerRadius:{type:ControlType.Number,defaultValue:4,min:0,step:1},outerRadius:{type:ControlType.Number,defaultValue:8,min:0,step:1},gap:{type:ControlType.Number,defaultValue:4,min:0,step:1},height:{type:ControlType.Number,defaultValue:40,min:0,step:1},minWidth:{type:ControlType.Number,defaultValue:30,min:0,step:1},border:{type:ControlType.Object,optional:true,controls:{selectedColor:{type:ControlType.Color,defaultValue:\"#004CA8\",title:\"Color On\"},deselectedColor:{type:ControlType.Color,defaultValue:\"#222222\",title:\"Color Off\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1200,damping:70}}},hidden:props=>props.type!=\"nps\"},sliderHandle:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Handle\",controls:{color:{type:ControlType.Color,defaultValue:\"#0075FF\"},size:{type:ControlType.Number,defaultValue:16,min:1,step:1},radius:{type:ControlType.Number,defaultValue:8,min:0,step:1},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#0069E0\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1}}}},hidden:props=>props.type!=\"slider\"},sliderTrack:{type:ControlType.Object,buttonTitle:\"Options\",title:\"Track\",controls:{color:{type:ControlType.Color,defaultValue:\"#D9D9D9\"},height:{type:ControlType.Number,defaultValue:4,min:1,step:1},radius:{type:ControlType.Number,defaultValue:2,min:0,step:1},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#000\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1}}}},hidden:props=>props.type!=\"slider\"},min:{title:\"Min\",type:ControlType.Number,defaultValue:0,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},max:{title:\"Max\",type:ControlType.Number,defaultValue:100,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},step:{type:ControlType.Number,defaultValue:1,hidden:props=>!MIN_MAX_STEP_TYPES.includes(props.type)},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,description:\"Auto height is [not supported on all browsers](https://caniuse.com/mdn-css_properties_field-sizing_content)\",hidden:props=>props.mode===\"fixed\"},lines:{type:ControlType.Number,defaultValue:5,min:1,step:1,displayStepper:true,hidden:props=>props.mode!==\"fixed\"}},hidden:props=>props.type!=\"textArea\"},textAreaScrollbar:{type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Auto\",disabledTitle:\"Hidden\",title:\"Scrollbar\",hidden:props=>props.type!=\"textArea\"},sliderDefaultValue:{type:ControlType.Number,defaultValue:50,title:\"Default Value\",hidden:props=>props.type!=\"slider\"},sliderLabel:{type:ControlType.Object,defaultValue:{defaultValue:\"left\",minWidth:24},optional:true,controls:{position:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},minWidth:{type:ControlType.Number,defaultValue:24,min:0,step:1},prefix:{type:ControlType.String},suffix:{type:ControlType.String}},hidden:props=>props.type!=\"slider\"},pinnedCountries:{type:ControlType.Array,defaultValue:[],control:{type:ControlType.Enum,options:countries},hidden:props=>props.type!=\"country\"},countryDefaultValue:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",...countries],optionTitles:[\"None\",...countries],title:\"Default Value\",hidden:props=>props.type!=\"country\"},countryNoneSelectedText:{type:ControlType.String,defaultValue:\"Select a country\",title:\"None Selected Text\",hidden:props=>props.type!=\"country\"||props.countryDefaultValue!==\"none\"},countryEmojis:{type:ControlType.Boolean,defaultValue:true,title:\"Flag Emojis\",hidden:props=>props.type!=\"country\"},dropdownDefaultValue:{type:ControlType.String,title:\"Default Value\",placeholder:\"Default Value\",hidden:props=>props.type!==\"dropdown\"},dropdownNoneSelectedText:{type:ControlType.String,defaultValue:\"Select an option\",title:\"None Selected Text\",hidden:props=>props.options.includes(props.dropdownDefaultValue)||props.type!=\"dropdown\"},dropdownArrow:{type:ControlType.Object,defaultValue:{size:12,gap:10},optional:true,buttonTitle:\"Style\",title:\"Arrow\",controls:{color:{type:ControlType.Color,optional:true},size:{type:ControlType.Number,defaultValue:12,min:1,step:1},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1},stroke:{type:ControlType.Number,defaultValue:2,min:.1,step:.1,displayStepper:true}},hidden:props=>props.type!==\"dropdown\"&&props.type!==\"country\"},fill:fillProp({color:\"#FFF\",colorA:\"#FFF\",colorB:\"#BDBDBD\"}),fontColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:fontIsHidden},placeholderFontColor:{type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.5)\",hidden:props=>!PLACEHOLDER_FONT_COLOR_TYPES.includes(props.type)},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.5},hidden:fontIsHidden},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_TYPES.includes(props.type)||props.type==\"nps\"&&!props.npsLabels},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_HV_TYPES.includes(props.type)},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!GAP_HV_TYPES.includes(props.type)},padding:{type:ControlType.FusedNumber,defaultValue:16,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadows:{type:ControlType.BoxShadow},icon:iconPropertyControls,invalidStyle:{type:ControlType.Object,buttonTitle:\"Options\",controls:{fill:fillProp({color:\"#FFF5F5\"}),border:{type:ControlType.Object,optional:true,defaultValue:{color:\"#FF0000\",width:2,style:\"solid\"},controls:{color:{type:ControlType.Color,defaultValue:\"#FF0000\"},width:{type:ControlType.FusedNumber,defaultValue:2,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},errorMessage:{type:ControlType.Object,optional:true,controls:{invalidMessage:{type:ControlType.String,defaultValue:\"Invalid value.\",displayTextArea:true},requiredMessage:{type:ControlType.String,defaultValue:\"This field is required.\",displayTextArea:true},fontColor:{type:ControlType.Color,defaultValue:\"#FF0000\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1}},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1200,damping:70}}}}});// Components\nfunction Dropdown({style,baseStyle,onChange,value,onFocus,children,fontColor,paddingRight,arrow}){var _arrow_color;return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",...baseStyle},children:[/*#__PURE__*/_jsx(\"select\",{value:value,onChange:onChange,onFocus:onFocus,style:{appearance:\"none\",height:\"100%\",cursor:\"pointer\",margin:0,backgroundImage:\"none\",...style,paddingRight:style.paddingRight+(arrow?arrow.size+arrow.gap:0),color:fontColor},children:children}),arrow?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:arrow.size,height:arrow.size,viewBox:\"0 0 18 18\",fill:\"none\",\"stroke-width\":arrow.stroke,stroke:(_arrow_color=arrow.color)!==null&&_arrow_color!==void 0?_arrow_color:style.color,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\",position:\"absolute\",right:paddingRight,top:`calc(50% - ${arrow.size/2}px)`,pointerEvents:\"none\"},children:/*#__PURE__*/_jsx(\"path\",{d:\"M2 5.5L9 12.5L16 5.5\"})}):null]});}function Checkbox(props){const{on,border}=props;return /*#__PURE__*/_jsxs(motion.div,{animate:{backgroundColor:on?props.fillOn:props.fillOff,boxShadow:on?props.shadowOn:props.shadowOff},style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:props.size,height:props.size,minWidth:props.size,borderRadius:props.radius,position:\"relative\"},initial:false,transition:props.transition,children:[props.icon&&/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:props.icon.size,height:props.icon.size,viewBox:\"0 0 24 24\",strokeWidth:props.icon.lineWidth*(24/props.icon.size),stroke:props.icon.color,fill:\"none\",strokeLinecap:props.icon.rounded?\"round\":\"butt\",strokeLinejoin:props.icon.rounded?\"round\":\"miter\",animate:{opacity:on?1:0},style:{display:\"block\"},initial:false,transition:props.transition,children:/*#__PURE__*/_jsx(\"path\",{d:\"M5 12l5 5l10 -10\"})}),border&&/*#__PURE__*/_jsx(motion.div,{animate:{borderColor:on?border.colorOn:border.colorOff},style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderRadius:props.radius,pointerEvents:\"none\"},initial:false,transition:props.transition})]});}// Utility functions\nfunction isEmailAddress(string){return/^[a-zA-Z0-9._+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,64}$/.test(string);}function formatPhoneNumber(phoneNumber,format){if(!phoneNumber){return\"\";}let index=0// Tracks the position in the replacements string\n;let cutOffIndex=null// To determine where to slice the template after replacement\n;const result=format.replace(/[Xx]/g,(match,offset)=>{if(index<phoneNumber.length){return phoneNumber[index++];}else{if(phoneNumber.length<10&&cutOffIndex===null){// Set cut-off index at the first unmatched Xx after all replacements are used\ncutOffIndex=offset;}return\"\";}});// Slice the template to remove the part after the last valid replacement if necessary\nreturn cutOffIndex!==null?result.slice(0,cutOffIndex):result;}function unformatPhoneNumber(phoneNumberString){return phoneNumberString.replace(/\\D/g,\"\");}function formatCountryCode(countryCode,format){return format.replace(/[Xx]/,countryCode);}function unformatCountryCode(countryCodeString){return countryCodeString.replace(/\\D/g,\"\");}// Returns [isValid, domain, fullURL]\nconst INVALID_URL_RETURN=[false,null,null];function parseURL(value,urlAcceptedDomains){// Empty strings can still be \"valid\" if the field is not required\nif(value.length==0){return[true,\"\",\"\"];}// Every URL has a period so check for it in the string.\nif(!value.includes(\".\")){return INVALID_URL_RETURN;}try{let fullURL=value;// Add https:// if not already included\nif(!fullURL.match(/^https?:\\/\\//)){fullURL=\"https://\"+fullURL;}const url=new URL(fullURL);if(!/^[^\\.]+\\.[a-z]+$/i.test(url.hostname)){return INVALID_URL_RETURN;}if(urlAcceptedDomains){if(urlAcceptedDomains.mode==\"blacklist\"){if(urlAcceptedDomains.domains.includes(url.hostname)){return INVALID_URL_RETURN;}}else{if(!urlAcceptedDomains.domains.includes(url.hostname)){return INVALID_URL_RETURN;}}}return[true,url.hostname,fullURL];}catch(error){return INVALID_URL_RETURN;}}function isNumber(str){return!isNaN(str)&&isFinite(str);}function replaceXWithNumbers(input){let count=1;return input.replace(/[Xx]/g,()=>{let number=count%10;if(number===0)number=0;count++;return number;});}function isLastCharacterANumber(str){if(str.length===0)return false// Check if the string is empty\n;const lastChar=str[str.length-1]// Get the last character\n;return!isNaN(lastChar)&&!isNaN(parseFloat(lastChar))// Check if it's a numeric value\n;}function fontIsHidden(props){switch(props.type){case\"slider\":return!props.sliderLabel;case\"nps\":return!props.npsLabels;case\"imageSelect\":return true;}return false;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormField\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"500\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormField.map", "// Generated by Framer (66c1c8d)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={tZKmxoypd:new LazyValue(()=>import(\"./yCOcTOlRX-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (66c1c8d)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FileUploadInput from\"https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/D1EPk0J2wbiwcoQNpZBH/FileUploadInput.js\";import FramerForms20FormField from\"https://framerusercontent.com/modules/V59wttelZuiLRosougLs/dhr36rd0qfGLLZh7ndpO/FormField.js\";import CallToAction from\"#framer/local/canvasComponent/hDk8iqzI5/hDk8iqzI5.js\";import Button from\"#framer/local/canvasComponent/LNCJ8JrMb/LNCJ8JrMb.js\";import Header from\"#framer/local/canvasComponent/R59UUiNVK/R59UUiNVK.js\";import Footer from\"#framer/local/canvasComponent/RT57n2mYC/RT57n2mYC.js\";import Stars from\"#framer/local/canvasComponent/S69dak6DY/S69dak6DY.js\";import Testimonial01 from\"#framer/local/canvasComponent/UqDUkgIRh/UqDUkgIRh.js\";import Badge from\"#framer/local/canvasComponent/ZC6oaTVqt/ZC6oaTVqt.js\";import FormButtonSubmit from\"#framer/local/canvasComponent/ZlvJcwk0H/ZlvJcwk0H.js\";import*as sharedStyle from\"#framer/local/css/f8V3IQI3H/f8V3IQI3H.js\";import*as sharedStyle1 from\"#framer/local/css/KCyUlehY9/KCyUlehY9.js\";import*as sharedStyle3 from\"#framer/local/css/vlUd825be/vlUd825be.js\";import*as sharedStyle2 from\"#framer/local/css/WvDNlUXLS/WvDNlUXLS.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/yCOcTOlRX/yCOcTOlRX.js\";import metadataProvider from\"#framer/local/webPageMetadata/yCOcTOlRX/yCOcTOlRX.js\";const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const StarsFonts=getFonts(Stars);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const FileUploadInputFonts=getFonts(FileUploadInput);const FramerForms20FormFieldFonts=getFonts(FramerForms20FormField);const FormButtonSubmitFonts=getFonts(FormButtonSubmit);const Testimonial01Fonts=getFonts(Testimonial01);const CallToActionFonts=getFonts(CallToAction);const FooterFonts=getFonts(Footer);const breakpoints={Tt7BH369R:\"(min-width: 1200px)\",uk8k0qLOX:\"(max-width: 809px)\",YTGi1oa17:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-TNJ7W\";const variantClassNames={Tt7BH369R:\"framer-v-43dqud\",uk8k0qLOX:\"framer-v-7c7x9z\",YTGi1oa17:\"framer-v-yy4xw3\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:2,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.15,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:50,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:10};const transition3={damping:50,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:10};const transition4={damping:50,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:10};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-10,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:-10,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition5={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:5};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"Tt7BH369R\",Phone:\"uk8k0qLOX\",Tablet:\"YTGi1oa17\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Tt7BH369R\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const ref1=React.useRef(null);const elementId=useRouteElementId(\"IH_OBd6_l\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"Bw_7uQWoe\");const elementId2=useRouteElementId(\"avowtTzaT\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"s2PDiAJGu\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Tt7BH369R\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-43dqud\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xhzpeg-container\",layoutScroll:true,nodeId:\"QP9cT56Es\",rendersWithMotion:true,scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{__framer__variantAppearEffectEnabled:undefined,variant:\"g7fLVO5ml\"},YTGi1oa17:{__framer__variantAppearEffectEnabled:undefined,variant:\"g7fLVO5ml\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"GEMmITSAJ\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,BeZsA273t:true,Cof0RMUzO:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",dbTkB554q:\"https://go.umake.design/download\",EdKYuwXXP:\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",eGOhp_OqC:getLocalizedValue(\"v0\",activeLocale)??\"Download\",ewfFJItNT:\"XgBIHPUqi\",FFcnuU4Ek:\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",fjP7WXjeu:true,height:\"100%\",id:\"QP9cT56Es\",ixSSNMsgd:\"lk7ooqA4_\",KDPaGeBIL:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",layoutId:\"QP9cT56Es\",oqjnlG1pR:false,ORnOR2pUN:{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},sGHTFWZo5:true,style:{width:\"100%\"},t4qtipNl7:10,UTTJR9foI:true,v06jigF6i:\"flex-start\",variant:\"OEkGhi0ka\",width:\"100%\",x_AJDqnMP:true,zzroHIlLa:\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(244, 244, 245))\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mp8qub\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kzdggx\",\"data-framer-name\":\"BG Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbqr7u\",\"data-framer-name\":\"Overlay Mask\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qayrj\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-fvy4c6\",\"data-styles-preset\":\"f8V3IQI3H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Educational license\"})}),className:\"framer-zd4jgd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\"},children:\"We want to help students, teachers and faculty members of education institutions to be creative\"})}),className:\"framer-1tw3pme\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-txtl66\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Bw_7uQWoe\",webPageId:\"yCOcTOlRX\"},implicitPathVariables:undefined},{href:{hash:\":Bw_7uQWoe\",webPageId:\"yCOcTOlRX\"},implicitPathVariables:undefined},{href:{hash:\":Bw_7uQWoe\",webPageId:\"yCOcTOlRX\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+0+80+0+40+146.8+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+120+0+60+146.8+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bq660p-container\",nodeId:\"EpTH10mqB\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{U1Kbkgydv:resolvedLinks[2],variant:\"Nw_OMPtNd\"},YTGi1oa17:{U1Kbkgydv:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:'var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231)) /* {\"name\":\"Gray 200\"} */',borderStyle:\"solid\",borderWidth:0},ey7w8muFX:false,G77f5Yx_v:getLocalizedValue(\"v2\",activeLocale)??\"Fill Out Form\",height:\"100%\",HFfTjmBlq:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",id:\"EpTH10mqB\",layoutId:\"EpTH10mqB\",n9WP3fBIv:false,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",SZQpZ3lk2:10,U1Kbkgydv:resolvedLinks[0],variant:\"rt1NrdlKK\",VkxZQkMEC:\"\",Vo_oxchYD:\"Tag\",width:\"100%\",WM2TpCryl:false})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7mlof\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16gdk3f\",\"data-styles-preset\":\"WvDNlUXLS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Trusted by 30,000+ Creatives Worldwide\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16gdk3f\",\"data-styles-preset\":\"WvDNlUXLS\",style:{\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Trusted by 30,000+ Creatives Worldwide\"})}),className:\"framer-1nrr3yt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+0+80+0+40+281.8+0+43.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+120+0+60+281.8+0+43.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wel1u-container\",nodeId:\"opqZqZFBc\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(Stars,{A6u_Os4Aj:\"fill\",height:\"100%\",id:\"opqZqZFBc\",layoutId:\"opqZqZFBc\",uI1Rba2PB:\"var(--token-385cb8b2-959c-4157-9298-79e9c79de523, rgb(255, 182, 110))\",variant:\"nsdwO7s1S\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-d4or1c\",\"data-framer-name\":\"title\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbj8sp\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bcoai\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+555.6+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+615.6+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11hb876-container\",nodeId:\"lXuAuZBN3\",rendersWithMotion:true,scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},height:\"100%\",id:\"lXuAuZBN3\",iXsfVjsEM:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",JPO2n74ig:7,layoutId:\"lXuAuZBN3\",Lsu1xrgI3:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",p4KdNyw2A:0,variant:\"Qy1b_vjYv\",width:\"100%\",XGtDHEUvE:getLocalizedValue(\"v5\",activeLocale)??\"Special Offer\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nqpcik\",\"data-styles-preset\":\"vlUd825be\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Educational License\"})}),className:\"framer-r7fy6b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1btcpgd\",\"data-styles-preset\":\"KCyUlehY9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:[\"We offer a \",/*#__PURE__*/_jsx(\"strong\",{children:\"1-year educational subscription\"}),\" at a significant discount, with the option to renew annually. \",/*#__PURE__*/_jsx(\"br\",{}),\"Please complete the form, and we\u2019ll respond within 2 business days.\"]})}),className:\"framer-m5wgsv\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vug93x\"}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/3f79c049-8e0c-4570-82dc-2455af8b49e4/submit\",className:\"framer-1cf377w\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h378x7\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-ak3lcl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Full Name\"})}),className:\"framer-1yuvubs\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-f4isf5\",inputName:\"fullName\",placeholder:getLocalizedValue(\"v9\",activeLocale)??\"Type your name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-cft4li\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Email\"})}),className:\"framer-1lo8zxw\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-411s0p\",inputName:\"email\",placeholder:getLocalizedValue(\"v11\",activeLocale)??\"Your school email address\",required:true,type:\"email\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1ex0j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Subject\"})}),className:\"framer-1y7lhaz\",\"data-framer-name\":\"Subject\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-bltkg3\",defaultValue:\"\",inputName:\"licenseType\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v13\",activeLocale)??\"I am a...\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v14\",activeLocale)??\"Student\",type:\"option\",value:\"Student\"},{title:getLocalizedValue(\"v15\",activeLocale)??\"Teacher of Faculty Member\",type:\"option\",value:\"Teacher of Faculty Member\"}]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmkb62\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-f21z8p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Your School Name\"})}),className:\"framer-eiholp\",\"data-framer-name\":\"Your School Name\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1qytazf\",inputName:\"schoolName\",placeholder:getLocalizedValue(\"v17\",activeLocale)??\"Type your school name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-i2c065\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Graduation Year\"})}),className:\"framer-1c9xahq\",\"data-framer-name\":\"Graduation Year\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1yb3hbj\",inputName:\"year\",placeholder:getLocalizedValue(\"v19\",activeLocale)??\"Type year\",required:true,type:\"number\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1hjpnrq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Field of Expertise\"})})}),className:\"framer-1unu501\",\"data-framer-name\":\"Field of Expertise\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-1ktqzuc\",defaultValue:\"\",inputName:\"expertise\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v13\",activeLocale)??\"I am a...\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v21\",activeLocale)??\"Arts & Crafts\",type:\"option\",value:\"Arts & Crafts\"},{title:getLocalizedValue(\"v22\",activeLocale)??\"Animation\",type:\"option\",value:\"Animation\"},{title:getLocalizedValue(\"v23\",activeLocale)??\"Architecture\",type:\"option\",value:\"Architecture\"},{title:getLocalizedValue(\"v24\",activeLocale)??\"App Development\",type:\"option\",value:\"App Development\"},{title:getLocalizedValue(\"v25\",activeLocale)??\"Augmented Reality (AR) Design\",type:\"option\",value:\"Augmented Reality (AR) Design\"},{title:getLocalizedValue(\"v26\",activeLocale)??\"Civil Engineering\",type:\"option\",value:\"Civil Engineering\"},{title:getLocalizedValue(\"v27\",activeLocale)??\"Construction\",type:\"option\",value:\"Construction\"},{title:getLocalizedValue(\"v28\",activeLocale)??\"Game Design\",type:\"option\",value:\"Game Design\"},{title:getLocalizedValue(\"v29\",activeLocale)??\"Graphic Design\",type:\"option\",value:\"Graphic Design\"},{title:getLocalizedValue(\"v30\",activeLocale)??\"Industrial Design\",type:\"option\",value:\"Industrial Design\"},{title:getLocalizedValue(\"v31\",activeLocale)??\"Interior Design\",type:\"option\",value:\"Interior Design\"},{title:getLocalizedValue(\"v32\",activeLocale)??\"Jewelry Design\",type:\"option\",value:\"Jewelry Design\"},{title:getLocalizedValue(\"v33\",activeLocale)??\"Marketing & Social Media Studies\",type:\"option\",value:\"Marketing & Social Media Studies\"},{title:getLocalizedValue(\"v34\",activeLocale)??\"Manufactory\",type:\"option\",value:\"Manufactory\"},{title:getLocalizedValue(\"v35\",activeLocale)??\"Mechanical Engineering\",type:\"option\",value:\"Mechanical Engineering\"},{title:getLocalizedValue(\"v36\",activeLocale)??\"Sales & eCommerce\",type:\"option\",value:\"Sales & eCommerce\"},{title:getLocalizedValue(\"v37\",activeLocale)??\"Stage Design\",type:\"option\",value:\"Stage Design\"},{title:getLocalizedValue(\"v38\",activeLocale)??\"UI / UX Design\",type:\"option\",value:\"UI / UX Design\"},{title:getLocalizedValue(\"v39\",activeLocale)??\"Urban Design\",type:\"option\",value:\"Urban Design\"}]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-y1m13n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Copy of Your ID\"})}),className:\"framer-fa0xf1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q2d78q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xJROkNKgo\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(FileUploadInput,{autoFocus:false,border:{color:\"rgba(136, 136, 136, 0.1)\",colorFocus:\"rgb(0, 153, 255)\",colorInvalid:\"rgb(255, 90, 111)\",style:\"solid\",width:\"1px\"},color:\"rgb(51, 51, 51)\",fileTypes:\"custom\",fileTypesCustom:[\".pdf\",\".jpg\",\".jpeg\",\".png\",\".HEIC\"],fill:{color:\"rgba(187, 187, 187, 0.15)\",colorA:\"rgb(187, 187, 187)\",colorB:\"rgb(103, 103, 103)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",icon:{color:\"rgb(51, 51, 51)\",location:\"start\",size:28,spinner:true},id:\"xJROkNKgo\",layout:{alignH:\"center\",direction:\"vertical\",gap:12},layoutId:\"xJROkNKgo\",name:\"fileUpload\",padding:\"12px\",radius:\"10px\",required:true,style:{height:\"100%\",width:\"100%\"},text:getLocalizedValue(\"v41\",activeLocale)??\"Drag files or click to upload a copy of your ID. Max ##mb\",transition:{duration:0,type:\"tween\"},uploadingText:getLocalizedValue(\"v42\",activeLocale)??\"Uploading [FileName]...\",userId:\"6aa8f069-1423-45cc-bd32-248f5916e146\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o6ro2j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ROKIxGF4F\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:\"\",consentSuffixText:\"\",consentText:getLocalizedValue(\"v44\",activeLocale)??\"I'm currently a member of an accredited educational institution\",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:getLocalizedValue(\"v47\",activeLocale)??\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:getLocalizedValue(\"v48\",activeLocale)??\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"ROKIxGF4F\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},fill:{color:\"rgb(255, 245, 245)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"ROKIxGF4F\",max:100,min:0,name:\"consent1\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:getLocalizedValue(\"v45\",activeLocale)??\"Not Likely\",location:\"top\",right:getLocalizedValue(\"v46\",activeLocale)??\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:10,paddingIsMixed:true,paddingLeft:0,paddingRight:10,paddingTop:10,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:false,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:getLocalizedValue(\"v43\",activeLocale)??\"Type...\",type:\"consent\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UamQRaHYn\"},implicitPathVariables:undefined},{href:{webPageId:\"UamQRaHYn\"},implicitPathVariables:undefined},{href:{webPageId:\"UamQRaHYn\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qr4vvo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yGsoGrnuI\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",link:resolvedLinks1[2],newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"}},YTGi1oa17:{consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",link:resolvedLinks1[1],newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"}}},children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},checkboxStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgba(219, 219, 219, 0)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(0, 117, 255)\",icon:{color:\"rgb(255, 255, 255)\",lineWidth:1.5,rounded:true,size:12},radius:4,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},checkboxText:\"Checkbox\",consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",link:resolvedLinks1[0],newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"},consentLinkText:getLocalizedValue(\"v51\",activeLocale)??\"Terms of Use\",consentSuffixText:\".\",consentText:getLocalizedValue(\"v50\",activeLocale)??\"By submitting this form I agree to uMake \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:getLocalizedValue(\"v47\",activeLocale)??\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:getLocalizedValue(\"v48\",activeLocale)??\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"var(--token-e4701bb6-83f6-41e5-b0c8-9b95b4510e3a, rgb(63, 63, 70))\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"yGsoGrnuI\",imageOptions:[{name:\"Option 1\"},{name:\"Option 2\"},{name:\"Option 3\"}],imageSelectAlign:\"start\",imageSelectButtons:{border:{colorOff:\"rgba(237, 237, 237, 0)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:\"2px\"},fill:{colorAOff:\"rgb(237, 237, 237)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(237, 237, 237)\",colorOn:\"rgb(235, 244, 255)\",gradientAngle:0,type:\"color\"},height:\"fit\",images:{align:\"center\",aspectRatio:\"1 / 1\",aspectRatioMode:\"auto\",radius:\"0px\"},padding:\"10px\",radius:\"8px\",shadowOff:\"\",shadowOn:\"\",text:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},fontColorOff:\"rgb(0, 0, 0)\",fontColorOn:\"rgb(0, 0, 0)\",gap:10,location:\"top\"},transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},imageSelectColumns:3,imageSelectMultiSelect:false,invalidStyle:{border:{color:\"rgb(255, 0, 0)\",style:\"solid\",width:2,widthBottom:2,widthIsMixed:false,widthLeft:2,widthRight:2,widthTop:2},fill:{color:\"rgb(255, 245, 245)\",colorA:\"rgb(255, 255, 255)\",colorB:\"rgb(0, 0, 0)\",gradientAngle:0,type:\"color\"},transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},layoutId:\"yGsoGrnuI\",max:100,min:0,name:\"consent2\",npsButtons:{deselectedFontColor:\"rgb(0, 0, 0)\",fill:{colorAOff:\"rgb(242, 242, 242)\",colorAOn:\"rgb(112, 179, 255)\",colorBOff:\"rgb(204, 204, 204)\",colorBOn:\"rgb(0, 117, 255)\",colorOff:\"rgb(240, 240, 240)\",colorOn:\"rgb(0, 117, 255)\",gradientAngle:0,type:\"color\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},gap:4,height:40,innerRadius:4,minWidth:30,outerRadius:8,selectedFontColor:\"rgb(255, 255, 255)\",transition:{damping:70,delay:0,mass:1,stiffness:1200,type:\"spring\"}},npsLabels:{left:getLocalizedValue(\"v45\",activeLocale)??\"Not Likely\",location:\"top\",right:getLocalizedValue(\"v46\",activeLocale)??\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:25,paddingIsMixed:true,paddingLeft:0,paddingRight:10,paddingTop:10,phoneNumberCountryCode:{customFormat:\"+X\",defaultCountryCode:1,format:\"+X\",width:40},phoneNumberCustomFormat:\"(XXX) XXX - XXXX\",phoneNumberFormat:\"(XXX) XXX - XXXX\",phoneNumberPlaceholder:\"\",pinnedCountries:[],placeholderFontColor:\"rgba(0, 0, 0, 0.5)\",prefill:false,prefillUrlParameter:\"\",radioStyle:{border:{colorOff:\"rgb(219, 219, 219)\",colorOn:\"rgb(0, 117, 255)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},dotColor:\"rgb(0, 117, 255)\",dotSize:8,fillOff:\"rgb(237, 237, 237)\",fillOn:\"rgb(237, 237, 237)\",radius:8,shadowOff:\"\",shadowOn:\"\",size:16,transition:{damping:70,delay:0,mass:1,stiffness:1500,type:\"spring\"}},radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,required:false,shadows:\"\",sliderDefaultValue:50,sliderHandle:{color:\"rgb(0, 117, 255)\",radius:8,size:16},sliderLabel:{minWidth:24,position:\"left\",prefix:\"\",suffix:\"\"},sliderTrack:{color:\"rgb(217, 217, 217)\",height:4,radius:2},step:1,style:{width:\"100%\"},textAreaHeight:{lines:5,maxLines:8,minLines:3,mode:\"auto\"},textAreaScrollbar:true,textPlaceholder:getLocalizedValue(\"v49\",activeLocale)??\"Type...\",type:\"consent\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 600px)`,y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+555.6+50+0+0+0+0+205.4+0+982}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`min(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px), 600px)`,y:(componentViewport?.y||0)+0+615.6+120+0+0+0+0+205.4+0+982,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11b7nd3-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"AfzwYqVB9\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(FormButtonSubmit,{height:\"100%\",id:\"AfzwYqVB9\",layoutId:\"AfzwYqVB9\",name:\"Button\",qisVYZwer:getLocalizedValue(\"v52\",activeLocale)??\"Submit\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"aKXaBBWqJ\",success:\"zXKz58MOm\"},\"Dd76lEfMy\"),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+555.6+50+0+0+1252.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:940,width:`min(${componentViewport?.width||\"100vw\"} - 30px, 1200px)`,y:(componentViewport?.y||0)+0+615.6+120+0+0+1252.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13acqew-container\",id:elementId2,nodeId:\"avowtTzaT\",ref:ref3,scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{variant:\"YqpCMCgPL\"},YTGi1oa17:{variant:\"ZUraQ8knl\"}},children:/*#__PURE__*/_jsx(Testimonial01,{height:\"100%\",id:\"avowtTzaT\",layoutId:\"avowtTzaT\",style:{width:\"100%\"},variant:\"qwQg7hZX6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) * 0.975)`,y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+555.6+50+0+0+2207.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:`calc(min(${componentViewport?.width||\"100vw\"} - 30px, 1200px) * 0.975)`,y:(componentViewport?.y||0)+0+615.6+120+0+0+2207.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gy0fp2-container\",nodeId:\"rEdL7xXNP\",scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{variant:\"ipmzz36AJ\"},YTGi1oa17:{variant:\"kDRJlWlos\"}},children:/*#__PURE__*/_jsx(CallToAction,{ACpMpFr3L:\"var(--token-b459e046-718c-4dbb-8c34-b5d5869d1e57, rgb(39, 39, 42))\",eG2qRWVuY:getLocalizedValue(\"v54\",activeLocale)??\"Get uMake on your iPhone, iPad, or Mac and start creating in 3D\",fSwsic5wq:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",gsEAQKbuw:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",height:\"100%\",hZOusc34J:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",id:\"rEdL7xXNP\",iTSiyCfn6:\"AppStoreLogo\",izv65hphi:\"var(--token-d1b70223-6c17-4c93-9dd4-7a1775f7f7c5, rgb(212, 212, 216))\",layoutId:\"rEdL7xXNP\",ngvo314ej:getLocalizedValue(\"v55\",activeLocale)??\"Get uMake\",RBfiI_81A:false,style:{width:\"100%\"},TPfgUMKvU:getLocalizedValue(\"v53\",activeLocale)??\"Start Creating with uMake Today\",variant:\"o6EQRhOkB\",w3EFGvBAB:\"https://go.umake.design/download\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{y:undefined},YTGi1oa17:{y:(componentViewport?.y||0)+0+3283}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:842,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sb5z7b-container\",id:elementId3,nodeId:\"s2PDiAJGu\",ref:ref4,scopeId:\"yCOcTOlRX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uk8k0qLOX:{variant:\"mpwjk9MUe\"},YTGi1oa17:{variant:\"z8oyrV_8I\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"s2PDiAJGu\",layoutId:\"s2PDiAJGu\",style:{width:\"100%\"},variant:\"PbSBQXuqG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TNJ7W.framer-1uauqm, .framer-TNJ7W .framer-1uauqm { display: block; }\",\".framer-TNJ7W.framer-43dqud { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-TNJ7W .framer-1xhzpeg-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-TNJ7W .framer-mp8qub { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 15px 80px 15px; position: relative; width: 100%; }\",'.framer-TNJ7W .framer-kzdggx { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); background: linear-gradient(282deg, #ffffff 11%, rgba(190, 252, 159, 0.72) 25%, rgba(64, 220, 255, 0.63) 34%, rgba(195, 171, 255, 0.85) 47%, rgba(255, 200, 138, 0.96) 59%, var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, rgb(255, 255, 255)) /* {\"name\":\"Page Background\"} */ 90%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }','.framer-TNJ7W .framer-nbqr7u { -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.99811) 35%, rgba(0, 0, 0, 0.99625) 100%) add; backdrop-filter: blur(5px); background: linear-gradient(180deg, var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #fff5f5) /* {\"name\":\"Page Background\"} */ 60%, var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250)) /* {\"name\":\"Gray 50 [Dynamic]\"} */ 100%); bottom: 0px; flex: none; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.99811) 35%, rgba(0, 0, 0, 0.99625) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }',\".framer-TNJ7W .framer-8qayrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-zd4jgd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-TNJ7W .framer-1tw3pme, .framer-TNJ7W .framer-m5wgsv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-TNJ7W .framer-txtl66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 60px 0px; position: relative; width: min-content; }\",\".framer-TNJ7W .framer-1bq660p-container, .framer-TNJ7W .framer-12wel1u-container, .framer-TNJ7W .framer-11hb876-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-TNJ7W .framer-g7mlof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TNJ7W .framer-1nrr3yt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TNJ7W .framer-d4or1c { align-content: center; align-items: center; background-color: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #fff5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 120px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-1wbj8sp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-3bcoai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-r7fy6b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TNJ7W .framer-1vug93x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 39px; min-width: 156px; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-TNJ7W .framer-1cf377w { 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: 0px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-h378x7, .framer-TNJ7W .framer-1mmkb62 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-ak3lcl, .framer-TNJ7W .framer-cft4li, .framer-TNJ7W .framer-f21z8p, .framer-TNJ7W .framer-i2c065 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-TNJ7W .framer-1yuvubs, .framer-TNJ7W .framer-1lo8zxw, .framer-TNJ7W .framer-1y7lhaz, .framer-TNJ7W .framer-eiholp, .framer-TNJ7W .framer-1c9xahq, .framer-TNJ7W .framer-1unu501, .framer-TNJ7W .framer-fa0xf1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-TNJ7W .framer-f4isf5, .framer-TNJ7W .framer-411s0p, .framer-TNJ7W .framer-1qytazf, .framer-TNJ7W .framer-1yb3hbj { --framer-input-background: var(--token-cd1e8e92-b91e-4022-84c2-a059ee7f7bad, #ffffff); --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, #e4e4e7); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --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-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, #71717a); flex: none; height: 50px; position: relative; width: 100%; }',\".framer-TNJ7W .framer-1ex0j, .framer-TNJ7W .framer-1hjpnrq { 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-TNJ7W .framer-bltkg3, .framer-TNJ7W .framer-1ktqzuc { --framer-input-background: rgba(187, 187, 187, 0.15); --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-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --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-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 50px; position: relative; width: 100%; }',\".framer-TNJ7W .framer-y1m13n { 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: 100%; }\",\".framer-TNJ7W .framer-q2d78q-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-1o6ro2j-container, .framer-TNJ7W .framer-qr4vvo-container { flex: none; height: auto; position: relative; width: 500px; }\",\".framer-TNJ7W .framer-11b7nd3-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-13acqew-container, .framer-TNJ7W .framer-sb5z7b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-TNJ7W .framer-gy0fp2-container { flex: none; height: auto; position: relative; width: 98%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNJ7W.framer-43dqud, .framer-TNJ7W .framer-mp8qub, .framer-TNJ7W .framer-8qayrj, .framer-TNJ7W .framer-txtl66, .framer-TNJ7W .framer-g7mlof, .framer-TNJ7W .framer-d4or1c, .framer-TNJ7W .framer-1wbj8sp, .framer-TNJ7W .framer-3bcoai, .framer-TNJ7W .framer-1vug93x, .framer-TNJ7W .framer-1cf377w, .framer-TNJ7W .framer-h378x7, .framer-TNJ7W .framer-ak3lcl, .framer-TNJ7W .framer-cft4li, .framer-TNJ7W .framer-1ex0j, .framer-TNJ7W .framer-1mmkb62, .framer-TNJ7W .framer-f21z8p, .framer-TNJ7W .framer-i2c065, .framer-TNJ7W .framer-1hjpnrq, .framer-TNJ7W .framer-y1m13n { gap: 0px; } .framer-TNJ7W.framer-43dqud > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TNJ7W.framer-43dqud > :first-child, .framer-TNJ7W .framer-mp8qub > :first-child, .framer-TNJ7W .framer-8qayrj > :first-child, .framer-TNJ7W .framer-g7mlof > :first-child, .framer-TNJ7W .framer-d4or1c > :first-child, .framer-TNJ7W .framer-1wbj8sp > :first-child, .framer-TNJ7W .framer-3bcoai > :first-child, .framer-TNJ7W .framer-1cf377w > :first-child, .framer-TNJ7W .framer-ak3lcl > :first-child, .framer-TNJ7W .framer-cft4li > :first-child, .framer-TNJ7W .framer-1ex0j > :first-child, .framer-TNJ7W .framer-f21z8p > :first-child, .framer-TNJ7W .framer-i2c065 > :first-child, .framer-TNJ7W .framer-1hjpnrq > :first-child, .framer-TNJ7W .framer-y1m13n > :first-child { margin-top: 0px; } .framer-TNJ7W.framer-43dqud > :last-child, .framer-TNJ7W .framer-mp8qub > :last-child, .framer-TNJ7W .framer-8qayrj > :last-child, .framer-TNJ7W .framer-g7mlof > :last-child, .framer-TNJ7W .framer-d4or1c > :last-child, .framer-TNJ7W .framer-1wbj8sp > :last-child, .framer-TNJ7W .framer-3bcoai > :last-child, .framer-TNJ7W .framer-1cf377w > :last-child, .framer-TNJ7W .framer-ak3lcl > :last-child, .framer-TNJ7W .framer-cft4li > :last-child, .framer-TNJ7W .framer-1ex0j > :last-child, .framer-TNJ7W .framer-f21z8p > :last-child, .framer-TNJ7W .framer-i2c065 > :last-child, .framer-TNJ7W .framer-1hjpnrq > :last-child, .framer-TNJ7W .framer-y1m13n > :last-child { margin-bottom: 0px; } .framer-TNJ7W .framer-mp8qub > *, .framer-TNJ7W .framer-1cf377w > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-TNJ7W .framer-8qayrj > *, .framer-TNJ7W .framer-g7mlof > *, .framer-TNJ7W .framer-1wbj8sp > *, .framer-TNJ7W .framer-3bcoai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-TNJ7W .framer-txtl66 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-TNJ7W .framer-txtl66 > :first-child, .framer-TNJ7W .framer-1vug93x > :first-child, .framer-TNJ7W .framer-h378x7 > :first-child, .framer-TNJ7W .framer-1mmkb62 > :first-child { margin-left: 0px; } .framer-TNJ7W .framer-txtl66 > :last-child, .framer-TNJ7W .framer-1vug93x > :last-child, .framer-TNJ7W .framer-h378x7 > :last-child, .framer-TNJ7W .framer-1mmkb62 > :last-child { margin-right: 0px; } .framer-TNJ7W .framer-d4or1c > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TNJ7W .framer-1vug93x > *, .framer-TNJ7W .framer-h378x7 > *, .framer-TNJ7W .framer-1mmkb62 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TNJ7W .framer-ak3lcl > *, .framer-TNJ7W .framer-cft4li > *, .framer-TNJ7W .framer-1ex0j > *, .framer-TNJ7W .framer-f21z8p > *, .framer-TNJ7W .framer-i2c065 > *, .framer-TNJ7W .framer-1hjpnrq > *, .framer-TNJ7W .framer-y1m13n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-TNJ7W.framer-43dqud { width: 810px; } .framer-TNJ7W .framer-mp8qub { padding: 80px 15px 80px 15px; } .framer-TNJ7W .framer-8qayrj { padding: 40px 0px 0px 0px; } .framer-TNJ7W .framer-zd4jgd, .framer-TNJ7W .framer-1tw3pme, .framer-TNJ7W .framer-m5wgsv { max-width: 500px; } .framer-TNJ7W .framer-d4or1c { gap: 60px; padding: 50px 15px 0px 15px; } .framer-TNJ7W .framer-r7fy6b { max-width: 400px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNJ7W .framer-d4or1c { gap: 0px; } .framer-TNJ7W .framer-d4or1c > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-TNJ7W .framer-d4or1c > :first-child { margin-top: 0px; } .framer-TNJ7W .framer-d4or1c > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-TNJ7W.framer-43dqud { width: 390px; } .framer-TNJ7W .framer-mp8qub { padding: 140px 15px 80px 15px; } .framer-TNJ7W .framer-8qayrj { justify-content: center; padding: 0px; } .framer-TNJ7W .framer-zd4jgd { max-width: 390px; width: 100%; } .framer-TNJ7W .framer-1tw3pme { max-width: 300px; width: 100%; } .framer-TNJ7W .framer-txtl66 { flex-wrap: wrap; gap: 10px; padding: 5px 0px 30px 0px; } .framer-TNJ7W .framer-g7mlof { width: 100%; } .framer-TNJ7W .framer-d4or1c { gap: 40px; padding: 40px 20px 0px 20px; } .framer-TNJ7W .framer-m5wgsv { max-width: 300px; } .framer-TNJ7W .framer-1vug93x { padding: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-TNJ7W .framer-txtl66, .framer-TNJ7W .framer-d4or1c { gap: 0px; } .framer-TNJ7W .framer-txtl66 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TNJ7W .framer-txtl66 > :first-child { margin-left: 0px; } .framer-TNJ7W .framer-txtl66 > :last-child { margin-right: 0px; } .framer-TNJ7W .framer-d4or1c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TNJ7W .framer-d4or1c > :first-child { margin-top: 0px; } .framer-TNJ7W .framer-d4or1c > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4056\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YTGi1oa17\":{\"layout\":[\"fixed\",\"auto\"]},\"uk8k0qLOX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"IH_OBd6_l\":{\"pattern\":\":IH_OBd6_l\",\"name\":\"hero\"},\"Bw_7uQWoe\":{\"pattern\":\":Bw_7uQWoe\",\"name\":\"edu\"},\"avowtTzaT\":{\"pattern\":\":avowtTzaT\",\"name\":\"testimonial\"},\"s2PDiAJGu\":{\"pattern\":\":s2PDiAJGu\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameryCOcTOlRX=withCSS(Component,css,\"framer-TNJ7W\");export default FrameryCOcTOlRX;FrameryCOcTOlRX.displayName=\"Pricing / Iphone\";FrameryCOcTOlRX.defaultProps={height:4056,width:1200};addFonts(FrameryCOcTOlRX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...HeaderFonts,...ButtonFonts,...StarsFonts,...BadgeFonts,...FileUploadInputFonts,...FramerForms20FormFieldFonts,...FormButtonSubmitFonts,...Testimonial01Fonts,...CallToActionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryCOcTOlRX\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"IH_OBd6_l\\\":{\\\"pattern\\\":\\\":IH_OBd6_l\\\",\\\"name\\\":\\\"hero\\\"},\\\"Bw_7uQWoe\\\":{\\\"pattern\\\":\\\":Bw_7uQWoe\\\",\\\"name\\\":\\\"edu\\\"},\\\"avowtTzaT\\\":{\\\"pattern\\\":\\\":avowtTzaT\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"s2PDiAJGu\\\":{\\\"pattern\\\":\\\":s2PDiAJGu\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YTGi1oa17\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uk8k0qLOX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4056\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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AAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,kEAAiB,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,kEAAiB,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,qBAAO,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",
  "names": ["useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "createId", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "disabled", "parentRef", "internalRef", "pe", "ref", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "Border", "iconProp", "size", "buttonTitle", "controls", "ControlType", "Icon", "image", "color", "style", "defaultImage", "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", "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", "_props_invalidEvent", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "fileTypes", "fileTypeStrings", "fileType", "onFileChange", "event", "file", "result", "uploadFile", "onKeyDown", "_inputRef_current", "motion", "createBackground", "p", "HiddenInput", "Icon", "Border", "addPropertyControls", "ControlType", "fillProp", "iconProp", "borderProp", "resolve", "reject", "fetchPresignedURL", "presignedUrl", "postToPresignedURL", "_file_name", "response", "responseBody", "removeURLParameters", "urlString", "url", "useFormStore", "createStore", "FormIcon", "props", "_icon_image", "icon", "style", "p", "iconPropertyControls", "ControlType", "shadowPropertyControls", "createBackground", "fill", "on", "color", "colorA", "colorB", "fillProp", "noDefault", "fillPropOnOff", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "countries", "countryEmojis", "NO_REQUIRED_TYPES", "NO_PREFILL_TYPES", "CHARACTER_LIMIT_TYPES", "CHECKBOX_TYPES", "OPTIONS_TYPES", "TEXT_PLACEHOLDER_TYPES", "PLACEHOLDER_FONT_COLOR_TYPES", "GAP_TYPES", "GAP_HV_TYPES", "MIN_MAX_STEP_TYPES", "BOOLEAN_VALUE_TYPES", "INVALID_STATE", "DROPDOWN_NONE_SELECTED_VALUE", "DASHES_ONLY_REGEX", "FormField", "props", "_formState_formId_name", "_formState_formId", "formId", "type", "name", "options", "gap", "border", "icon", "consentLink", "invalidStyle", "checkboxStyle", "booleanValues", "_props_id", "id", "isCanvas", "RenderTarget", "required", "iconOnLeft", "pt", "pl", "pb", "pr", "plIcon", "prIcon", "minHeight", "formState", "setFormState", "useFormStore", "value", "invalid", "setInvalid", "ye", "invalidRef", "pe", "ref", "updateField", "key", "prev", "_prev_formId", "invalidate", "newState", "revalidate", "isValid", "valid", "_value_", "_value_1", "_value_2", "emailFilters", "isEmailAddress", "domain", "blockedDomain", "response", "error", "parseURL", "defaultValue", "prefillValue", "urlParam", "searchParams", "window", "param", "isNumber", "values", "optionNames", "v", "otherFieldData", "_prev_formId1", "borderRadius", "style", "onChangeEventTargetValue", "event", "elements", "_props_textCharacterLimit", "p", "Checkbox", "Link", "motion", "dropdownNoneSelected", "Dropdown", "option", "index", "_props_textCharacterLimit1", "textAreaHeight", "useMinMaxHeight", "minHeightCalc", "multiSelectArray", "multiSelectOnChange", "multiSelectValue", "e", "radioStyle", "radioBorder", "radioDotPadding", "_imageSelectButtons_text", "imageOptions", "imageSelectButtons", "imageSelectColumns", "imageSelectMultiSelect", "imageStyle", "imageSelectArray", "rows", "i", "_imageSelectButtons_text1", "_imageSelectButtons_text2", "_imageSelectButtons_text3", "_imageSelectButtons_text4", "_rows_", "selected", "layoutProps", "onClick", "createBackground", "Image2", "items", "numberUpdateFormState", "roundedValue", "boundedValue", "numberOnFocusLost", "numberOnKeyDown", "_handle_border", "_handle_border1", "_track_border", "_track_border1", "_props_sliderLabel", "track", "handle", "handleCSS", "trackCSS", "npsButtons", "npsLabels", "innerRadius", "outerRadius", "buttonBorder", "_", "radius", "emailOnFocusLost", "phoneNumberOnChange", "unformatted", "unformatPhoneNumber", "formattedValue", "formatPhoneNumber", "phoneValue", "phoneFormat", "isLastCharacterANumber", "countryCode", "countryCodeOnChange", "unformatCountryCode", "formatCountryCode", "countryCodeFormat", "onCountryCodeFocus", "lastChar", "countryCodeInput", "cursorPosition", "replaceXWithNumbers", "urlOnFocusLost", "urlValid", "fullURL", "countryNoneSelected", "countries", "country", "countryEmojis", "FormIcon", "addPropertyControls", "ControlType", "fillPropOnOff", "fillProp", "fontIsHidden", "iconPropertyControls", "baseStyle", "onChange", "onFocus", "children", "fontColor", "paddingRight", "arrow", "_arrow_color", "on", "string", "phoneNumber", "format", "cutOffIndex", "result", "match", "offset", "phoneNumberString", "countryCodeString", "INVALID_URL_RETURN", "urlAcceptedDomains", "url", "str", "input", "count", "number", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderFonts", "getFonts", "R59UUiNVK_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "ButtonFonts", "LNCJ8JrMb_default", "StarsFonts", "S69dak6DY_default", "BadgeFonts", "ZC6oaTVqt_default", "ContainerWithFX", "Container", "FileUploadInputFonts", "FileUploadInput", "FramerForms20FormFieldFonts", "FormField", "FormButtonSubmitFonts", "ZlvJcwk0H_default", "Testimonial01Fonts", "UqDUkgIRh_default", "CallToActionFonts", "hDk8iqzI5_default", "FooterFonts", "RT57n2mYC_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "animation7", "animation8", "transition5", "animation9", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "ref1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "HeaderWithVariantAppearEffect", "getLocalizedValue", "MotionDivWithFX", "RichTextWithFX", "x", "ResolveLinks", "resolvedLinks", "LNCJ8JrMb_default", "S69dak6DY_default", "ContainerWithFX", "ZC6oaTVqt_default", "RichText2", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormSelect", "FileUploadInput", "FormField", "resolvedLinks1", "ZlvJcwk0H_default", "UqDUkgIRh_default", "hDk8iqzI5_default", "RT57n2mYC_default", "css", "FrameryCOcTOlRX", "withCSS", "yCOcTOlRX_default", "addFonts", "HeaderFonts", "ButtonFonts", "StarsFonts", "BadgeFonts", "FileUploadInputFonts", "FramerForms20FormFieldFonts", "FormButtonSubmitFonts", "Testimonial01Fonts", "CallToActionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
