{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UXNWRabX0IeVTgbvsbAG/AoxciJnRfOoOyuy3dWMR/FileUploadInput.js", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/xNNp0cwV4HjlvXfhj3Tz/XvC7FYHi6hHMM4BpZSL7/zdJCnUhRR.js", "ssg:https://framerusercontent.com/modules/eS1BR7Br90NKqmLftWXH/oecKD5Wgoj5I46MFiuzx/wKrc_O9XL.js"],
  "sourcesContent": ["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 PRESIGNED_URL_API=\"https://api.framerforms.com/s3/signed-url\";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\")`;const AUDIO_FILE_TYPES=[\".mp3\",\".wav\",\".ogg\",\".m4a\",\".aac\",\".wma\",\".flac\",\".mid\",\".midi\",\".aif\",\".aiff\"].join(\",\");/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function FileUploadInput(props){var _imagePreview_border;const{shadows,border,layout,icon,imagePreview,xButton}=props;const id=props.id||createId();const isVertical=props.layout.direction==\"vertical\";const maxSizeMB=Math.min(props.maxSizeMB||25,25);const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);const[fileName,setFileName]=useState(\"\");const[fileUploadUrl,setFileUploadUrl]=useState(\"\");const[isUploading,setIsUploading]=useState(false);const[imagePreviewUrl,setImagePreviewUrl]=useState(\"\");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 accept=\"\";switch(props.fileTypes){case\"audio\":accept=AUDIO_FILE_TYPES;break;case\"video\":accept=\"video/*\";break;case\"image\":accept=\"image/*\";break;case\"custom\":const fileTypeStrings=[];for(const fileType of props.fileTypesCustom){if(fileType.startsWith(\".\")||fileType==\"video/*\"||fileType==\"image/*\"){fileTypeStrings.push(fileType);}else if(fileType==\"audio/*\"){fileTypeStrings.push(AUDIO_FILE_TYPES);}else{fileTypeStrings.push(`.${fileType}`);}}accept=fileTypeStrings.join(\",\");break;}async function onFileChange(event,maxSizeMB){const file=event.target.files[0];setFileName(file?file.name:\"\");setImagePreviewUrl(\"\");if(!file){return;}// Add image preview if it's an image file and imagePreview is enabled\nif(imagePreview&&file.type.startsWith(\"image/\")){setImagePreviewUrl(URL.createObjectURL(file));}// File type validation\nif(props.fileTypes!==\"all\"){var _props_fileTypesCustom;let isValidType=false;if(props.fileTypes===\"custom\"&&((_props_fileTypesCustom=props.fileTypesCustom)===null||_props_fileTypesCustom===void 0?void 0:_props_fileTypesCustom.length)){isValidType=props.fileTypesCustom.some(type=>{if(type.startsWith(\".\")){// Check file extension\nreturn file.name.toLowerCase().endsWith(type.toLowerCase());}else if(type.includes(\"/*\")){// Check MIME type pattern (e.g., \"image/*\")\nconst[category]=type.split(\"/\");return file.type.startsWith(`${category}/`);}// Exact MIME type match\nreturn file.type===type;});}else{// Handle built-in types (audio, video, image)\nisValidType=file.type.startsWith(`${props.fileTypes}/`);}if(!isValidType){setInvalid(true);console.error(`Invalid file type. Allowed: ${accept}`);return;}}// File size validation\nconst maxSizeBytes=maxSizeMB*1024*1024;if(file.size>maxSizeBytes){setInvalid(true);console.error(`File size exceeds the maximum limit of ${maxSizeMB}MB.`);return;}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();}}function clearFile(){setFileName(\"\");setFileUploadUrl(\"\");setImagePreviewUrl(\"\");setIsUploading(false);if(inputRef.current){inputRef.current.value=\"\";}}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:accept,autoFocus:props.autoFocus,onChange:event=>onFileChange(event,maxSizeMB),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}}):imagePreviewUrl&&imagePreview?/*#__PURE__*/_jsxs(\"div\",{style:{width:imagePreview.aspectRatio===\"square\"?imagePreview.height:\"auto\",height:imagePreview.height,maxWidth:imagePreview.aspectRatio===\"square\"?imagePreview.height:\"100%\",maxHeight:imagePreview.height,borderRadius:imagePreview.radius,overflow:\"hidden\",boxShadow:imagePreview.shadows,position:\"relative\",borderColor:(_imagePreview_border=imagePreview.border)===null||_imagePreview_border===void 0?void 0:_imagePreview_border.color},children:[/*#__PURE__*/_jsx(\"img\",{src:imagePreviewUrl,style:{width:\"100%\",height:\"100%\",objectFit:\"cover\",objectPosition:\"center\"}}),imagePreview.border&&/*#__PURE__*/_jsx(Border,{...imagePreview.border})]}):/*#__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(\"##\",maxSizeMB.toString()),xButton&&fileName&&/*#__PURE__*/_jsx(motion.button,{onClick:e=>{e.preventDefault();clearFile();},style:{position:\"absolute\",background:xButton.background||\"none\",padding:xButton.padding,borderRadius:xButton.radius,border:\"none\",cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",...getXButtonPosition(xButton.location,xButton.inset)},children:/*#__PURE__*/_jsx(Icon,{...xButton,defaultImage:`url('data:image/svg+xml,${encodeURIComponent(`<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 4L4 12M4 4L12 12\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>`)}')`})}),border&&/*#__PURE__*/_jsx(Border,{...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\"},maxSizeMB:{type:ControlType.Number,defaultValue:25,min:1,step:1,max:25,unit:\" MB\",title:\"Max Size\"},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\"}}}),xButton:iconProp({size:14,buttonTitle:\"Options\",controls:{location:{type:ControlType.Enum,defaultValue:\"topRight\",options:[\"topLeft\",\"topRight\",\"centerLeft\",\"centerRight\",\"bottomLeft\",\"bottomRight\"],optionTitles:[\"Top Left\",\"Top Right\",\"Center Left\",\"Center Right\",\"Bottom Left\",\"Bottom Right\"]},inset:{type:ControlType.Number,defaultValue:4,min:0,step:1},background:{type:ControlType.Color,optional:true},padding:{type:ControlType.Padding,defaultValue:\"4px\"},radius:{type:ControlType.BorderRadius,defaultValue:\"12px\"}}}),imagePreview:{type:ControlType.Object,optional:true,defaultValue:{height:40,aspectRatio:\"auto\"},controls:{height:{type:ControlType.Number,defaultValue:40,min:0,step:1},aspectRatio:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"square\"],optionTitles:[\"Auto\",\"Square\"],displaySegmentedControl:true},radius:{type:ControlType.BorderRadius,defaultValue:\"5px\"},border:borderProp({focus:false,invalid:false,defaultValue:false}),shadows:{type:ControlType.BoxShadow}},hidden:props=>props.fileTypes===\"audio\"||props.fileTypes===\"video\"},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(PRESIGNED_URL_API,{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();}function getXButtonPosition(location,inset){switch(location){case\"topLeft\":return{top:inset,left:inset};case\"topRight\":return{top:inset,right:inset};case\"centerLeft\":return{top:\"50%\",left:inset,transform:\"translateY(-50%)\"};case\"centerRight\":return{top:\"50%\",right:inset,transform:\"translateY(-50%)\"};case\"bottomLeft\":return{bottom:inset,left:inset};case\"bottomRight\":return{bottom:inset,right:inset};default:return{top:inset,right:inset}// Default to topRight\n;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FileUploadInput\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FileUploadInput.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=createId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{children:`\n                [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                    display: none !important;\n                }`})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Item from\"https://framerusercontent.com/modules/eS1BR7Br90NKqmLftWXH/oecKD5Wgoj5I46MFiuzx/wKrc_O9XL.js\";const FeatherFonts=getFonts(Feather);const ItemFonts=getFonts(Item);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"eeRH09Zcb\",\"rLun1_I8D\"];const serializationHash=\"framer-nw3Od\";const variantClassNames={eeRH09Zcb:\"framer-v-lzv4or\",rLun1_I8D:\"framer-v-mzfr57\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"eeRH09Zcb\",Mobile:\"rLun1_I8D\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eeRH09Zcb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eeRH09Zcb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClicktxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"rLun1_I8D\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lzv4or\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"eeRH09Zcb\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ea57be1d-e320-40d7-a712-90f45c7c562d, rgba(19, 149, 211, 0.25))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(49, 150, 209, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(49, 150, 209, 0.09534), 0px 10px 10px -3.75px rgba(49, 150, 209, 0.0375)\",...style},...addPropertyOverrides({rLun1_I8D:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssn1uc\",layoutDependency:layoutDependency,layoutId:\"QVB7gBh64\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203)))\"},children:\"Choose your nursery\"})}),className:\"framer-xqs1bm\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"a2ISTyYr7\",style:{\"--extracted-r6o4lv\":\"var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vrtn7s\",layoutDependency:layoutDependency,layoutId:\"DZNlkH_32\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bfmv3-container\",id:`${layoutId}-5bfmv3`,layoutDependency:layoutDependency,layoutId:\"XPxyfpVfq-container\",ref:ref2,children:[/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"chevron-down\",id:\"XPxyfpVfq\",layoutId:\"XPxyfpVfq\",mirrored:false,onClick:onClicktxyyif({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-5bfmv3`,offsetX:-2,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1h25z13\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"hzN6EIcvs\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p2h7j3\",layoutDependency:layoutDependency,layoutId:\"hywSrqazL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"439.0179px\",...addPropertyOverrides({rLun1_I8D:{width:\"319.2857px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p7yk54-container\",layoutDependency:layoutDependency,layoutId:\"cAudfKQ2g-container\",children:/*#__PURE__*/_jsx(Item,{BVADFJFCs:\"Hornchurch\",CW3Igpapk:\"103 Suttons Lane, RM12 6RR\",height:\"100%\",id:\"cAudfKQ2g\",layoutId:\"cAudfKQ2g\",style:{width:\"100%\"},TSrPWcPZs:\"https://app.famly.co/#/inquiry?institutionId=149675c6-f55c-42c9-b0e7-b43f5ad0fda0&hmac=0bfa270dfcd881e04a17ca8afc5a571f30678350df2db33205b44058ad4d06cd&locale=en_GB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"439.0179px\",...addPropertyOverrides({rLun1_I8D:{width:\"319.2857px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ay8jy-container\",layoutDependency:layoutDependency,layoutId:\"RSTs5vfYo-container\",children:/*#__PURE__*/_jsx(Item,{BVADFJFCs:\"South Hornchurch\",CW3Igpapk:\"Rainham Road, \\uFEFFRM13 7RD\",height:\"100%\",id:\"RSTs5vfYo\",layoutId:\"RSTs5vfYo\",style:{width:\"100%\"},TSrPWcPZs:\"https://app.famly.co/#/inquiry?institutionId=42186e71-6141-41ed-a0e6-9ce3b68ba496&hmac=24b5d9620dd1b2750e2b4230ba9f243156ed80d976574c06561da1da14f15bf0&locale=en_GB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"439.0179px\",...addPropertyOverrides({rLun1_I8D:{width:\"319.2857px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kdwxo5-container\",layoutDependency:layoutDependency,layoutId:\"Ee02iJbD6-container\",children:/*#__PURE__*/_jsx(Item,{BVADFJFCs:\"Rainham\",CW3Igpapk:\"Brights Avenue, RM13 9NN\",height:\"100%\",id:\"Ee02iJbD6\",layoutId:\"Ee02iJbD6\",style:{width:\"100%\"},TSrPWcPZs:\"https://app.famly.co/#/inquiry?institutionId=1006dab5-23ef-4df1-92c5-c00ae38bde4f&hmac=b84f1f90540139a09cb5e1fb65a5a37b166c62cacb62e1bfb5851e8560c3eff1&locale=en_GB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"439.0179px\",...addPropertyOverrides({rLun1_I8D:{width:\"319.2857px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ht7i5r-container\",layoutDependency:layoutDependency,layoutId:\"RFN7_ytdd-container\",children:/*#__PURE__*/_jsx(Item,{BVADFJFCs:\"Romford\",CW3Igpapk:\"61 Eastern Road, RM1 3PB\",height:\"100%\",id:\"RFN7_ytdd\",layoutId:\"RFN7_ytdd\",style:{width:\"100%\"},TSrPWcPZs:\"https://app.famly.co/#/inquiry?institutionId=de6aa80b-b8ef-4338-b748-f0278973d3fc&hmac=3c81e1435aafd48208ac3574103cafb4ab717b32926f02bbb9dac85fbbbe714e&locale=en_GB\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekevqb\",layoutDependency:layoutDependency,layoutId:\"sF4Kqum27\",style:{backgroundColor:\"rgb(68, 204, 255)\"},variants:{rLun1_I8D:{backgroundColor:\"rgba(68, 204, 255, 0)\"}},...addPropertyOverrides({rLun1_I8D:{\"data-highlight\":true,onTap:onTap1wnntms({overlay})}},baseVariant,gestureVariant)})]})})})})]})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nw3Od.framer-4dfbe0, .framer-nw3Od .framer-4dfbe0 { display: block; }\",\".framer-nw3Od.framer-lzv4or { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 60px; justify-content: space-between; overflow: hidden; padding: 16px; position: relative; width: 476px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nw3Od .framer-1ssn1uc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-nw3Od .framer-xqs1bm { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-nw3Od .framer-1vrtn7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nw3Od .framer-5bfmv3-container { cursor: pointer; flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-nw3Od .framer-1h25z13 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nw3Od .framer-1p2h7j3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nw3Od .framer-1p7yk54-container, .framer-nw3Od .framer-14ay8jy-container, .framer-nw3Od .framer-kdwxo5-container, .framer-nw3Od .framer-ht7i5r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-nw3Od .framer-ekevqb { flex: none; height: 30px; overflow: visible; position: relative; width: 34px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nw3Od .framer-1ssn1uc, .framer-nw3Od .framer-1vrtn7s, .framer-nw3Od .framer-1h25z13, .framer-nw3Od .framer-1p2h7j3 { gap: 0px; } .framer-nw3Od .framer-1ssn1uc > *, .framer-nw3Od .framer-1vrtn7s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nw3Od .framer-1ssn1uc > :first-child, .framer-nw3Od .framer-1vrtn7s > :first-child { margin-left: 0px; } .framer-nw3Od .framer-1ssn1uc > :last-child, .framer-nw3Od .framer-1vrtn7s > :last-child { margin-right: 0px; } .framer-nw3Od .framer-1h25z13 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nw3Od .framer-1h25z13 > :first-child, .framer-nw3Od .framer-1p2h7j3 > :first-child { margin-top: 0px; } .framer-nw3Od .framer-1h25z13 > :last-child, .framer-nw3Od .framer-1p2h7j3 > :last-child { margin-bottom: 0px; } .framer-nw3Od .framer-1p2h7j3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-nw3Od.framer-v-mzfr57.framer-lzv4or { width: 360px; }\",\".framer-nw3Od.framer-v-mzfr57 .framer-5bfmv3-container { order: 0; }\",\".framer-nw3Od.framer-v-mzfr57 .framer-1h25z13 { overflow: visible; width: 320px; }\",\".framer-nw3Od.framer-v-mzfr57 .framer-ekevqb { cursor: pointer; height: 28px; position: absolute; right: -2px; top: -48px; width: 28px; z-index: 10; }\",'.framer-nw3Od[data-border=\"true\"]::after, .framer-nw3Od [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 476\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rLun1_I8D\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzdJCnUhRR=withCSS(Component,css,\"framer-nw3Od\");export default FramerzdJCnUhRR;FramerzdJCnUhRR.displayName=\"Contact Drop down\";FramerzdJCnUhRR.defaultProps={height:60,width:476};addPropertyControls(FramerzdJCnUhRR,{variant:{options:[\"eeRH09Zcb\",\"rLun1_I8D\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzdJCnUhRR,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...FeatherFonts,...ItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzdJCnUhRR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rLun1_I8D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"476\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zdJCnUhRR.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={V7Gstto1B:{hover:true}};const serializationHash=\"framer-TMNmm\";const variantClassNames={V7Gstto1B:\"framer-v-1vlkoaw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,link,title,title2,width,...props})=>{var _ref,_ref1;return{...props,BVADFJFCs:(_ref=title!==null&&title!==void 0?title:props.BVADFJFCs)!==null&&_ref!==void 0?_ref:\"Hornchurch\",CW3Igpapk:(_ref1=title2!==null&&title2!==void 0?title2:props.CW3Igpapk)!==null&&_ref1!==void 0?_ref1:\"Brights Avenue, RM13 9NN\",Nd2JpLiKG:click!==null&&click!==void 0?click:props.Nd2JpLiKG,TSrPWcPZs:link!==null&&link!==void 0?link:props.TSrPWcPZs};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Nd2JpLiKG,BVADFJFCs,CW3Igpapk,TSrPWcPZs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"V7Gstto1B\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzr0atw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Nd2JpLiKG){const res=await Nd2JpLiKG(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TSrPWcPZs,nodeId:\"V7Gstto1B\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1vlkoaw\",className,classNames)} framer-1wi8aq`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"V7Gstto1B\",onTap:onTapzr0atw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"V7Gstto1B-hover\":{backgroundColor:\"var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203))\"}},...addPropertyOverrides({\"V7Gstto1B-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bhbvoy\",layoutDependency:layoutDependency,layoutId:\"tXNwHOAJW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(21, 136, 203))\"},children:\"Hornchurch\"})}),className:\"framer-9l0190\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"oMSWS5NXk\",style:{\"--extracted-r6o4lv\":\"rgb(21, 136, 203)\",\"--framer-paragraph-spacing\":\"0px\"},text:BVADFJFCs,variants:{\"V7Gstto1B-hover\":{\"--extracted-r6o4lv\":\"var(--token-ca004715-5fc9-482b-a481-240b6c3be548, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"V7Gstto1B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca004715-5fc9-482b-a481-240b6c3be548, rgb(255, 255, 255)))\"},children:\"Hornchurch\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203)))\"},children:\"Brights Avenue, RM13 9NN\"})}),className:\"framer-16099iz\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"g3Wd2tLqE\",style:{\"--extracted-r6o4lv\":\"var(--token-c00b4fea-99d0-46a4-ba80-f822c24a2e38, rgb(21, 136, 203))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:CW3Igpapk,variants:{\"V7Gstto1B-hover\":{\"--extracted-r6o4lv\":\"var(--token-ca004715-5fc9-482b-a481-240b6c3be548, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"V7Gstto1B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ca004715-5fc9-482b-a481-240b6c3be548, rgb(255, 255, 255)))\"},children:\"Brights Avenue, RM13 9NN\"})})}},baseVariant,gestureVariant)})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TMNmm.framer-1wi8aq, .framer-TMNmm .framer-1wi8aq { display: block; }\",\".framer-TMNmm.framer-1vlkoaw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: 446px; }\",\".framer-TMNmm .framer-1bhbvoy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TMNmm .framer-9l0190 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-TMNmm .framer-16099iz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TMNmm.framer-1vlkoaw, .framer-TMNmm .framer-1bhbvoy { gap: 0px; } .framer-TMNmm.framer-1vlkoaw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-TMNmm.framer-1vlkoaw > :first-child, .framer-TMNmm .framer-1bhbvoy > :first-child { margin-left: 0px; } .framer-TMNmm.framer-1vlkoaw > :last-child, .framer-TMNmm .framer-1bhbvoy > :last-child { margin-right: 0px; } .framer-TMNmm .framer-1bhbvoy > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 446\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l0Egn7wxl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Nd2JpLiKG\":\"click\",\"BVADFJFCs\":\"title\",\"CW3Igpapk\":\"title2\",\"TSrPWcPZs\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwKrc_O9XL=withCSS(Component,css,\"framer-TMNmm\");export default FramerwKrc_O9XL;FramerwKrc_O9XL.displayName=\"Item\";FramerwKrc_O9XL.defaultProps={height:49,width:446};addPropertyControls(FramerwKrc_O9XL,{Nd2JpLiKG:{title:\"Click\",type:ControlType.EventHandler},BVADFJFCs:{defaultValue:\"Hornchurch\",displayTextArea:false,title:\"Title\",type:ControlType.String},CW3Igpapk:{defaultValue:\"Brights Avenue, RM13 9NN\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},TSrPWcPZs:{title:\"Link\",type:ControlType.Link}});addFonts(FramerwKrc_O9XL,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwKrc_O9XL\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l0Egn7wxl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"446\",\"framerIntrinsicHeight\":\"49\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Nd2JpLiKG\\\":\\\"click\\\",\\\"BVADFJFCs\\\":\\\"title\\\",\\\"CW3Igpapk\\\":\\\"title2\\\",\\\"TSrPWcPZs\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wKrc_O9XL.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "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", "PRESIGNED_URL_API", "LOADING_SPINNER", "AUDIO_FILE_TYPES", "FileUploadInput", "props", "_imagePreview_border", "shadows", "border", "layout", "icon", "imagePreview", "xButton", "id", "createId", "isVertical", "maxSizeMB", "focused", "setFocused", "ye", "invalid", "setInvalid", "fileName", "setFileName", "fileUploadUrl", "setFileUploadUrl", "isUploading", "setIsUploading", "imagePreviewUrl", "setImagePreviewUrl", "inputRef", "pe", "ue", "_props_invalidEvent", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "accept", "fileTypeStrings", "fileType", "onFileChange", "event", "file", "_props_fileTypesCustom", "isValidType", "type", "category", "maxSizeBytes", "result", "uploadFile", "onKeyDown", "_inputRef_current", "clearFile", "u", "motion", "createBackground", "p", "HiddenInput", "Border", "Icon", "e", "getXButtonPosition", "addPropertyControls", "ControlType", "fillProp", "iconProp", "borderProp", "resolve", "reject", "fetchPresignedURL", "presignedUrl", "postToPresignedURL", "_file_name", "response", "responseBody", "removeURLParameters", "urlString", "url", "location", "inset", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "link", "title", "title2", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Nd2JpLiKG", "BVADFJFCs", "CW3Igpapk", "TSrPWcPZs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzr0atw", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "RichText2", "css", "FramerwKrc_O9XL", "withCSS", "wKrc_O9XL_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "ItemFonts", "wKrc_O9XL_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClicktxyyif", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "pe", "ref2", "ref3", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "l", "ComponentViewportProvider", "AnimatePresence", "Floating", "css", "FramerzdJCnUhRR", "withCSS", "zdJCnUhRR_default", "addPropertyControls", "ControlType", "addFonts"]
}
