{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/L85DWbvLbutIZ5OUbH89/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/QkywnqP6iA81ifKEcumx/BNzvO8s4KZR25xfRvu5b/DPwj23uK6.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\",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\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\"}},\"__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 (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import ButtonForm from\"https://framerusercontent.com/modules/eYmpPpUFxksii2zWZ9fQ/zaupeuyjl35ykg9dSsJT/qmD5t2KIO.js\";import FileUploadInput from\"https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/L85DWbvLbutIZ5OUbH89/FileUploadInput.js\";import FramerForms20FormField from\"https://framerusercontent.com/modules/V59wttelZuiLRosougLs/dhr36rd0qfGLLZh7ndpO/FormField.js\";import Partners from\"#framer/local/canvasComponent/GNIILN0z_/GNIILN0z_.js\";import Footer from\"#framer/local/canvasComponent/k134BdDX9/k134BdDX9.js\";import Button from\"#framer/local/canvasComponent/rT0ATOLLr/rT0ATOLLr.js\";import Nav from\"#framer/local/canvasComponent/TQLI3WLki/TQLI3WLki.js\";import*as sharedStyle from\"#framer/local/css/cJP32FltI/cJP32FltI.js\";import*as sharedStyle1 from\"#framer/local/css/y2FoNErpT/y2FoNErpT.js\";import metadataProvider from\"#framer/local/webPageMetadata/DPwj23uK6/DPwj23uK6.js\";const NavFonts=getFonts(Nav);const ButtonFonts=getFonts(Button);const FileUploadInputFonts=getFonts(FileUploadInput);const FramerForms20FormFieldFonts=getFonts(FramerForms20FormField);const ButtonFormFonts=getFonts(ButtonForm);const PartnersFonts=getFonts(Partners);const FooterFonts=getFonts(Footer);const breakpoints={Q9gDmZVEx:\"(min-width: 1440px)\",SAVaVBds1:\"(min-width: 900px) and (max-width: 1439px)\",UdCUumDZS:\"(max-width: 899px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lNBDN\";const variantClassNames={Q9gDmZVEx:\"framer-v-aykqjd\",SAVaVBds1:\"framer-v-1jyrtfi\",UdCUumDZS:\"framer-v-1pct05s\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"Q9gDmZVEx\",Phone:\"UdCUumDZS\",Tablet:\"SAVaVBds1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Q9gDmZVEx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-lNBDN`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-lNBDN`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"VEfD7JnyL\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"L2gX2TKx2\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UdCUumDZS\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Q9gDmZVEx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-aykqjd\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ksl4mx\",\"data-framer-name\":\"Meet the team\",id:elementId,name:\"Meet the team\",ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{background:{alt:\"Smiling nurse interacting with an elderly patient in a bright room.\",fit:\"fill\",pixelHeight:1325,pixelWidth:2e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp\",srcSet:\"https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp 2000w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"Smiling nurse interacting with an elderly patient in a bright room.\",fit:\"fill\",pixelHeight:1325,pixelWidth:2e3,sizes:\"calc(100vw - 32px)\",src:\"https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp\",srcSet:\"https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/WHoAT9vV020K4tG5CrZqEmiIvM.webp 2000w\"},className:\"framer-1idvspf\",\"data-framer-name\":\"Header\",id:elementId1,name:\"Header\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pa2wb6\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gy4015 hidden-1pct05s\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tFaJ_YwkY\"},implicitPathVariables:undefined},{href:{webPageId:\"tFaJ_YwkY\"},implicitPathVariables:undefined},{href:{webPageId:\"tFaJ_YwkY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"calc(100vw - 112px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbevky-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SAVaVBds1:{variant:\"cb2oo5xNd\",xGVPXb9CU:resolvedLinks[1]},UdCUumDZS:{variant:\"hhUiTCw9s\",xGVPXb9CU:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Nav,{aJQyePBKU:\"i5McHiORu\",aRn8UPODA:\"i5McHiORu\",Gl6sBdHBb:\"i5McHiORu\",height:\"100%\",HHXubpFyq:true,id:\"T8ZtBlV5P\",layoutId:\"T8ZtBlV5P\",m8tyjT8rB:false,O6bDpXClM:\"i5McHiORu\",OSsi_p_QE:\"Apply now\",style:{width:\"100%\"},variant:\"V_sJgBHlJ\",width:\"100%\",X9ADnKcqB:\"UF_4irk4S\",xGVPXb9CU:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6p4vn\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbty54\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-98xwwm-container\",style:{rotate:-90},children:/*#__PURE__*/_jsx(Button,{aWuhUoxAn:\"Button Text\",E23HUoR3R:\"javascript:history.back(-1)\",height:\"100%\",id:\"WdKEwY0l2\",KLxzoSKls:\"var(--token-dbae5906-d9cf-42a9-b7cf-17e645733465, rgb(34, 167, 240))\",layoutId:\"WdKEwY0l2\",lDr111Dq7:\"var(--token-000d7159-3ebf-421c-9e1c-32332b68b57a, rgb(35, 47, 76))\",MLu847jao:\"rgb(255, 255, 255)\",SA_dmm5zQ:\"ArrowUp\",variant:\"b88dOUNeH\",VgjsGdcSr:\"rgb(255, 255, 255)\",width:\"100%\",zopK9ApnV:\"ArrowUp\",zULLlk5Qc:\"var(--token-000d7159-3ebf-421c-9e1c-32332b68b57a, rgb(35, 47, 76))\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-revzk\",\"data-styles-preset\":\"cJP32FltI\",children:\"International Nurse Application\"})}),className:\"framer-1kxv8q3\",\"data-framer-name\":\"About CarrikCare\",fonts:[\"Inter\"],name:\"About CarrikCare\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1h39z0l\",\"data-styles-preset\":\"y2FoNErpT\",style:{\"--framer-text-color\":\"var(--token-122e7f04-73bd-4237-abe3-ae161b7257e6, rgb(255, 255, 255))\"},children:\"Simply fill out the form below, be sure to attach your current CV. One of our nursing recruitment specialists will reply to your application as soon as they can.\"})}),className:\"framer-g9249a\",\"data-framer-name\":\"Our mission is to not only meet but exceed the expectations of healthcare providers and the communities they serve. We\u2019re dedicated to making a positive difference\u2014one shift at a time.\",fonts:[\"Inter\"],name:\"Our mission is to not only meet but exceed the expectations of healthcare providers and the communities they serve. We\u2019re dedicated to making a positive difference\u2014one shift at a time.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dufirp hidden-1pct05s\",\"data-framer-name\":\"Isolation_Mode\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:105,intrinsicWidth:97,name:\"Isolation_Mode\",svg:'<svg width=\"97\" height=\"105\" viewBox=\"0 0 97 105\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_146_6555)\">\\n<path d=\"M50.7268 70.2424C60.2041 70.2424 67.9028 62.4818 67.9028 52.9115C67.9028 43.3411 60.2177 35.5806 50.7268 35.5806C41.2359 35.5806 33.5645 43.3411 33.5645 52.9115C33.5645 62.4818 41.2495 70.2424 50.7268 70.2424Z\" fill=\"#C24287\"/>\\n<path d=\"M50.7404 49.5523C51.0256 49.1136 51.2564 48.7434 51.5008 48.3869C52.1797 47.3722 52.9808 46.481 54.0534 45.8914C57.2714 44.109 60.6658 46.0697 60.788 49.7854C60.8423 51.5542 60.2721 53.1309 59.4438 54.6392C58.1268 57.0112 56.2259 58.8485 54.2164 60.5898C53.1844 61.481 52.1254 62.3448 51.0935 63.236C50.8898 63.4143 50.7269 63.524 50.4689 63.3046C48.5272 61.577 46.5313 59.9042 44.6576 58.1081C42.9739 56.4902 41.7112 54.5569 41.0187 52.2946C40.5027 50.6081 40.4892 48.9216 41.3446 47.3311C42.295 45.5624 44.6304 44.7946 46.6264 45.535C48.2285 46.1382 49.3012 47.3448 50.2109 48.7297C50.3738 48.9902 50.5368 49.2507 50.7404 49.566V49.5523Z\" fill=\"white\"/>\\n<path d=\"M97.0002 24.6114C86.6132 7.84262 67.6585 -1.67292 48.0114 0.246644C27.9298 2.20734 11.2019 15.6031 4.26367 33.3728C11.9216 27.1068 21.7791 22.8975 32.3019 21.8691C45.0379 20.6214 55.6693 23.871 65.0244 31.371C66.6674 32.509 68.8398 34.6616 70.184 36.1699C70.8629 36.8417 71.5282 37.5273 72.18 38.2265L97.0274 24.5976L97.0002 24.6114Z\" fill=\"#81BDC7\"/>\\n<path d=\"M97.0001 75.617L72.5328 64.9635C68.2015 72.8474 60.082 77.8108 51.107 77.8108C37.5292 77.8108 26.4904 66.4717 26.4904 52.5411C26.4904 44.3282 30.3465 37.0338 36.2936 32.4132C25.2549 31.4397 14.4062 34.0722 4.88811 41.4351C2.37621 43.8894 0.0136719 48.2084 0.0136719 52.5411C0.0136719 81.458 22.9466 105 51.1206 105C70.7813 105 88.4596 93.5649 97.0137 75.617H97.0001Z\" fill=\"#39A2E3\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_146_6555\">\\n<rect width=\"97\" height=\"105\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-wj4m5g\",\"data-framer-name\":\"Form\",name:\"Form\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/d8a90fa0-84ba-4db0-bef8-59a29c4998d9/submit\",className:\"framer-14d46tm\",redirectUrl:{webPageId:\"q4y1dkY7D\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tfmw30\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-29tit6\",\"data-framer-name\":\"First Name\",name:\"First Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"First name\"})}),className:\"framer-6m1y4b\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1amp31s\",inputName:\"First Name\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-fqqv51\",\"data-framer-name\":\"Surname\",name:\"Surname\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Surname\"})}),className:\"framer-1a0wewa\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-g31y1v\",inputName:\"Surname\",placeholder:\"\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nknj68\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-v3gu6x\",\"data-framer-name\":\"Email\",name:\"Email\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Email address\"})}),className:\"framer-wzm6rv\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-eocojz\",inputName:\"Email\",placeholder:\"example@email.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1q7pjsg\",\"data-framer-name\":\"Phone\",name:\"Phone\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Phone number\"})}),className:\"framer-mmjb7z\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-6h8zcj\",inputName:\"Phone\",placeholder:\"+44 1234 5678\",required:true,type:\"tel\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ov721\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-31zjx0\",\"data-framer-name\":\"Clinical Preference\",name:\"Clinical Preference\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Clinical Preference\"})}),className:\"framer-9fnik6\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r25u5i\",inputName:\"Clinical Preference\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-hnpd18\",\"data-framer-name\":\"Preferred Location\",name:\"Preferred Location\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Preferred Location\"})}),className:\"framer-19bslu5\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-b3opbj\",inputName:\"Location\",placeholder:\"\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iv7pqw\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1bfrf4z\",\"data-framer-name\":\"Duration\",name:\"Duration\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Preferred Job Duration\"})}),className:\"framer-qi7tl1\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-7hxu09\",inputName:\"Duration\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-9b4ch0\",\"data-framer-name\":\"How did you find us\",name:\"How did you find us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"How did you find us?\"})}),className:\"framer-esln3j\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1usiuvr\",inputName:\"How did you find us?\",placeholder:\"\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15rzj0n\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-i75iz2\",\"data-framer-name\":\"Passport\",name:\"Passport\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Passport / Visa Status\"})}),className:\"framer-1m7tcaa\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-4851xh\",inputName:\"Passport\",placeholder:\"\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-x5l8fl\",\"data-framer-name\":\"How did you find us\",name:\"How did you find us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Available From\"})}),className:\"framer-1kouja7\",fonts:[\"FS;Montserrat-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ozutax\",inputName:\"Available From\",placeholder:\"\",required:true,type:\"date\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-y1m13n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\"},children:\"Upload your CV\"})}),className:\"framer-fa0xf1\",fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3nr2dv-container\",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(153, 153, 153)\",fileTypes:\"all\",fileTypesCustom:[\".pdf\"],fill:{color:\"rgb(227, 227, 227)\",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(153, 153, 153)\",location:\"start\",size:28,spinner:true},id:\"qODD8O7Ve\",layout:{alignH:\"center\",direction:\"vertical\",gap:12},layoutId:\"qODD8O7Ve\",name:\"File\",padding:\"12px\",radius:\"10px\",required:false,style:{height:\"100%\",width:\"100%\"},text:\"Click to upload file or drag-and-drop. Max ##mb\",transition:{duration:0,type:\"tween\"},uploadingText:\"Uploading [FileName]...\",userId:\"01a95031-0366-4024-8b75-a96566dfc0e2\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-19io7vw\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ByIVX5a9P\"},implicitPathVariables:undefined},{href:{webPageId:\"ByIVX5a9P\"},implicitPathVariables:undefined},{href:{webPageId:\"ByIVX5a9P\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rri4mb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SAVaVBds1:{consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",link:resolvedLinks1[1],newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"}},UdCUumDZS:{consentLink:{color:\"rgb(0, 117, 255)\",hoverColor:\"rgb(46, 143, 255)\",link:resolvedLinks1[2],newTab:true,pressColor:\"rgb(0, 0, 0)\",underline:\"yes\"}}},children:/*#__PURE__*/_jsx(FramerForms20FormField,{booleanValues:{off:\"off\",on:\"on\"},border:{color:\"rgb(189, 192, 201)\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},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:\"Privacy Policy\",consentSuffixText:\".\",consentText:\"Please tick to consent to our \",countryDefaultValue:\"none\",countryEmojis:true,countryNoneSelectedText:\"Select a country\",dropdownArrow:{gap:10,size:12,stroke:2},dropdownDefaultValue:\"\",dropdownNoneSelectedText:\"Select an option\",emailFilters:{blockedDomains:\"\",businessEmailsOnly:false},emailPlaceholder:\"hello@example.com\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.5em\"},fontColor:\"var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, rgb(35, 47, 76))\",formId:0,gap:10,gapH:10,gapV:10,height:\"100%\",id:\"ChwthbOvK\",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:\"ChwthbOvK\",max:100,min:0,name:\"consentField\",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:\"Not Likely\",location:\"top\",right:\"Extremely Likely\"},npsMax:10,numberPlaceholder:\"0\",options:[\"Option 1\",\"Option 2\",\"Option 3\"],padding:16,paddingBottom:16,paddingIsMixed:false,paddingLeft:16,paddingRight:16,paddingTop:16,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:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10,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:\"Type...\",type:\"consent\",urlPlaceholder:\"framerforms.com\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{width:\"calc(max(100vw - 32px, 1px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"calc(max(100vw - 112px, 1px) - 64px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mvike8-container\",children:/*#__PURE__*/_jsx(ButtonForm,{height:\"100%\",id:\"sSt19l1f0\",layoutId:\"sSt19l1f0\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"wJmPVD6Uz\",success:\"O2L2TVXYX\"},\"tcxmgBU4S\"),width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ecvoav\",\"data-framer-name\":\"Partner logos\",name:\"Partner logos\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:352,width:\"calc(100vw - 32px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zqzy5g-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{variant:\"wQAtxg51O\"}},children:/*#__PURE__*/_jsx(Partners,{height:\"100%\",id:\"IJd1Se0HJ\",layoutId:\"IJd1Se0HJ\",style:{width:\"100%\"},variant:\"wlx3GR4Yx\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-9j63k9\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":VEfD7JnyL\",webPageId:\"DPwj23uK6\"},implicitPathVariables:undefined},{href:{hash:\":VEfD7JnyL\",webPageId:\"DPwj23uK6\"},implicitPathVariables:undefined},{href:{hash:\":VEfD7JnyL\",webPageId:\"DPwj23uK6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdCUumDZS:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:465,width:\"calc(100vw - 32px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ulolma-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SAVaVBds1:{jJDNFz3Iy:resolvedLinks2[1],variant:\"diJ9YPkDH\"},UdCUumDZS:{jJDNFz3Iy:resolvedLinks2[2],variant:\"VUGa5Pd0q\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kOIOUBbRw\",jJDNFz3Iy:resolvedLinks2[0],layoutId:\"kOIOUBbRw\",style:{width:\"100%\"},variant:\"MlXKUs8ew\",width:\"100%\"})})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-lNBDN { background: white; }`,\".framer-lNBDN.framer-9jzvkl, .framer-lNBDN .framer-9jzvkl { display: block; }\",\".framer-lNBDN.framer-aykqjd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-lNBDN .framer-1ksl4mx { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-lNBDN .framer-1idvspf { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 524px; justify-content: space-between; overflow: hidden; padding: 24px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-lNBDN .framer-pa2wb6 { background: linear-gradient(180deg, var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, #232f4c) /* {\"name\":\"Trust Dark Blue\"} */ 46%, rgba(35, 47, 76, 0) 57.99999999999999%, rgba(35, 47, 76, 0.95475) 86%); bottom: -44px; flex: none; left: -397px; mix-blend-mode: multiply; opacity: 0.58; overflow: hidden; position: absolute; right: -246px; top: -439px; z-index: 1; }',\".framer-lNBDN .framer-1gy4015 { background-color: var(--token-cbb8ef9b-bcbd-428f-85dc-3cf35c59f774, #232f4c); bottom: -1343px; flex: none; left: -486px; mix-blend-mode: multiply; opacity: 0.35; overflow: hidden; position: absolute; right: -486px; top: -258px; z-index: 1; }\",\".framer-lNBDN .framer-jbevky-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-lNBDN .framer-1y6p4vn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lNBDN .framer-1dbty54 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 552px; }\",\".framer-lNBDN .framer-98xwwm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lNBDN .framer-1kxv8q3, .framer-lNBDN .framer-g9249a { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lNBDN .framer-1dufirp { flex: none; height: 105px; position: relative; width: 97px; }\",\".framer-lNBDN .framer-wj4m5g { align-content: flex-end; align-items: flex-end; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-lNBDN .framer-14d46tm { align-content: flex-start; align-items: flex-start; background-color: var(--token-11c9c209-3b61-48a2-bcd2-acb2679ce606, #f6f6f7); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lNBDN .framer-1tfmw30, .framer-lNBDN .framer-1nknj68, .framer-lNBDN .framer-13ov721, .framer-lNBDN .framer-1iv7pqw, .framer-lNBDN .framer-15rzj0n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lNBDN .framer-29tit6, .framer-lNBDN .framer-fqqv51, .framer-lNBDN .framer-v3gu6x, .framer-lNBDN .framer-1q7pjsg, .framer-lNBDN .framer-31zjx0, .framer-lNBDN .framer-hnpd18, .framer-lNBDN .framer-1bfrf4z, .framer-lNBDN .framer-9b4ch0, .framer-lNBDN .framer-i75iz2, .framer-lNBDN .framer-x5l8fl { 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-lNBDN .framer-6m1y4b, .framer-lNBDN .framer-1a0wewa, .framer-lNBDN .framer-wzm6rv, .framer-lNBDN .framer-mmjb7z, .framer-lNBDN .framer-9fnik6, .framer-lNBDN .framer-19bslu5, .framer-lNBDN .framer-qi7tl1, .framer-lNBDN .framer-esln3j, .framer-lNBDN .framer-1m7tcaa, .framer-lNBDN .framer-1kouja7, .framer-lNBDN .framer-fa0xf1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-lNBDN .framer-1amp31s, .framer-lNBDN .framer-g31y1v, .framer-lNBDN .framer-eocojz, .framer-lNBDN .framer-6h8zcj, .framer-lNBDN .framer-r25u5i, .framer-lNBDN .framer-b3opbj, .framer-lNBDN .framer-7hxu09, .framer-lNBDN .framer-1usiuvr, .framer-lNBDN .framer-4851xh, .framer-lNBDN .framer-1ozutax { --framer-input-border-bottom-width: 1px; --framer-input-border-color: var(--token-5ae2cd30-2a9f-4f9b-ba8a-18a0298ff8e4, #bdc0c9); --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: var(--token-000d7159-3ebf-421c-9e1c-32332b68b57a, #232f4c); --framer-input-font-family: \"Montserrat\"; --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: 16px; --framer-input-placeholder-color: var(--token-5ae2cd30-2a9f-4f9b-ba8a-18a0298ff8e4, #bdc0c9); --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-lNBDN .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-lNBDN .framer-3nr2dv-container { flex: none; height: 137px; position: relative; width: 100%; }\",\".framer-lNBDN .framer-19io7vw { 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-lNBDN .framer-1rri4mb-container, .framer-lNBDN .framer-1mvike8-container, .framer-lNBDN .framer-zqzy5g-container, .framer-lNBDN .framer-1ulolma-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lNBDN .framer-1ecvoav, .framer-lNBDN .framer-9j63k9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lNBDN.framer-aykqjd, .framer-lNBDN .framer-1ksl4mx, .framer-lNBDN .framer-1dbty54, .framer-lNBDN .framer-wj4m5g, .framer-lNBDN .framer-14d46tm, .framer-lNBDN .framer-1tfmw30, .framer-lNBDN .framer-29tit6, .framer-lNBDN .framer-fqqv51, .framer-lNBDN .framer-1nknj68, .framer-lNBDN .framer-v3gu6x, .framer-lNBDN .framer-1q7pjsg, .framer-lNBDN .framer-13ov721, .framer-lNBDN .framer-31zjx0, .framer-lNBDN .framer-hnpd18, .framer-lNBDN .framer-1iv7pqw, .framer-lNBDN .framer-1bfrf4z, .framer-lNBDN .framer-9b4ch0, .framer-lNBDN .framer-15rzj0n, .framer-lNBDN .framer-i75iz2, .framer-lNBDN .framer-x5l8fl, .framer-lNBDN .framer-y1m13n, .framer-lNBDN .framer-19io7vw, .framer-lNBDN .framer-1ecvoav, .framer-lNBDN .framer-9j63k9 { gap: 0px; } .framer-lNBDN.framer-aykqjd > *, .framer-lNBDN .framer-29tit6 > *, .framer-lNBDN .framer-fqqv51 > *, .framer-lNBDN .framer-v3gu6x > *, .framer-lNBDN .framer-1q7pjsg > *, .framer-lNBDN .framer-31zjx0 > *, .framer-lNBDN .framer-hnpd18 > *, .framer-lNBDN .framer-1bfrf4z > *, .framer-lNBDN .framer-9b4ch0 > *, .framer-lNBDN .framer-i75iz2 > *, .framer-lNBDN .framer-x5l8fl > *, .framer-lNBDN .framer-y1m13n > *, .framer-lNBDN .framer-19io7vw > *, .framer-lNBDN .framer-1ecvoav > *, .framer-lNBDN .framer-9j63k9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-lNBDN.framer-aykqjd > :first-child, .framer-lNBDN .framer-1ksl4mx > :first-child, .framer-lNBDN .framer-1dbty54 > :first-child, .framer-lNBDN .framer-14d46tm > :first-child, .framer-lNBDN .framer-29tit6 > :first-child, .framer-lNBDN .framer-fqqv51 > :first-child, .framer-lNBDN .framer-v3gu6x > :first-child, .framer-lNBDN .framer-1q7pjsg > :first-child, .framer-lNBDN .framer-31zjx0 > :first-child, .framer-lNBDN .framer-hnpd18 > :first-child, .framer-lNBDN .framer-1bfrf4z > :first-child, .framer-lNBDN .framer-9b4ch0 > :first-child, .framer-lNBDN .framer-i75iz2 > :first-child, .framer-lNBDN .framer-x5l8fl > :first-child, .framer-lNBDN .framer-y1m13n > :first-child, .framer-lNBDN .framer-19io7vw > :first-child, .framer-lNBDN .framer-1ecvoav > :first-child, .framer-lNBDN .framer-9j63k9 > :first-child { margin-top: 0px; } .framer-lNBDN.framer-aykqjd > :last-child, .framer-lNBDN .framer-1ksl4mx > :last-child, .framer-lNBDN .framer-1dbty54 > :last-child, .framer-lNBDN .framer-14d46tm > :last-child, .framer-lNBDN .framer-29tit6 > :last-child, .framer-lNBDN .framer-fqqv51 > :last-child, .framer-lNBDN .framer-v3gu6x > :last-child, .framer-lNBDN .framer-1q7pjsg > :last-child, .framer-lNBDN .framer-31zjx0 > :last-child, .framer-lNBDN .framer-hnpd18 > :last-child, .framer-lNBDN .framer-1bfrf4z > :last-child, .framer-lNBDN .framer-9b4ch0 > :last-child, .framer-lNBDN .framer-i75iz2 > :last-child, .framer-lNBDN .framer-x5l8fl > :last-child, .framer-lNBDN .framer-y1m13n > :last-child, .framer-lNBDN .framer-19io7vw > :last-child, .framer-lNBDN .framer-1ecvoav > :last-child, .framer-lNBDN .framer-9j63k9 > :last-child { margin-bottom: 0px; } .framer-lNBDN .framer-1ksl4mx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-lNBDN .framer-1dbty54 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lNBDN .framer-wj4m5g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-lNBDN .framer-wj4m5g > :first-child, .framer-lNBDN .framer-1tfmw30 > :first-child, .framer-lNBDN .framer-1nknj68 > :first-child, .framer-lNBDN .framer-13ov721 > :first-child, .framer-lNBDN .framer-1iv7pqw > :first-child, .framer-lNBDN .framer-15rzj0n > :first-child { margin-left: 0px; } .framer-lNBDN .framer-wj4m5g > :last-child, .framer-lNBDN .framer-1tfmw30 > :last-child, .framer-lNBDN .framer-1nknj68 > :last-child, .framer-lNBDN .framer-13ov721 > :last-child, .framer-lNBDN .framer-1iv7pqw > :last-child, .framer-lNBDN .framer-15rzj0n > :last-child { margin-right: 0px; } .framer-lNBDN .framer-14d46tm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lNBDN .framer-1tfmw30 > *, .framer-lNBDN .framer-1nknj68 > *, .framer-lNBDN .framer-13ov721 > *, .framer-lNBDN .framer-1iv7pqw > *, .framer-lNBDN .framer-15rzj0n > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",`@media (min-width: 900px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-lNBDN { background: white; } .framer-lNBDN.framer-aykqjd { width: 900px; } .framer-lNBDN .framer-1idvspf { gap: 220px; height: min-content; justify-content: center; } .framer-lNBDN .framer-1gy4015 { bottom: -200px; top: -368px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lNBDN .framer-1idvspf { gap: 0px; } .framer-lNBDN .framer-1idvspf > * { margin: 0px; margin-bottom: calc(220px / 2); margin-top: calc(220px / 2); } .framer-lNBDN .framer-1idvspf > :first-child { margin-top: 0px; } .framer-lNBDN .framer-1idvspf > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 899px) { .${metadata.bodyClassName}-framer-lNBDN { background: white; } .framer-lNBDN.framer-aykqjd { width: 390px; } .framer-lNBDN .framer-1ksl4mx { padding: 0px; } .framer-lNBDN .framer-1idvspf { border-top-left-radius: unset; border-top-right-radius: unset; gap: 40px; height: min-content; justify-content: center; padding: 24px 16px 40px 16px; } .framer-lNBDN .framer-1dbty54 { flex: 1 0 0px; width: 1px; } .framer-lNBDN .framer-wj4m5g { padding: 40px 16px 80px 16px; } .framer-lNBDN .framer-14d46tm { padding: 16px; } .framer-lNBDN .framer-1tfmw30, .framer-lNBDN .framer-1nknj68, .framer-lNBDN .framer-13ov721, .framer-lNBDN .framer-1iv7pqw, .framer-lNBDN .framer-15rzj0n { flex-direction: column; gap: 20px; } .framer-lNBDN .framer-29tit6, .framer-lNBDN .framer-fqqv51, .framer-lNBDN .framer-v3gu6x, .framer-lNBDN .framer-1q7pjsg, .framer-lNBDN .framer-31zjx0, .framer-lNBDN .framer-hnpd18, .framer-lNBDN .framer-1bfrf4z, .framer-lNBDN .framer-9b4ch0, .framer-lNBDN .framer-i75iz2, .framer-lNBDN .framer-x5l8fl { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-lNBDN .framer-1idvspf, .framer-lNBDN .framer-1tfmw30, .framer-lNBDN .framer-1nknj68, .framer-lNBDN .framer-13ov721, .framer-lNBDN .framer-1iv7pqw, .framer-lNBDN .framer-15rzj0n { gap: 0px; } .framer-lNBDN .framer-1idvspf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lNBDN .framer-1idvspf > :first-child, .framer-lNBDN .framer-1tfmw30 > :first-child, .framer-lNBDN .framer-1nknj68 > :first-child, .framer-lNBDN .framer-13ov721 > :first-child, .framer-lNBDN .framer-1iv7pqw > :first-child, .framer-lNBDN .framer-15rzj0n > :first-child { margin-top: 0px; } .framer-lNBDN .framer-1idvspf > :last-child, .framer-lNBDN .framer-1tfmw30 > :last-child, .framer-lNBDN .framer-1nknj68 > :last-child, .framer-lNBDN .framer-13ov721 > :last-child, .framer-lNBDN .framer-1iv7pqw > :last-child, .framer-lNBDN .framer-15rzj0n > :last-child { margin-bottom: 0px; } .framer-lNBDN .framer-1tfmw30 > *, .framer-lNBDN .framer-1nknj68 > *, .framer-lNBDN .framer-13ov721 > *, .framer-lNBDN .framer-1iv7pqw > *, .framer-lNBDN .framer-15rzj0n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2304\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SAVaVBds1\":{\"layout\":[\"fixed\",\"auto\"]},\"UdCUumDZS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerDPwj23uK6=withCSS(Component,css,\"framer-lNBDN\");export default FramerDPwj23uK6;FramerDPwj23uK6.displayName=\"Vacancies / Care Assistants / Care Assistants Application\";FramerDPwj23uK6.defaultProps={height:2304,width:1440};addFonts(FramerDPwj23uK6,[{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:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"}]},...NavFonts,...ButtonFonts,...FileUploadInputFonts,...FramerForms20FormFieldFonts,...ButtonFormFonts,...PartnersFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDPwj23uK6\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SAVaVBds1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UdCUumDZS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2304\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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BAAO,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", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "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", "ue", "_props_invalidEvent", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "fileTypes", "fileTypeStrings", "fileType", "onFileChange", "event", "file", "result", "uploadFile", "onKeyDown", "_inputRef_current", "u", "motion", "createBackground", "p", "HiddenInput", "Icon", "Border", "addPropertyControls", "ControlType", "fillProp", "iconProp", "borderProp", "resolve", "reject", "fetchPresignedURL", "presignedUrl", "postToPresignedURL", "_file_name", "response", "responseBody", "removeURLParameters", "urlString", "url", "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", "ue", "defaultValue", "prefillValue", "urlParam", "searchParams", "window", "param", "isNumber", "values", "optionNames", "v", "otherFieldData", "_prev_formId1", "borderRadius", "style", "onChangeEventTargetValue", "event", "elements", "_props_textCharacterLimit", "p", "u", "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", "NavFonts", "getFonts", "TQLI3WLki_default", "ButtonFonts", "rT0ATOLLr_default", "FileUploadInputFonts", "FileUploadInput", "FramerForms20FormFieldFonts", "FormField", "ButtonFormFonts", "qmD5t2KIO_default", "PartnersFonts", "GNIILN0z_default", "FooterFonts", "k134BdDX9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "Image2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "RichText2", "x", "SVG", "FormContainer", "formState", "l", "FormPlainTextInput2", "resolvedLinks1", "resolvedLinks2", "css", "FramerDPwj23uK6", "withCSS", "DPwj23uK6_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
