{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/2WYcof1jX5OQg3dGe8n6/tKNNiEWTlmk6bFBJIt8e/azUo1pF7n.js", "ssg:https://framerusercontent.com/modules/S5hOBBG907HrORVwmosp/GXoMdeWIIi1hEpmi7duk/Bi0yTp6nk.js", "ssg:https://framerusercontent.com/modules/C5BSFknTjoLYWuZi2pXZ/CYvqCO2CRdBIHezAzQ2M/cgvUcXltQ.js", "ssg:https://framerusercontent.com/modules/cA5bhx7p1ZSi6O2dmsbj/4nei9vMEhS7MByMC1wNE/fJmu2vtrs.js", "ssg:https://framerusercontent.com/modules/Kl60iQFR9yWyh8D2niSK/vEP2KMVp740ne2z9J6VA/paKdx5z1z.js", "ssg:https://framerusercontent.com/modules/0lLewP9sQJBaddze6Lyn/pbH3z7Ayan7fDhPcfCuA/DqF92a4JT.js", "ssg:https://framerusercontent.com/modules/ZvuzJdDgje69OG5Be60B/JZ8ODej9PvBSdVKArZks/qJ23nN0eE.js", "ssg:https://framerusercontent.com/modules/1wvjeLQ6lbQ4ltR1wjGd/jCEDiZvdyZzWWaELi4RA/Vg2XPHXVM.js", "ssg:https://framerusercontent.com/modules/Cirxy5pW8eWxxgT7uq5k/rnzqDDM73hnBkVkT4rzl/Prefab_Figure.js", "ssg:https://framerusercontent.com/modules/5YroyaQHLPaRrUS6UESF/iPM5mzOBD6jGiFKDkD5n/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Prefab_Form_Button from\"https://framerusercontent.com/modules/FMqNcnSNEiI8o8U1ELsB/V6hcSJSRZJST65qJ3E6S/Prefab_Form_Button.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9GtWb2YD7I5PN7F5PoHM/r4wJLKWspzEWJcXZP1NE/ftS1dvuPk.js\";const Prefab_Form_ButtonFonts=getFonts(Prefab_Form_Button);const enabledGestures={eJOoPVMey:{hover:true,pressed:true}};const cycleOrder=[\"eJOoPVMey\"];const serializationHash=\"framer-UEvgt\";const variantClassNames={eJOoPVMey:\"framer-v-j76p7q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({formID,height,id,width,...props})=>{return{...props,pdt2AxGjr:formID!==null&&formID!==void 0?formID:props.pdt2AxGjr};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pdt2AxGjr,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eJOoPVMey\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j76p7q\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Submit\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"eJOoPVMey\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(60, 47, 181, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, rgb(242, 245, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.6666666666666665px rgba(0, 0, 0, 0.23495), 0px 2.288533303243457px 2.288533303243457px -3.333333333333333px rgba(0, 0, 0, 0.19279), 0px 10px 10px -5px rgba(0, 0, 0, 0)\",...style},variants:{\"eJOoPVMey-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.1666666666666665px rgba(0, 0, 0, 0.16898), 0px 2.288533303243457px 2.288533303243457px -2.333333333333333px rgba(0, 0, 0, 0.15211), 0px 10px 10px -3.5px rgba(0, 0, 0, 0.075)\"},\"eJOoPVMey-pressed\":{\"--border-color\":\"rgb(17, 17, 17)\"}},...addPropertyOverrides({\"eJOoPVMey-hover\":{\"data-framer-name\":undefined},\"eJOoPVMey-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejoitt-container\",layoutDependency:layoutDependency,layoutId:\"x0AmGyhkX-container\",children:/*#__PURE__*/_jsx(Prefab_Form_Button,{buttonType:\"reset\",formID:pdt2AxGjr,height:\"100%\",id:\"x0AmGyhkX\",layoutId:\"x0AmGyhkX\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-186j0er\",\"data-styles-preset\":\"ftS1dvuPk\",children:\"Reset\"})}),className:\"framer-1f0w5q8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s8FA4Ne2x\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UEvgt.framer-194xv5e, .framer-UEvgt .framer-194xv5e { display: block; }\",\".framer-UEvgt.framer-j76p7q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; min-width: 80px; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-UEvgt .framer-ejoitt-container { flex: none; height: auto; left: 0px; position: absolute; top: -60px; width: auto; z-index: 1; }\",\".framer-UEvgt .framer-1f0w5q8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UEvgt.framer-j76p7q { gap: 0px; } .framer-UEvgt.framer-j76p7q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UEvgt.framer-j76p7q > :first-child { margin-top: 0px; } .framer-UEvgt.framer-j76p7q > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-UEvgt[data-border=\"true\"]::after, .framer-UEvgt [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 32\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]},\"e3pu7g1l9\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]},\"x92PZjSvY\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]}}}\n * @framerVariables {\"pdt2AxGjr\":\"formID\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerazUo1pF7n=withCSS(Component,css,\"framer-UEvgt\");export default FramerazUo1pF7n;FramerazUo1pF7n.displayName=\"site/Form Button-Reset\";FramerazUo1pF7n.defaultProps={height:32,width:80};addPropertyControls(FramerazUo1pF7n,{pdt2AxGjr:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String}});addFonts(FramerazUo1pF7n,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...Prefab_Form_ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerazUo1pF7n\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"pdt2AxGjr\\\":\\\"formID\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]},\\\"e3pu7g1l9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]},\\\"x92PZjSvY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"80\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Prefab_Form_Button from\"https://framerusercontent.com/modules/FMqNcnSNEiI8o8U1ELsB/V6hcSJSRZJST65qJ3E6S/Prefab_Form_Button.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9GtWb2YD7I5PN7F5PoHM/r4wJLKWspzEWJcXZP1NE/ftS1dvuPk.js\";const Prefab_Form_ButtonFonts=getFonts(Prefab_Form_Button);const enabledGestures={MWIMaoBVC:{hover:true,pressed:true}};const cycleOrder=[\"MWIMaoBVC\"];const serializationHash=\"framer-EdUMx\";const variantClassNames={MWIMaoBVC:\"framer-v-15w5p2r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({formID,height,id,width,...props})=>{return{...props,pdt2AxGjr:formID!==null&&formID!==void 0?formID:props.pdt2AxGjr};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pdt2AxGjr,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MWIMaoBVC\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15w5p2r\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Submit\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"MWIMaoBVC\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(60, 47, 181, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(86, 75, 184))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.6666666666666665px rgba(0, 0, 0, 0.23495), 0px 2.288533303243457px 2.288533303243457px -3.333333333333333px rgba(0, 0, 0, 0.19279), 0px 10px 10px -5px rgba(0, 0, 0, 0)\",...style},variants:{\"MWIMaoBVC-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.1666666666666665px rgba(0, 0, 0, 0.16898), 0px 2.288533303243457px 2.288533303243457px -2.333333333333333px rgba(0, 0, 0, 0.15211), 0px 10px 10px -3.5px rgba(0, 0, 0, 0.075)\"}},...addPropertyOverrides({\"MWIMaoBVC-hover\":{\"data-framer-name\":undefined},\"MWIMaoBVC-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b2glx-container\",layoutDependency:layoutDependency,layoutId:\"BeD6KJpAf-container\",children:/*#__PURE__*/_jsx(Prefab_Form_Button,{buttonType:\"submit\",formID:pdt2AxGjr,height:\"100%\",id:\"BeD6KJpAf\",layoutId:\"BeD6KJpAf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-186j0er\",\"data-styles-preset\":\"ftS1dvuPk\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(247, 247, 247))\"},children:\"Submit\"})}),className:\"framer-4e3b5l\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zDTPbrcN_\",style:{\"--extracted-r6o4lv\":\"rgb(247, 247, 247)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EdUMx.framer-rhq0nq, .framer-EdUMx .framer-rhq0nq { display: block; }\",\".framer-EdUMx.framer-15w5p2r { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; min-width: 80px; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-EdUMx .framer-1b2glx-container { flex: none; height: auto; left: 0px; position: absolute; top: -60px; width: auto; z-index: 1; }\",\".framer-EdUMx .framer-4e3b5l { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EdUMx.framer-15w5p2r { gap: 0px; } .framer-EdUMx.framer-15w5p2r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EdUMx.framer-15w5p2r > :first-child { margin-top: 0px; } .framer-EdUMx.framer-15w5p2r > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-EdUMx[data-border=\"true\"]::after, .framer-EdUMx [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 32\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]},\"Jr5G2djer\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]},\"CXXUBNzic\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[\"80px\",null,null,null]}}}\n * @framerVariables {\"pdt2AxGjr\":\"formID\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBi0yTp6nk=withCSS(Component,css,\"framer-EdUMx\");export default FramerBi0yTp6nk;FramerBi0yTp6nk.displayName=\"site/Form Button-Submit\";FramerBi0yTp6nk.defaultProps={height:32,width:80};addPropertyControls(FramerBi0yTp6nk,{pdt2AxGjr:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String}});addFonts(FramerBi0yTp6nk,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...Prefab_Form_ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBi0yTp6nk\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]},\\\"Jr5G2djer\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]},\\\"CXXUBNzic\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"80px\\\",null,null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"pdt2AxGjr\\\":\\\"formID\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"80\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Prefab_Checkbox from\"https://framerusercontent.com/modules/1To8iaNmYwvZoZUuYep9/9kQAGV07KVtinOtAJb9P/Prefab_Checkbox.js\";const PhosphorFonts=getFonts(Phosphor);const Prefab_CheckboxFonts=getFonts(Prefab_Checkbox);const cycleOrder=[\"JUfd9RUkv\",\"btnR03qMs\",\"oPboSAjpa\"];const serializationHash=\"framer-H0hnZ\";const variantClassNames={btnR03qMs:\"framer-v-ynnh4q\",JUfd9RUkv:\"framer-v-5oc5uh\",oPboSAjpa:\"framer-v-7tj8sc\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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(React.Fragment);const humanReadableVariantMap={Active:\"btnR03qMs\",Error:\"oPboSAjpa\",inActive:\"JUfd9RUkv\"};const getProps=({defaultActive,formID,height,id,iD,name1,required,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,BA_yrig3k:formID!==null&&formID!==void 0?formID:props.BA_yrig3k,dshKdS0b5:defaultActive!==null&&defaultActive!==void 0?defaultActive:props.dshKdS0b5,Eo4Qnid1Z:required!==null&&required!==void 0?required:props.Eo4Qnid1Z,LvJJzKxFn:name1!==null&&name1!==void 0?name1:props.LvJJzKxFn,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"JUfd9RUkv\",zE94kAjFm:iD!==null&&iD!==void 0?iD:props.zE94kAjFm};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dshKdS0b5,Eo4Qnid1Z,zE94kAjFm,LvJJzKxFn,BA_yrig3k,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JUfd9RUkv\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onActiver2j1d1=activeVariantCallback(async(...args)=>{setVariant(\"btnR03qMs\");});const onInActive15y0uig=activeVariantCallback(async(...args)=>{setVariant(\"JUfd9RUkv\");});const onErrornd0xfs=activeVariantCallback(async(...args)=>{setVariant(\"oPboSAjpa\");});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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-5oc5uh\",className,classNames),\"data-border\":true,\"data-framer-name\":\"inActive\",layoutDependency:layoutDependency,layoutId:\"JUfd9RUkv\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(60, 47, 181, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{btnR03qMs:{\"--border-color\":\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(86, 75, 184))\"},oPboSAjpa:{\"--border-color\":\"rgb(255, 46, 46)\"}},...addPropertyOverrides({btnR03qMs:{\"data-framer-name\":\"Active\"},oPboSAjpa:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wukxjo\",\"data-framer-name\":\"Wipe Frame\",layoutDependency:layoutDependency,layoutId:\"E1Z82SYSb\",style:{backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h1kw9r-container\",layoutDependency:layoutDependency,layoutId:\"PWfDS6BCG-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"PWfDS6BCG\",layoutId:\"PWfDS6BCG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pasbpw-container\",layoutDependency:layoutDependency,layoutId:\"m78n0l7EK-container\",children:/*#__PURE__*/_jsx(Prefab_Checkbox,{defaultChecked:dshKdS0b5,formID:BA_yrig3k,height:\"100%\",id:\"m78n0l7EK\",layoutId:\"m78n0l7EK\",name:LvJJzKxFn,onActive:onActiver2j1d1,onError:onErrornd0xfs,onInActive:onInActive15y0uig,required:Eo4Qnid1Z,uid:zE94kAjFm,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H0hnZ.framer-l0ld9d, .framer-H0hnZ .framer-l0ld9d { display: block; }\",\".framer-H0hnZ.framer-5oc5uh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-H0hnZ .framer-wukxjo { bottom: 3px; flex: none; left: 3px; overflow: visible; position: absolute; right: 3px; top: 3px; z-index: 1; }\",\".framer-H0hnZ .framer-1h1kw9r-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-H0hnZ .framer-1pasbpw-container { flex: none; height: auto; left: 0px; position: absolute; top: -60px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H0hnZ.framer-5oc5uh { gap: 0px; } .framer-H0hnZ.framer-5oc5uh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-H0hnZ.framer-5oc5uh > :first-child { margin-left: 0px; } .framer-H0hnZ.framer-5oc5uh > :last-child { margin-right: 0px; } }\",\".framer-H0hnZ.framer-v-ynnh4q .framer-wukxjo { bottom: 17px; left: 20px; right: 4px; }\",\".framer-H0hnZ.framer-v-7tj8sc .framer-wukxjo { height: 18px; right: unset; top: unset; width: 18px; }\",'.framer-H0hnZ[data-border=\"true\"]::after, .framer-H0hnZ [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 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"btnR03qMs\":{\"layout\":[\"fixed\",\"fixed\"]},\"oPboSAjpa\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dshKdS0b5\":\"defaultActive\",\"Eo4Qnid1Z\":\"required\",\"zE94kAjFm\":\"iD\",\"LvJJzKxFn\":\"name1\",\"BA_yrig3k\":\"formID\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercgvUcXltQ=withCSS(Component,css,\"framer-H0hnZ\");export default FramercgvUcXltQ;FramercgvUcXltQ.displayName=\"site/Checkbox\";FramercgvUcXltQ.defaultProps={height:24,width:24};addPropertyControls(FramercgvUcXltQ,{variant:{options:[\"JUfd9RUkv\",\"btnR03qMs\",\"oPboSAjpa\"],optionTitles:[\"inActive\",\"Active\",\"Error\"],title:\"Variant\",type:ControlType.Enum},dshKdS0b5:{defaultValue:false,title:\"Default Active\",type:ControlType.Boolean},Eo4Qnid1Z:{defaultValue:false,title:\"Required\",type:ControlType.Boolean},zE94kAjFm:{defaultValue:\"\",title:\"ID\",type:ControlType.String},LvJJzKxFn:{defaultValue:\"\",title:\"Name\",type:ControlType.String},BA_yrig3k:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String}});addFonts(FramercgvUcXltQ,[{explicitInter:true,fonts:[]},...PhosphorFonts,...Prefab_CheckboxFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercgvUcXltQ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"dshKdS0b5\\\":\\\"defaultActive\\\",\\\"Eo4Qnid1Z\\\":\\\"required\\\",\\\"zE94kAjFm\\\":\\\"iD\\\",\\\"LvJJzKxFn\\\":\\\"name1\\\",\\\"BA_yrig3k\\\":\\\"formID\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"btnR03qMs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oPboSAjpa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Prefab_Input_Text from\"https://framerusercontent.com/modules/Jde2QbuaSscAKlFklEri/XF4PbQRYBnnT3pgtSRYn/Prefab_Input_Text.js\";import Prefab_Label from\"https://framerusercontent.com/modules/oJEQRcC3Xppo8RqiJsnN/fMUfUjF830udqv9PeEGd/Prefab_Label.js\";const Prefab_LabelFonts=getFonts(Prefab_Label);const Prefab_Input_TextFonts=getFonts(Prefab_Input_Text);const cycleOrder=[\"lJN5SNP3f\",\"gSrf30Ysi\",\"kkeBGMWOE\",\"imHgoJXNI\",\"xMrUWHZrm\",\"u1yyctnjY\",\"H6NQp8QhX\",\"vstBSN3Zt\"];const serializationHash=\"framer-YEFGo\";const variantClassNames={gSrf30Ysi:\"framer-v-1demnwn\",H6NQp8QhX:\"framer-v-1mnfy9u\",imHgoJXNI:\"framer-v-1l7f83t\",kkeBGMWOE:\"framer-v-cp0nr0\",lJN5SNP3f:\"framer-v-1jy88n1\",u1yyctnjY:\"framer-v-13yq9t5\",vstBSN3Zt:\"framer-v-dbtnyw\",xMrUWHZrm:\"framer-v-j6n3bp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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(React.Fragment);const humanReadableVariantMap={\"default-hasValue\":\"xMrUWHZrm\",\"disabled-hasValue\":\"vstBSN3Zt\",\"error-hasValue\":\"H6NQp8QhX\",\"focus-hasValue\":\"u1yyctnjY\",default:\"lJN5SNP3f\",disabled:\"imHgoJXNI\",error:\"kkeBGMWOE\",focus:\"gSrf30Ysi\"};const getProps=({ariaDescribedby,disabled,formID,height,id,id1,labelText,name1,placeholder,required,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,ACvzEUt59:disabled!==null&&disabled!==void 0?disabled:props.ACvzEUt59,B7vkNWUbS:(_ref=placeholder!==null&&placeholder!==void 0?placeholder:props.B7vkNWUbS)!==null&&_ref!==void 0?_ref:\"Placeholder\",dGtZWSl_a:required!==null&&required!==void 0?required:props.dGtZWSl_a,GNDC6Grd3:ariaDescribedby!==null&&ariaDescribedby!==void 0?ariaDescribedby:props.GNDC6Grd3,RelIPR7vd:(_ref1=labelText!==null&&labelText!==void 0?labelText:props.RelIPR7vd)!==null&&_ref1!==void 0?_ref1:\"Input Label\",ur8tLehJ_:name1!==null&&name1!==void 0?name1:props.ur8tLehJ_,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"lJN5SNP3f\",vuseXIEMy:(_ref3=id1!==null&&id1!==void 0?id1:props.vuseXIEMy)!==null&&_ref3!==void 0?_ref3:\"default-id\",yWjrk3gQN:formID!==null&&formID!==void 0?formID:props.yWjrk3gQN};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vuseXIEMy,ur8tLehJ_,yWjrk3gQN,dGtZWSl_a,B7vkNWUbS,ACvzEUt59,RelIPR7vd,GNDC6Grd3,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lJN5SNP3f\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onDefault8t5wb9=activeVariantCallback(async(...args)=>{setVariant(\"lJN5SNP3f\");});const onDefaultHasValue1k95c9m=activeVariantCallback(async(...args)=>{setVariant(\"xMrUWHZrm\");});const onFocus1bpixfb=activeVariantCallback(async(...args)=>{setVariant(\"gSrf30Ysi\");});const onFocusHasValue19j0o7=activeVariantCallback(async(...args)=>{setVariant(\"u1yyctnjY\");});const onError1hsft5m=activeVariantCallback(async(...args)=>{setVariant(\"kkeBGMWOE\");});const onErrorHasValue1tlcl2f=activeVariantCallback(async(...args)=>{setVariant(\"H6NQp8QhX\");});const onDisabled10zwnfd=activeVariantCallback(async(...args)=>{setVariant(\"imHgoJXNI\");});const onDisabledHasValue9up5fp=activeVariantCallback(async(...args)=>{setVariant(\"vstBSN3Zt\");});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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jy88n1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"lJN5SNP3f\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(60, 47, 181, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:1,...style},variants:{gSrf30Ysi:{\"--border-color\":\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(86, 75, 184))\"},H6NQp8QhX:{\"--border-color\":\"rgb(232, 5, 5)\"},imHgoJXNI:{opacity:.5},kkeBGMWOE:{\"--border-color\":\"rgb(222, 7, 7)\"},u1yyctnjY:{\"--border-color\":\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(86, 75, 184))\"},vstBSN3Zt:{opacity:.5}},...addPropertyOverrides({gSrf30Ysi:{\"data-framer-name\":\"focus\"},H6NQp8QhX:{\"data-framer-name\":\"error-hasValue\"},imHgoJXNI:{\"data-framer-name\":\"disabled\"},kkeBGMWOE:{\"data-framer-name\":\"error\"},u1yyctnjY:{\"data-framer-name\":\"focus-hasValue\"},vstBSN3Zt:{\"data-framer-name\":\"disabled-hasValue\"},xMrUWHZrm:{\"data-framer-name\":\"default-hasValue\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a8dhkz-container\",layoutDependency:layoutDependency,layoutId:\"rME0bH3Jl-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({gSrf30Ysi:{transformTemplate:undefined},H6NQp8QhX:{transformTemplate:undefined},u1yyctnjY:{transformTemplate:undefined},vstBSN3Zt:{transformTemplate:undefined},xMrUWHZrm:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Prefab_Label,{height:\"100%\",htmlFor:vuseXIEMy,id:\"rME0bH3Jl\",layoutId:\"rME0bH3Jl\",showRequired:true,styles:{color:\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(103, 106, 168))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"},text:RelIPR7vd,width:\"100%\",...addPropertyOverrides({gSrf30Ysi:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},H6NQp8QhX:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},imHgoJXNI:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},u1yyctnjY:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},vstBSN3Zt:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},xMrUWHZrm:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxio2m-container\",layoutDependency:layoutDependency,layoutId:\"HblAJdvGT-container\",style:{opacity:0},variants:{gSrf30Ysi:{opacity:1},H6NQp8QhX:{opacity:1},u1yyctnjY:{opacity:1},vstBSN3Zt:{opacity:1},xMrUWHZrm:{opacity:1}},children:/*#__PURE__*/_jsx(Prefab_Input_Text,{ariaDescribedby:GNDC6Grd3,autocomplete:false,contains:{ignoreCase:true,minOccurences:0,seed:\"\"},disabled:ACvzEUt59,equals:\"\",formID:yWjrk3gQN,height:\"100%\",id:\"HblAJdvGT\",inputType:\"text\",isAlpha:{locale:\"en-US\"},isAlphanumeric:{locale:\"en-US\"},isEmail:{blacklisted_chars:\"\",host_blacklist:[]},isPostalCode:{locale:\"AD\"},isURL:{protocols:[\"http\",\"https\"],require_protocol:true},layoutId:\"HblAJdvGT\",matches:[],name:ur8tLehJ_,onDefault:onDefault8t5wb9,onDefaultHasValue:onDefaultHasValue1k95c9m,onDisabled:onDisabled10zwnfd,onDisabledHasValue:onDisabledHasValue9up5fp,onError:onError1hsft5m,onErrorHasValue:onErrorHasValue1tlcl2f,onFocus:onFocus1bpixfb,onFocusHasValue:onFocusHasValue19j0o7,placeholder:B7vkNWUbS,required:dGtZWSl_a,style:{width:\"100%\"},styles:{color:\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(103, 106, 168))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:300,textAlign:\"left\"},line:1.1,placeholder:\"var(--token-86833640-77ad-41a5-9407-e97b4991a6e3, rgb(106, 109, 171))\",spacing:0,transform:\"none\"},validationType:\"none\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YEFGo.framer-1ivrbsl, .framer-YEFGo .framer-1ivrbsl { display: block; }\",\".framer-YEFGo.framer-1jy88n1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-start; overflow: hidden; padding: 22px 8px 8px 8px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YEFGo .framer-a8dhkz-container { flex: none; height: auto; left: 7px; pointer-events: none; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-YEFGo .framer-nxio2m-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YEFGo.framer-1jy88n1 { gap: 0px; } .framer-YEFGo.framer-1jy88n1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YEFGo.framer-1jy88n1 > :first-child { margin-left: 0px; } .framer-YEFGo.framer-1jy88n1 > :last-child { margin-right: 0px; } }\",\".framer-YEFGo.framer-v-1demnwn .framer-a8dhkz-container, .framer-YEFGo.framer-v-j6n3bp .framer-a8dhkz-container, .framer-YEFGo.framer-v-13yq9t5 .framer-a8dhkz-container, .framer-YEFGo.framer-v-1mnfy9u .framer-a8dhkz-container, .framer-YEFGo.framer-v-dbtnyw .framer-a8dhkz-container { top: 6px; }\",'.framer-YEFGo[data-border=\"true\"]::after, .framer-YEFGo [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 48\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gSrf30Ysi\":{\"layout\":[\"fixed\",\"fixed\"]},\"kkeBGMWOE\":{\"layout\":[\"fixed\",\"fixed\"]},\"imHgoJXNI\":{\"layout\":[\"fixed\",\"fixed\"]},\"xMrUWHZrm\":{\"layout\":[\"fixed\",\"fixed\"]},\"u1yyctnjY\":{\"layout\":[\"fixed\",\"fixed\"]},\"H6NQp8QhX\":{\"layout\":[\"fixed\",\"fixed\"]},\"vstBSN3Zt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vuseXIEMy\":\"id1\",\"ur8tLehJ_\":\"name1\",\"yWjrk3gQN\":\"formID\",\"dGtZWSl_a\":\"required\",\"B7vkNWUbS\":\"placeholder\",\"ACvzEUt59\":\"disabled\",\"RelIPR7vd\":\"labelText\",\"GNDC6Grd3\":\"ariaDescribedby\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfJmu2vtrs=withCSS(Component,css,\"framer-YEFGo\");export default FramerfJmu2vtrs;FramerfJmu2vtrs.displayName=\"site/Input-Text Copy\";FramerfJmu2vtrs.defaultProps={height:48,width:200};addPropertyControls(FramerfJmu2vtrs,{variant:{options:[\"lJN5SNP3f\",\"gSrf30Ysi\",\"kkeBGMWOE\",\"imHgoJXNI\",\"xMrUWHZrm\",\"u1yyctnjY\",\"H6NQp8QhX\",\"vstBSN3Zt\"],optionTitles:[\"default\",\"focus\",\"error\",\"disabled\",\"default-hasValue\",\"focus-hasValue\",\"error-hasValue\",\"disabled-hasValue\"],title:\"Variant\",type:ControlType.Enum},vuseXIEMy:{defaultValue:\"default-id\",title:\"Id\",type:ControlType.String},ur8tLehJ_:{defaultValue:\"\",title:\"Name\",type:ControlType.String},yWjrk3gQN:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String},dGtZWSl_a:{defaultValue:false,title:\"Required\",type:ControlType.Boolean},B7vkNWUbS:{defaultValue:\"Placeholder\",title:\"Placeholder\",type:ControlType.String},ACvzEUt59:{defaultValue:false,title:\"Disabled\",type:ControlType.Boolean},RelIPR7vd:{defaultValue:\"Input Label\",displayTextArea:true,title:\"Label Text\",type:ControlType.String},GNDC6Grd3:{defaultValue:\"\",title:\"Aria Describedby\",type:ControlType.String}});addFonts(FramerfJmu2vtrs,[{explicitInter:true,fonts:[{family:\"Red Hat Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWck05-Xecg3w.woff2\",weight:\"400\"},{family:\"Red Hat Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWck05-Xecg3w.woff2\",weight:\"300\"}]},...Prefab_LabelFonts,...Prefab_Input_TextFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfJmu2vtrs\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gSrf30Ysi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kkeBGMWOE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"imHgoJXNI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xMrUWHZrm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u1yyctnjY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H6NQp8QhX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vstBSN3Zt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"vuseXIEMy\\\":\\\"id1\\\",\\\"ur8tLehJ_\\\":\\\"name1\\\",\\\"yWjrk3gQN\\\":\\\"formID\\\",\\\"dGtZWSl_a\\\":\\\"required\\\",\\\"B7vkNWUbS\\\":\\\"placeholder\\\",\\\"ACvzEUt59\\\":\\\"disabled\\\",\\\"RelIPR7vd\\\":\\\"labelText\\\",\\\"GNDC6Grd3\\\":\\\"ariaDescribedby\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Prefab_Input_TextArea from\"https://framerusercontent.com/modules/oblb6mh7gP4DBvV4slTo/CfFQ7nkxJZpJ85bFbwS7/Prefab_Input_TextArea.js\";import Prefab_Label from\"https://framerusercontent.com/modules/oJEQRcC3Xppo8RqiJsnN/fMUfUjF830udqv9PeEGd/Prefab_Label.js\";const Prefab_Input_TextAreaFonts=getFonts(Prefab_Input_TextArea);const PhosphorFonts=getFonts(Phosphor);const Prefab_LabelFonts=getFonts(Prefab_Label);const Prefab_Input_TextAreaControls=getPropertyControls(Prefab_Input_TextArea);const cycleOrder=[\"n92wkecMb\",\"AgVxFY8Mm\",\"pQLUXTl0E\",\"b1q7OmlMK\",\"CoBBJwwN7\",\"qC78mkU0S\",\"NuUk5rjdx\",\"Yk3xsPNEf\"];const serializationHash=\"framer-G17DA\";const variantClassNames={AgVxFY8Mm:\"framer-v-37lr9d\",b1q7OmlMK:\"framer-v-1ihcvyy\",CoBBJwwN7:\"framer-v-dbi3dz\",n92wkecMb:\"framer-v-oj03qs\",NuUk5rjdx:\"framer-v-1ls5dl9\",pQLUXTl0E:\"framer-v-6hq6l7\",qC78mkU0S:\"framer-v-1b18ltn\",Yk3xsPNEf:\"framer-v-azi0tb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Both:\"both\",Horizontal:\"horizontal\",None:\"none\",Vertical:\"vertical\"};const humanReadableVariantMap={\"default-hasValue\":\"AgVxFY8Mm\",\"disabled-hasValue\":\"Yk3xsPNEf\",\"error-hasValue\":\"qC78mkU0S\",\"focus-hasValue\":\"b1q7OmlMK\",Default:\"n92wkecMb\",disabled:\"NuUk5rjdx\",Error:\"CoBBJwwN7\",focus:\"pQLUXTl0E\"};const getProps=({ariaDescribedby,disabled,formID,height,id,id1,label,maxLength,name1,placeholder,required,resize,setMaxLength,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_humanReadableEnumMap_resize,_ref6,_ref7;return{...props,Af12Z14kH:(_ref=required!==null&&required!==void 0?required:props.Af12Z14kH)!==null&&_ref!==void 0?_ref:true,blUCCmQPc:(_ref1=placeholder!==null&&placeholder!==void 0?placeholder:props.blUCCmQPc)!==null&&_ref1!==void 0?_ref1:\"Placeholder\",exN4fekyH:name1!==null&&name1!==void 0?name1:props.exN4fekyH,i652rXjYn:ariaDescribedby!==null&&ariaDescribedby!==void 0?ariaDescribedby:props.i652rXjYn,JcvxWEq_c:disabled!==null&&disabled!==void 0?disabled:props.JcvxWEq_c,lgbXBCHHt:formID!==null&&formID!==void 0?formID:props.lgbXBCHHt,qt0ffsiYj:(_ref2=label!==null&&label!==void 0?label:props.qt0ffsiYj)!==null&&_ref2!==void 0?_ref2:\"Message\",Tr_hl6AKB:(_ref3=setMaxLength!==null&&setMaxLength!==void 0?setMaxLength:props.Tr_hl6AKB)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"n92wkecMb\",Vw9Cu8Qyv:(_ref5=maxLength!==null&&maxLength!==void 0?maxLength:props.Vw9Cu8Qyv)!==null&&_ref5!==void 0?_ref5:500,XSQ4xyJkR:(_ref7=(_ref6=(_humanReadableEnumMap_resize=humanReadableEnumMap[resize])!==null&&_humanReadableEnumMap_resize!==void 0?_humanReadableEnumMap_resize:resize)!==null&&_ref6!==void 0?_ref6:props.XSQ4xyJkR)!==null&&_ref7!==void 0?_ref7:\"vertical\",xY3PEXKB_:id1!==null&&id1!==void 0?id1:props.xY3PEXKB_};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xY3PEXKB_,exN4fekyH,lgbXBCHHt,Af12Z14kH,blUCCmQPc,JcvxWEq_c,XSQ4xyJkR,Tr_hl6AKB,Vw9Cu8Qyv,i652rXjYn,qt0ffsiYj,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"n92wkecMb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onDefault1opzlkl=activeVariantCallback(async(...args)=>{setVariant(\"n92wkecMb\");});const onDefaultHasValuer2ndy0=activeVariantCallback(async(...args)=>{setVariant(\"AgVxFY8Mm\");});const onFocussm1f0f=activeVariantCallback(async(...args)=>{setVariant(\"pQLUXTl0E\");});const onFocusHasValue1itagfj=activeVariantCallback(async(...args)=>{setVariant(\"b1q7OmlMK\");});const onError7x9141=activeVariantCallback(async(...args)=>{setVariant(\"CoBBJwwN7\");});const onErrorHasValue1uuf3u=activeVariantCallback(async(...args)=>{setVariant(\"qC78mkU0S\");});const onDisabled1pcxwqt=activeVariantCallback(async(...args)=>{setVariant(\"NuUk5rjdx\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"AgVxFY8Mm\",\"pQLUXTl0E\",\"b1q7OmlMK\",\"qC78mkU0S\"].includes(baseVariant))return true;return false;};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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-oj03qs\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"n92wkecMb\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,opacity:1,...style},variants:{b1q7OmlMK:{\"--border-color\":\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217))\"},CoBBJwwN7:{\"--border-color\":\"rgb(255, 46, 46)\"},NuUk5rjdx:{opacity:.5},pQLUXTl0E:{\"--border-color\":\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217))\"},qC78mkU0S:{\"--border-color\":\"rgb(255, 46, 46)\"},Yk3xsPNEf:{opacity:.5}},...addPropertyOverrides({AgVxFY8Mm:{\"data-framer-name\":\"default-hasValue\"},b1q7OmlMK:{\"data-framer-name\":\"focus-hasValue\"},CoBBJwwN7:{\"data-framer-name\":\"Error\"},NuUk5rjdx:{\"data-framer-name\":\"disabled\"},pQLUXTl0E:{\"data-framer-name\":\"focus\"},qC78mkU0S:{\"data-framer-name\":\"error-hasValue\"},Yk3xsPNEf:{\"data-framer-name\":\"disabled-hasValue\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x4nv5b-container\",layoutDependency:layoutDependency,layoutId:\"DBfcn0vZJ-container\",style:{opacity:0},variants:{AgVxFY8Mm:{opacity:1},b1q7OmlMK:{opacity:1},pQLUXTl0E:{opacity:1},qC78mkU0S:{opacity:1},Yk3xsPNEf:{opacity:1}},children:/*#__PURE__*/_jsx(Prefab_Input_TextArea,{ariaDescribedby:i652rXjYn,cols:50,contains:{ignoreCase:true,minOccurences:1,seed:\"hello\"},disabled:JcvxWEq_c,equals:\"\",formID:lgbXBCHHt,height:\"100%\",id:\"DBfcn0vZJ\",isAlpha:{locale:\"en-US\"},isAlphanumeric:{locale:\"en-US\"},layoutId:\"DBfcn0vZJ\",matches:[],maxLength:Vw9Cu8Qyv,name:exN4fekyH,onDefault:onDefault1opzlkl,onDefaultHasValue:onDefaultHasValuer2ndy0,onDisabled:onDisabled1pcxwqt,onError:onError7x9141,onErrorHasValue:onErrorHasValue1uuf3u,onFocus:onFocussm1f0f,onFocusHasValue:onFocusHasValue1itagfj,placeholder:blUCCmQPc,required:Af12Z14kH,resize:XSQ4xyJkR,rows:8,scrollbar:{thumb:\"rgb(102, 102, 102)\",thumbFocus:\"rgb(102, 102, 102)\",thumbHover:\"rgb(102, 102, 102)\",thumbRadius:8,track:\"rgb(95, 61, 196)\",trackRadius:8,trackWidth:8},setMaxLength:Tr_hl6AKB,style:{width:\"100%\"},textStyles:{color:\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(103, 106, 168))\",font:{},line:1.1,placeholder:\"var(--token-86833640-77ad-41a5-9407-e97b4991a6e3, rgb(106, 109, 171))\",spacing:0,transform:\"none\"},validationType:\"contains\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15kw7fl-container\",layoutDependency:layoutDependency,layoutId:\"o09XTehka-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDoubleDown\",id:\"o09XTehka\",layoutId:\"o09XTehka\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c09kl2-container\",layoutDependency:layoutDependency,layoutId:\"c2By7_eVp-container\",children:/*#__PURE__*/_jsx(Prefab_Label,{height:\"100%\",htmlFor:xY3PEXKB_,id:\"c2By7_eVp\",layoutId:\"c2By7_eVp\",nested:true,showRequired:Af12Z14kH,styles:{color:\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(103, 106, 168))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"},text:qt0ffsiYj,width:\"100%\",...addPropertyOverrides({AgVxFY8Mm:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},b1q7OmlMK:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},NuUk5rjdx:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},pQLUXTl0E:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},qC78mkU0S:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}},Yk3xsPNEf:{styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:400},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G17DA.framer-1x5tlj5, .framer-G17DA .framer-1x5tlj5 { display: block; }\",\".framer-G17DA.framer-oj03qs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 24px 8px 8px 8px; position: relative; width: 400px; }\",\".framer-G17DA .framer-x4nv5b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-G17DA .framer-15kw7fl-container { bottom: 5px; flex: none; height: 16px; pointer-events: none; position: absolute; right: 6px; width: 16px; z-index: 1; }\",\".framer-G17DA .framer-1c09kl2-container { flex: none; height: auto; left: 8px; pointer-events: none; position: absolute; top: 7px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G17DA.framer-oj03qs { gap: 0px; } .framer-G17DA.framer-oj03qs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-G17DA.framer-oj03qs > :first-child { margin-top: 0px; } .framer-G17DA.framer-oj03qs > :last-child { margin-bottom: 0px; } }\",'.framer-G17DA[data-border=\"true\"]::after, .framer-G17DA [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 171\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AgVxFY8Mm\":{\"layout\":[\"fixed\",\"auto\"]},\"pQLUXTl0E\":{\"layout\":[\"fixed\",\"auto\"]},\"b1q7OmlMK\":{\"layout\":[\"fixed\",\"auto\"]},\"CoBBJwwN7\":{\"layout\":[\"fixed\",\"auto\"]},\"qC78mkU0S\":{\"layout\":[\"fixed\",\"auto\"]},\"NuUk5rjdx\":{\"layout\":[\"fixed\",\"auto\"]},\"Yk3xsPNEf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xY3PEXKB_\":\"id1\",\"exN4fekyH\":\"name1\",\"lgbXBCHHt\":\"formID\",\"Af12Z14kH\":\"required\",\"blUCCmQPc\":\"placeholder\",\"JcvxWEq_c\":\"disabled\",\"XSQ4xyJkR\":\"resize\",\"Tr_hl6AKB\":\"setMaxLength\",\"Vw9Cu8Qyv\":\"maxLength\",\"i652rXjYn\":\"ariaDescribedby\",\"qt0ffsiYj\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpaKdx5z1z=withCSS(Component,css,\"framer-G17DA\");export default FramerpaKdx5z1z;FramerpaKdx5z1z.displayName=\"site/TextArea\";FramerpaKdx5z1z.defaultProps={height:171,width:400};addPropertyControls(FramerpaKdx5z1z,{variant:{options:[\"n92wkecMb\",\"AgVxFY8Mm\",\"pQLUXTl0E\",\"b1q7OmlMK\",\"CoBBJwwN7\",\"qC78mkU0S\",\"NuUk5rjdx\",\"Yk3xsPNEf\"],optionTitles:[\"Default\",\"default-hasValue\",\"focus\",\"focus-hasValue\",\"Error\",\"error-hasValue\",\"disabled\",\"disabled-hasValue\"],title:\"Variant\",type:ControlType.Enum},xY3PEXKB_:{defaultValue:\"\",title:\"Id\",type:ControlType.String},exN4fekyH:{defaultValue:\"\",title:\"Name\",type:ControlType.String},lgbXBCHHt:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String},Af12Z14kH:{defaultValue:true,title:\"Required\",type:ControlType.Boolean},blUCCmQPc:{defaultValue:\"Placeholder\",displayTextArea:true,title:\"Placeholder\",type:ControlType.String},JcvxWEq_c:{defaultValue:false,title:\"Disabled\",type:ControlType.Boolean},XSQ4xyJkR:(Prefab_Input_TextAreaControls===null||Prefab_Input_TextAreaControls===void 0?void 0:Prefab_Input_TextAreaControls[\"resize\"])&&{...Prefab_Input_TextAreaControls[\"resize\"],defaultValue:\"vertical\",description:undefined,hidden:undefined,title:\"Resize\"},Tr_hl6AKB:{defaultValue:true,title:\"Set Max Length\",type:ControlType.Boolean},Vw9Cu8Qyv:{defaultValue:500,title:\"Max Length\",type:ControlType.Number},i652rXjYn:{defaultValue:\"\",title:\"Aria Describedby\",type:ControlType.String},qt0ffsiYj:{defaultValue:\"Message\",displayTextArea:true,title:\"Label\",type:ControlType.String}});addFonts(FramerpaKdx5z1z,[{explicitInter:true,fonts:[{family:\"Red Hat Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWck05-Xecg3w.woff2\",weight:\"400\"}]},...Prefab_Input_TextAreaFonts,...PhosphorFonts,...Prefab_LabelFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpaKdx5z1z\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AgVxFY8Mm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pQLUXTl0E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b1q7OmlMK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CoBBJwwN7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qC78mkU0S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NuUk5rjdx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yk3xsPNEf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"171\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"xY3PEXKB_\\\":\\\"id1\\\",\\\"exN4fekyH\\\":\\\"name1\\\",\\\"lgbXBCHHt\\\":\\\"formID\\\",\\\"Af12Z14kH\\\":\\\"required\\\",\\\"blUCCmQPc\\\":\\\"placeholder\\\",\\\"JcvxWEq_c\\\":\\\"disabled\\\",\\\"XSQ4xyJkR\\\":\\\"resize\\\",\\\"Tr_hl6AKB\\\":\\\"setMaxLength\\\",\\\"Vw9Cu8Qyv\\\":\\\"maxLength\\\",\\\"i652rXjYn\\\":\\\"ariaDescribedby\\\",\\\"qt0ffsiYj\\\":\\\"label\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Prefab_Form from\"https://framerusercontent.com/modules/BRYawhxUI88IbJSGof88/KsKT6uqjt6Nf6VbxD2C0/Prefab_Form.js\";import Prefab_Label from\"https://framerusercontent.com/modules/oJEQRcC3Xppo8RqiJsnN/fMUfUjF830udqv9PeEGd/Prefab_Label.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/YY4bavwg2iczzfsp8Q5N/wCbzuISsRxrBVIQe1KXP/kze3oevJy.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GFLDNPUtm91HfTCrn8jv/l2HCixED6mLN3X5kNvOQ/VLFkAvkSb.js\";import SiteFormButtonReset from\"https://framerusercontent.com/modules/2WYcof1jX5OQg3dGe8n6/tKNNiEWTlmk6bFBJIt8e/azUo1pF7n.js\";import SiteFormButtonSubmit from\"https://framerusercontent.com/modules/S5hOBBG907HrORVwmosp/GXoMdeWIIi1hEpmi7duk/Bi0yTp6nk.js\";import SiteCheckbox from\"https://framerusercontent.com/modules/C5BSFknTjoLYWuZi2pXZ/CYvqCO2CRdBIHezAzQ2M/cgvUcXltQ.js\";import SiteInputTextCopy from\"https://framerusercontent.com/modules/cA5bhx7p1ZSi6O2dmsbj/4nei9vMEhS7MByMC1wNE/fJmu2vtrs.js\";import SiteTextArea from\"https://framerusercontent.com/modules/Kl60iQFR9yWyh8D2niSK/vEP2KMVp740ne2z9J6VA/paKdx5z1z.js\";const SiteInputTextCopyFonts=getFonts(SiteInputTextCopy);const SiteTextAreaFonts=getFonts(SiteTextArea);const SiteCheckboxFonts=getFonts(SiteCheckbox);const Prefab_LabelFonts=getFonts(Prefab_Label);const SiteFormButtonResetFonts=getFonts(SiteFormButtonReset);const SiteFormButtonSubmitFonts=getFonts(SiteFormButtonSubmit);const Prefab_FormFonts=getFonts(Prefab_Form);const Prefab_FormControls=getPropertyControls(Prefab_Form);const cycleOrder=[\"sQ0tcC5fL\",\"LSalVZV9Y\",\"a1EG_fPWA\",\"lCgpsWktD\"];const serializationHash=\"framer-zceTv\";const variantClassNames={a1EG_fPWA:\"framer-v-15pqs79\",lCgpsWktD:\"framer-v-rr70sd\",LSalVZV9Y:\"framer-v-159633g\",sQ0tcC5fL:\"framer-v-yto0zq\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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(React.Fragment);const humanReadableEnumMap={\"Form Spark\":\"formSpark\",\"Form Spree\":\"formSpree\",Custom:\"custom\"};const humanReadableVariantMap={Default:\"sQ0tcC5fL\",Error:\"lCgpsWktD\",Sending:\"a1EG_fPWA\",Success:\"LSalVZV9Y\"};const getProps=({action,height,id,iD,resetAfter,service,timeout,width,...props})=>{var _ref,_humanReadableEnumMap_service,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,FYx5P8IbZ:(_ref=resetAfter!==null&&resetAfter!==void 0?resetAfter:props.FYx5P8IbZ)!==null&&_ref!==void 0?_ref:true,ivZUrQznL:(_ref2=(_ref1=(_humanReadableEnumMap_service=humanReadableEnumMap[service])!==null&&_humanReadableEnumMap_service!==void 0?_humanReadableEnumMap_service:service)!==null&&_ref1!==void 0?_ref1:props.ivZUrQznL)!==null&&_ref2!==void 0?_ref2:\"formSpark\",MLiSBKG5c:action!==null&&action!==void 0?action:props.MLiSBKG5c,NtUOoBrkY:(_ref3=timeout!==null&&timeout!==void 0?timeout:props.NtUOoBrkY)!==null&&_ref3!==void 0?_ref3:2,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"sQ0tcC5fL\",vK9t_rEgq:(_ref5=iD!==null&&iD!==void 0?iD:props.vK9t_rEgq)!==null&&_ref5!==void 0?_ref5:\"test\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vK9t_rEgq,ivZUrQznL,MLiSBKG5c,FYx5P8IbZ,NtUOoBrkY,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sQ0tcC5fL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onDefault1x0eri9=activeVariantCallback(async(...args)=>{setVariant(\"sQ0tcC5fL\");});const onSending1k0j2u0=activeVariantCallback(async(...args)=>{setVariant(\"a1EG_fPWA\");});const onSuccessrxy2cs=activeVariantCallback(async(...args)=>{setVariant(\"LSalVZV9Y\");});const onError1aqzs7l=activeVariantCallback(async(...args)=>{setVariant(\"lCgpsWktD\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"LSalVZV9Y\",\"a1EG_fPWA\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yto0zq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sQ0tcC5fL\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b61d85d5-e625-40d7-bdab-8c7ae929e02d, rgb(208, 204, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-1b2bd334-f874-430a-9f21-259a12452861, rgb(242, 245, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",...style},tabIndex:-1,variants:{lCgpsWktD:{\"--border-color\":\"var(--token-b815ed06-186e-4a4b-a95a-c6e4d66ac36f, rgb(240, 62, 62))\"}},...addPropertyOverrides({a1EG_fPWA:{\"data-framer-name\":\"Sending\"},lCgpsWktD:{\"data-framer-name\":\"Error\"},LSalVZV9Y:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-166ybig\",layoutDependency:layoutDependency,layoutId:\"ovDl5AtJM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11sen4f\",\"data-styles-preset\":\"kze3oevJy\",children:\"Form Example\"})}),className:\"framer-1j1sqvr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cLLH8O_tV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a1EG_fPWA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11sen4f\",\"data-styles-preset\":\"kze3oevJy\",children:\"Sending\"})})},lCgpsWktD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11sen4f\",\"data-styles-preset\":\"kze3oevJy\",children:\"Uh oh \uD83D\uDE30\"})})},LSalVZV9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11sen4f\",\"data-styles-preset\":\"kze3oevJy\",children:\"Successful submission\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",children:\"This form example does nothing, but demonstrates how framer prefabs can let you design your components how you want\"})}),className:\"framer-1eyxvkh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XkaPCazOF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{a1EG_fPWA:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},lCgpsWktD:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},LSalVZV9Y:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a1EG_fPWA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Currently\u2026pretending to send. \u2709\uFE0F\"})})},lCgpsWktD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"This would be a fake error if there was one.\"})})},LSalVZV9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"You successfully completed this test form. It did nothing and just an example\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-apjrmb-container\",layoutDependency:layoutDependency,layoutId:\"kHqaw42TH-container\",children:/*#__PURE__*/_jsx(SiteInputTextCopy,{ACvzEUt59:false,B7vkNWUbS:\"Placeholder\",dGtZWSl_a:true,GNDC6Grd3:\"\",height:\"100%\",id:\"kHqaw42TH\",layoutId:\"kHqaw42TH\",RelIPR7vd:\"Input Label\",style:{height:\"100%\",width:\"100%\"},ur8tLehJ_:\"input\",variant:\"lJN5SNP3f\",vuseXIEMy:\"default-id\",width:\"100%\",yWjrk3gQN:\"test\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jhic1x-container\",layoutDependency:layoutDependency,layoutId:\"GuZCk36jV-container\",children:/*#__PURE__*/_jsx(SiteTextArea,{Af12Z14kH:true,blUCCmQPc:'Enter your message. To demonstrate validation we have a requirement it must include the word \"hello\".',exN4fekyH:\"Message\",height:\"100%\",i652rXjYn:\"\",id:\"GuZCk36jV\",JcvxWEq_c:false,layoutId:\"GuZCk36jV\",lgbXBCHHt:vK9t_rEgq,qt0ffsiYj:\"Message\",style:{width:\"100%\"},Tr_hl6AKB:true,variant:\"n92wkecMb\",Vw9Cu8Qyv:500,width:\"100%\",XSQ4xyJkR:\"vertical\",xY3PEXKB_:\"Message Id\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10fljy2\",\"data-framer-name\":\"Success\",layoutDependency:layoutDependency,layoutId:\"Hn4upT1I0\",style:{opacity:1},variants:{a1EG_fPWA:{opacity:0},lCgpsWktD:{opacity:0},LSalVZV9Y:{opacity:0}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cgwuvk-container\",layoutDependency:layoutDependency,layoutId:\"XYZrX6N7B-container\",children:/*#__PURE__*/_jsx(SiteCheckbox,{BA_yrig3k:vK9t_rEgq,dshKdS0b5:false,Eo4Qnid1Z:true,height:\"100%\",id:\"XYZrX6N7B\",layoutId:\"XYZrX6N7B\",LvJJzKxFn:\"hello\",style:{height:\"100%\",width:\"100%\"},variant:\"JUfd9RUkv\",width:\"100%\",zE94kAjFm:\"check-this\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sq1crg\",\"data-framer-name\":\"Label and Required symbol\",layoutDependency:layoutDependency,layoutId:\"YRJT_3uZZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ucjhk-container\",layoutDependency:layoutDependency,layoutId:\"aPBv0_xCj-container\",children:/*#__PURE__*/_jsx(Prefab_Label,{height:\"100%\",htmlFor:\"check-this\",id:\"aPBv0_xCj\",layoutId:\"aPBv0_xCj\",nested:false,showRequired:false,style:{width:\"100%\"},styles:{color:\"var(--token-86833640-77ad-41a5-9407-e97b4991a6e3, rgb(106, 109, 171))\",font:{fontFamily:'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:300},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"},text:\"I acknowledge this form does nothing.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmVkIEhhdCBEaXNwbGF5LTYwMA==\",\"--framer-font-family\":'\"Red Hat Display\", \"Red Hat Display Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 46, 46))\"},children:\"*\"})}),className:\"framer-7zs68j\",fonts:[\"GF;Red Hat Display-600\"],layoutDependency:layoutDependency,layoutId:\"Q1tQwHAwT\",style:{\"--extracted-r6o4lv\":\"rgb(255, 46, 46)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dt4aki\",layoutDependency:layoutDependency,layoutId:\"xDVgZ72Zf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1azhiwf-container\",layoutDependency:layoutDependency,layoutId:\"y4ZIQWB0E-container\",children:/*#__PURE__*/_jsx(SiteFormButtonReset,{height:\"100%\",id:\"y4ZIQWB0E\",layoutId:\"y4ZIQWB0E\",pdt2AxGjr:vK9t_rEgq,style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e45im7-container\",layoutDependency:layoutDependency,layoutId:\"OWj_lItLt-container\",children:/*#__PURE__*/_jsx(SiteFormButtonSubmit,{height:\"100%\",id:\"OWj_lItLt\",layoutId:\"OWj_lItLt\",pdt2AxGjr:vK9t_rEgq,style:{height:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ff556-container\",layoutDependency:layoutDependency,layoutId:\"MAuWtgw48-container\",children:/*#__PURE__*/_jsx(Prefab_Form,{action:MLiSBKG5c,height:\"100%\",id:\"MAuWtgw48\",layoutId:\"MAuWtgw48\",onDefault:onDefault1x0eri9,onError:onError1aqzs7l,onSending:onSending1k0j2u0,onSuccess:onSuccessrxy2cs,resetAfter:FYx5P8IbZ,service:ivZUrQznL,timeout:NtUOoBrkY,uid:vK9t_rEgq,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zceTv.framer-11ttdv6, .framer-zceTv .framer-11ttdv6 { display: block; }\",\".framer-zceTv.framer-yto0zq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 16px 24px 16px; position: relative; width: 410px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zceTv .framer-166ybig { align-content: flex-start; align-items: flex-start; 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-zceTv .framer-1j1sqvr, .framer-zceTv .framer-7zs68j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zceTv .framer-1eyxvkh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zceTv .framer-apjrmb-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-zceTv .framer-1jhic1x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-zceTv .framer-10fljy2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zceTv .framer-cgwuvk-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-zceTv .framer-sq1crg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 233px; }\",\".framer-zceTv .framer-3ucjhk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-zceTv .framer-dt4aki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-zceTv .framer-1azhiwf-container, .framer-zceTv .framer-e45im7-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-zceTv .framer-15ff556-container { flex: none; height: auto; left: 0px; position: absolute; top: -60px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zceTv.framer-yto0zq, .framer-zceTv .framer-166ybig, .framer-zceTv .framer-10fljy2, .framer-zceTv .framer-sq1crg, .framer-zceTv .framer-dt4aki { gap: 0px; } .framer-zceTv.framer-yto0zq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zceTv.framer-yto0zq > :first-child, .framer-zceTv .framer-166ybig > :first-child { margin-top: 0px; } .framer-zceTv.framer-yto0zq > :last-child, .framer-zceTv .framer-166ybig > :last-child { margin-bottom: 0px; } .framer-zceTv .framer-166ybig > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zceTv .framer-10fljy2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zceTv .framer-10fljy2 > :first-child, .framer-zceTv .framer-sq1crg > :first-child, .framer-zceTv .framer-dt4aki > :first-child { margin-left: 0px; } .framer-zceTv .framer-10fljy2 > :last-child, .framer-zceTv .framer-sq1crg > :last-child, .framer-zceTv .framer-dt4aki > :last-child { margin-right: 0px; } .framer-zceTv .framer-sq1crg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zceTv .framer-dt4aki > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-zceTv.framer-v-159633g .framer-10fljy2, .framer-zceTv.framer-v-15pqs79 .framer-10fljy2, .framer-zceTv.framer-v-rr70sd .framer-10fljy2 { height: 1px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-zceTv[data-border=\"true\"]::after, .framer-zceTv [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 469\n * @framerIntrinsicWidth 410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LSalVZV9Y\":{\"layout\":[\"fixed\",\"auto\"]},\"a1EG_fPWA\":{\"layout\":[\"fixed\",\"auto\"]},\"lCgpsWktD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vK9t_rEgq\":\"iD\",\"ivZUrQznL\":\"service\",\"MLiSBKG5c\":\"action\",\"FYx5P8IbZ\":\"resetAfter\",\"NtUOoBrkY\":\"timeout\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDqF92a4JT=withCSS(Component,css,\"framer-zceTv\");export default FramerDqF92a4JT;FramerDqF92a4JT.displayName=\"site/Form\";FramerDqF92a4JT.defaultProps={height:469,width:410};addPropertyControls(FramerDqF92a4JT,{variant:{options:[\"sQ0tcC5fL\",\"LSalVZV9Y\",\"a1EG_fPWA\",\"lCgpsWktD\"],optionTitles:[\"Default\",\"Success\",\"Sending\",\"Error\"],title:\"Variant\",type:ControlType.Enum},vK9t_rEgq:{defaultValue:\"test\",title:\"ID\",type:ControlType.String},ivZUrQznL:(Prefab_FormControls===null||Prefab_FormControls===void 0?void 0:Prefab_FormControls[\"service\"])&&{...Prefab_FormControls[\"service\"],defaultValue:\"formSpark\",description:undefined,hidden:undefined,title:\"Service\"},MLiSBKG5c:{defaultValue:\"\",title:\"Action\",type:ControlType.String},FYx5P8IbZ:{defaultValue:true,title:\"Reset After\",type:ControlType.Boolean},NtUOoBrkY:{defaultValue:2,title:\"Timeout\",type:ControlType.Number}});addFonts(FramerDqF92a4JT,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Red Hat Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWck05-Xecg3w.woff2\",weight:\"300\"},{family:\"Red Hat Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/redhatdisplay/v19/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRck05-Xecg3w.woff2\",weight:\"600\"}]},...SiteInputTextCopyFonts,...SiteTextAreaFonts,...SiteCheckboxFonts,...Prefab_LabelFonts,...SiteFormButtonResetFonts,...SiteFormButtonSubmitFonts,...Prefab_FormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDqF92a4JT\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"469\",\"framerIntrinsicWidth\":\"410\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vK9t_rEgq\\\":\\\"iD\\\",\\\"ivZUrQznL\\\":\\\"service\\\",\\\"MLiSBKG5c\\\":\\\"action\\\",\\\"FYx5P8IbZ\\\":\\\"resetAfter\\\",\\\"NtUOoBrkY\\\":\\\"timeout\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LSalVZV9Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a1EG_fPWA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lCgpsWktD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Prefab_Switch from\"https://framerusercontent.com/modules/PYp9SW4BNlgqqEvQA4Ov/Fh9116EJJNzh6L6w4J7X/Prefab_Switch.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GFLDNPUtm91HfTCrn8jv/l2HCixED6mLN3X5kNvOQ/VLFkAvkSb.js\";const PhosphorFonts=getFonts(Phosphor);const Prefab_SwitchFonts=getFonts(Prefab_Switch);const cycleOrder=[\"fblWK024D\",\"nVgav62x8\"];const serializationHash=\"framer-CZlMJ\";const variantClassNames={fblWK024D:\"framer-v-r3npqf\",nVgav62x8:\"framer-v-xmayo3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"fblWK024D\",\"Variant 2\":\"nVgav62x8\"};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:\"fblWK024D\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fblWK024D\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onActive1ji4803=activeVariantCallback(async(...args)=>{setVariant(\"nVgav62x8\");});const onInActive10fx4rq=activeVariantCallback(async(...args)=>{setVariant(\"fblWK024D\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-r3npqf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fblWK024D\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({nVgav62x8:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wxsk1-container\",layoutDependency:layoutDependency,layoutId:\"h6LkFaHpp-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bookmark\",id:\"h6LkFaHpp\",layoutId:\"h6LkFaHpp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({nVgav62x8:{weight:\"fill\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",children:\"Bookmark\"})}),className:\"framer-isycnw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ew85oquX3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ggqwh4-container\",layoutDependency:layoutDependency,layoutId:\"HcSdv5CNF-container\",children:/*#__PURE__*/_jsx(Prefab_Switch,{defaultChecked:false,formID:\"\",height:\"100%\",id:\"HcSdv5CNF\",layoutId:\"HcSdv5CNF\",name:\"\",onActive:onActive1ji4803,onInActive:onInActive10fx4rq,required:false,uid:\"\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CZlMJ.framer-1h6afgw, .framer-CZlMJ .framer-1h6afgw { display: block; }\",\".framer-CZlMJ.framer-r3npqf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-CZlMJ .framer-9wxsk1-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-CZlMJ .framer-isycnw { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-CZlMJ .framer-ggqwh4-container { flex: none; height: auto; left: 0px; position: absolute; top: -60px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CZlMJ.framer-r3npqf { gap: 0px; } .framer-CZlMJ.framer-r3npqf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CZlMJ.framer-r3npqf > :first-child { margin-left: 0px; } .framer-CZlMJ.framer-r3npqf > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-CZlMJ[data-border=\"true\"]::after, .framer-CZlMJ [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 32\n * @framerIntrinsicWidth 105\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"nVgav62x8\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqJ23nN0eE=withCSS(Component,css,\"framer-CZlMJ\");export default FramerqJ23nN0eE;FramerqJ23nN0eE.displayName=\"home/bookmark\";FramerqJ23nN0eE.defaultProps={height:32,width:105};addPropertyControls(FramerqJ23nN0eE,{variant:{options:[\"fblWK024D\",\"nVgav62x8\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqJ23nN0eE,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...Prefab_SwitchFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqJ23nN0eE\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nVgav62x8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerIntrinsicWidth\":\"105\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Prefab_Checkbox from\"https://framerusercontent.com/modules/PYp9SW4BNlgqqEvQA4Ov/Fh9116EJJNzh6L6w4J7X/Prefab_Switch.js\";const Prefab_CheckboxFonts=getFonts(Prefab_Checkbox);const cycleOrder=[\"qJP3FbEtD\",\"Ho3X8ZgEr\",\"zYE21Gpls\"];const serializationHash=\"framer-549T3\";const variantClassNames={Ho3X8ZgEr:\"framer-v-1u3ity6\",qJP3FbEtD:\"framer-v-pktt8n\",zYE21Gpls:\"framer-v-17e0529\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"Ho3X8ZgEr\",Error:\"zYE21Gpls\",inActive:\"qJP3FbEtD\"};const getProps=({defaultActive,formID,height,id,iD,name1,required,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,cpy7ElsQR:name1!==null&&name1!==void 0?name1:props.cpy7ElsQR,IczI1c227:defaultActive!==null&&defaultActive!==void 0?defaultActive:props.IczI1c227,NKDJWsyUO:iD!==null&&iD!==void 0?iD:props.NKDJWsyUO,oXdjmv6qy:formID!==null&&formID!==void 0?formID:props.oXdjmv6qy,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qJP3FbEtD\",zlHCRBiEX:required!==null&&required!==void 0?required:props.zlHCRBiEX};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IczI1c227,zlHCRBiEX,NKDJWsyUO,cpy7ElsQR,oXdjmv6qy,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qJP3FbEtD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onActived28gay=activeVariantCallback(async(...args)=>{setVariant(\"Ho3X8ZgEr\");});const onInActivewxvazw=activeVariantCallback(async(...args)=>{setVariant(\"qJP3FbEtD\");});const onError1wzomht=activeVariantCallback(async(...args)=>{setVariant(\"zYE21Gpls\");});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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-pktt8n\",className,classNames),\"data-border\":true,\"data-framer-name\":\"inActive\",layoutDependency:layoutDependency,layoutId:\"qJP3FbEtD\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b61d85d5-e625-40d7-bdab-8c7ae929e02d, rgb(208, 204, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-a6fa7c80-75c6-4da6-9db9-89f9671bb133, rgb(250, 250, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"inset 0px 1px 2px 0px rgba(0,0,0,0.25)\",...style},variants:{Ho3X8ZgEr:{backgroundColor:\"var(--token-797aedae-8f2d-48c2-b1a6-0500a3b68f10, rgb(178, 168, 255))\"},zYE21Gpls:{\"--border-color\":\"rgb(255, 46, 46)\"}},...addPropertyOverrides({Ho3X8ZgEr:{\"data-framer-name\":\"Active\"},zYE21Gpls:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f5abd6\",\"data-border\":true,\"data-framer-name\":\"Thumb\",layoutDependency:layoutDependency,layoutId:\"WdT3YHUkm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"inset 0px 1px 2px 0px rgba(255, 255, 255, 0.25), 0px 1px 1px 0px rgba(0,0,0,0.25)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f3bad-container\",layoutDependency:layoutDependency,layoutId:\"pK5L1Flgd-container\",children:/*#__PURE__*/_jsx(Prefab_Checkbox,{defaultChecked:IczI1c227,formID:oXdjmv6qy,height:\"100%\",id:\"pK5L1Flgd\",layoutId:\"pK5L1Flgd\",name:cpy7ElsQR,onActive:onActived28gay,onError:onError1wzomht,onInActive:onInActivewxvazw,required:zlHCRBiEX,uid:NKDJWsyUO,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-549T3.framer-1p7yok7, .framer-549T3 .framer-1p7yok7 { display: block; }\",\".framer-549T3.framer-pktt8n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2px; position: relative; width: 48px; }\",\".framer-549T3 .framer-1f5abd6 { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-549T3 .framer-f3bad-container { flex: none; height: auto; left: 0px; position: absolute; top: -40px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-549T3.framer-pktt8n { gap: 0px; } .framer-549T3.framer-pktt8n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-549T3.framer-pktt8n > :first-child { margin-left: 0px; } .framer-549T3.framer-pktt8n > :last-child { margin-right: 0px; } }\",\".framer-549T3.framer-v-1u3ity6.framer-pktt8n { justify-content: flex-end; }\",'.framer-549T3[data-border=\"true\"]::after, .framer-549T3 [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 28\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ho3X8ZgEr\":{\"layout\":[\"fixed\",\"auto\"]},\"zYE21Gpls\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IczI1c227\":\"defaultActive\",\"zlHCRBiEX\":\"required\",\"NKDJWsyUO\":\"iD\",\"cpy7ElsQR\":\"name1\",\"oXdjmv6qy\":\"formID\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVg2XPHXVM=withCSS(Component,css,\"framer-549T3\");export default FramerVg2XPHXVM;FramerVg2XPHXVM.displayName=\"site/Switch\";FramerVg2XPHXVM.defaultProps={height:28,width:48};addPropertyControls(FramerVg2XPHXVM,{variant:{options:[\"qJP3FbEtD\",\"Ho3X8ZgEr\",\"zYE21Gpls\"],optionTitles:[\"inActive\",\"Active\",\"Error\"],title:\"Variant\",type:ControlType.Enum},IczI1c227:{defaultValue:false,title:\"Default Active\",type:ControlType.Boolean},zlHCRBiEX:{defaultValue:false,title:\"Required\",type:ControlType.Boolean},NKDJWsyUO:{defaultValue:\"\",title:\"ID\",type:ControlType.String},cpy7ElsQR:{defaultValue:\"\",title:\"Name\",type:ControlType.String},oXdjmv6qy:{defaultValue:\"\",title:\"Form ID\",type:ControlType.String}});addFonts(FramerVg2XPHXVM,[{explicitInter:true,fonts:[]},...Prefab_CheckboxFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVg2XPHXVM\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"IczI1c227\\\":\\\"defaultActive\\\",\\\"zlHCRBiEX\\\":\\\"required\\\",\\\"NKDJWsyUO\\\":\\\"iD\\\",\\\"cpy7ElsQR\\\":\\\"name1\\\",\\\"oXdjmv6qy\\\":\\\"formID\\\"}\",\"framerIntrinsicWidth\":\"48\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ho3X8ZgEr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zYE21Gpls\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vg2XPHXVM.map", "// MIT License\n// Copyright \u00A9 Framer Prefabs & Contributors\n// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{cloneElement}from\"react\";import{ControlType,addPropertyControls}from\"framer\";/**\n * @framerSupportedLayoutWidth auto-prefer-fixed\n * @framerSupportedLayoutHeight auto-prefer-fixed\n */export default function Prefab_Figure(props){const{uid,instance,style}=props;return /*#__PURE__*/_jsx(\"figure\",{id:uid?uid:undefined,style:style,children:instance&&instance[0]&&/*#__PURE__*/cloneElement(instance[0],{style:{...instance[0].props.style,width:\"100%\",height:\"100%\"}})});}addPropertyControls(Prefab_Figure,{uid:{title:\"ID\",type:ControlType.String},instance:{description:\"Pass a component or layer that has 1 image and 1 prefab text to with the tag figcaption\",type:ControlType.ComponentInstance}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Prefab_Figure\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Prefab_Figure.map", "// Generated by Framer (0961f6c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import SiteForm from\"#framer/local/canvasComponent/DqF92a4JT/DqF92a4JT.js\";import Footer from\"#framer/local/canvasComponent/gCbF8_42g/gCbF8_42g.js\";import Copy from\"#framer/local/canvasComponent/gftbj65DA/gftbj65DA.js\";import SiteDonation_Button from\"#framer/local/canvasComponent/ok5kDk3yh/ok5kDk3yh.js\";import SiteButton from\"#framer/local/canvasComponent/Q4EQaTQo9/Q4EQaTQo9.js\";import HomeBookmark from\"#framer/local/canvasComponent/qJ23nN0eE/qJ23nN0eE.js\";import SiteNav from\"#framer/local/canvasComponent/rykPk3Fa7/rykPk3Fa7.js\";import SiteBadge from\"#framer/local/canvasComponent/szFQaxSoD/szFQaxSoD.js\";import SiteSwitch from\"#framer/local/canvasComponent/Vg2XPHXVM/Vg2XPHXVM.js\";import V01ExamplesListExample from\"#framer/local/canvasComponent/z5nOnjA5b/z5nOnjA5b.js\";import Prefab_Figure from\"#framer/local/codeFile/UdQL_9G/Prefab_Figure.js\";import Prefab_Label from\"#framer/local/codeFile/G64olCJ/Prefab_Label.js\";import Prefab_Text from\"#framer/local/codeFile/JjzEVaJ/Prefab_Text.js\";import*as sharedStyle from\"#framer/local/css/VLFkAvkSb/VLFkAvkSb.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SiteNavFonts=getFonts(SiteNav);const SiteBadgeFonts=getFonts(SiteBadge);const SiteButtonFonts=getFonts(SiteButton);const SiteDonation_ButtonFonts=getFonts(SiteDonation_Button);const EmbedFonts=getFonts(Embed);const SiteFormFonts=getFonts(SiteForm);const HomeBookmarkFonts=getFonts(HomeBookmark);const SiteSwitchFonts=getFonts(SiteSwitch);const Prefab_LabelFonts=getFonts(Prefab_Label);const CopyFonts=getFonts(Copy);const V01ExamplesListExampleFonts=getFonts(V01ExamplesListExample);const Prefab_TextFonts=getFonts(Prefab_Text);const Prefab_FigureFonts=getFonts(Prefab_Figure);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"WlCzpePix\",\"TPl8lGXgd\"];const breakpoints={TPl8lGXgd:\"(max-width: 809px)\",WlCzpePix:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3nMEA\";const variantClassNames={TPl8lGXgd:\"framer-v-pwrnu0\",WlCzpePix:\"framer-v-1owt4u9\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={boxShadow:\"0px 0.24145061431045178px 1.207253071552259px -1.5px rgba(0, 0, 0, 0.14396), 0px 2px 10px -3px rgba(0, 0, 0, 0.1)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"TPl8lGXgd\",Tablet:\"WlCzpePix\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);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);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-3nMEA`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-3nMEA`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"TPl8lGXgd\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rz9rhy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{variant:\"GbNbp5jRT\"}},children:/*#__PURE__*/_jsx(SiteNav,{height:\"100%\",id:\"JkU3n4Xk3\",layoutId:\"JkU3n4Xk3\",style:{height:\"100%\",width:\"100%\"},variant:\"rw6emhX5u\",width:\"100%\",wUU2yPOlB:true})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-b7e6g5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dvz2lp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ebd4e2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ymhuu1-container\",children:/*#__PURE__*/_jsx(SiteBadge,{height:\"100%\",id:\"pBzGNv7DU\",layoutId:\"pBzGNv7DU\",style:{height:\"100%\"},variant:\"tKcbNMpxs\",VENO1ON64:\"Coming soon\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-107rgq6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217)) 0%, var(--token-f5de8234-41f9-4915-935c-a51382901f32, rgb(219, 136, 255)) 100%)\"},children:\"Build more accessible and smarter framer components.\"})})})},WlCzpePix:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217)) 0%, var(--token-f5de8234-41f9-4915-935c-a51382901f32, rgb(219, 136, 255)) 100%)\"},children:\"Build more accessible and smarter framer components.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-a9ab772c-e37f-4dbe-9a5f-52d5c1533a2f, rgb(76, 61, 217)) 0%, var(--token-f5de8234-41f9-4915-935c-a51382901f32, rgb(219, 136, 255)) 100%)\"},children:\"Build more accessible and smarter framer components.\"})})}),className:\"framer-19m1sws\",fonts:[\"GF;Manrope-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o26h46\",\"data-styles-preset\":\"VLFkAvkSb\",style:{\"--framer-text-alignment\":\"center\"},children:\"Framer Prefabs is an open-source library optimized for ease of use and\\xa0accessibility. Add the prefab to any framer component and you are good to go!\"})}),fonts:[\"Inter\"]},WlCzpePix:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0zMDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(74, 79, 168))\"},children:\"Framer Prefabs is an open-source library optimized for ease of use and\\xa0accessibility. Add the prefab to any framer component and you are good to go!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS0zMDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(74, 79, 168))\"},children:\"Framer Prefabs is an open-source library optimized for ease of use and\\xa0accessibility. Add the prefab to any framer component and you are good to go!\"})}),className:\"framer-52pk90\",fonts:[\"GF;Manrope-300\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9nkyn2\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B_EqanCL9\"},implicitPathVariables:undefined},{href:{webPageId:\"B_EqanCL9\"},implicitPathVariables:undefined},{href:{webPageId:\"B_EqanCL9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14bpaje-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{VcXnoLiCL:resolvedLinks[2]},WlCzpePix:{VcXnoLiCL:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SiteButton,{dAasdHaIL:false,height:\"100%\",id:\"Z92HkWsKc\",layoutId:\"Z92HkWsKc\",NDxbQG0c_:\"Lightning\",oJTzNuBxM:\"Quick Start\",rIbNrMJ9C:true,style:{height:\"100%\"},variant:\"f0rHgz16o\",VcXnoLiCL:resolvedLinks[0],width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ybthev-container\",children:/*#__PURE__*/_jsx(SiteDonation_Button,{height:\"100%\",id:\"MxTaaSekq\",layoutId:\"MxTaaSekq\",style:{height:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s24r1f-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a href=\"https://www.producthunt.com/posts/framer-prefabs?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-framer&#0045;prefabs\" target=\"_blank\"><img src=\"https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=454835&theme=light\" alt=\"Framer&#0032;Prefabs - Build&#0032;for&#0032;free&#0032;more&#0032;accessible&#0032;and&#0032;smarter&#0032;framer&#0032;components | Product Hunt\" style=\"width: 165px; height: 48px;\" width=\"250\" height=\"54\" /></a>',id:\"q_vWimYHO\",layoutId:\"q_vWimYHO\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l2dx4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wqqjmf\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gk78fd\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{width:\"357px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"410px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cggq29-container\",children:/*#__PURE__*/_jsx(SiteForm,{FYx5P8IbZ:true,height:\"100%\",id:\"m7FZeZ0lG\",ivZUrQznL:\"formSpark\",layoutId:\"m7FZeZ0lG\",MLiSBKG5c:\"https://submit-form.com/TlYsoHZ6c\",NtUOoBrkY:2,style:{width:\"100%\"},variant:\"sQ0tcC5fL\",vK9t_rEgq:\"test\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ay1jo-container\",children:/*#__PURE__*/_jsx(HomeBookmark,{height:\"100%\",id:\"mV6xBlg9O\",layoutId:\"mV6xBlg9O\",style:{height:\"100%\"},variant:\"fblWK024D\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1876su\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"48px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hzwq0w-container\",children:/*#__PURE__*/_jsx(SiteSwitch,{cpy7ElsQR:\"\",height:\"100%\",IczI1c227:false,id:\"EYmfrtD0_\",layoutId:\"EYmfrtD0_\",NKDJWsyUO:\"swtich-reduce-1\",oXdjmv6qy:\"\",style:{width:\"100%\"},variant:\"qJP3FbEtD\",width:\"100%\",zlHCRBiEX:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ka3ee-container\",children:/*#__PURE__*/_jsx(Prefab_Label,{asTag:false,height:\"100%\",htmlFor:\"swtich-reduce-1\",id:\"TJsQgc0zl\",instance:[],layoutId:\"TJsQgc0zl\",nested:true,showRequired:false,styles:{color:\"var(--token-b253b32a-71e7-4ad3-8c46-e715df3faac9, rgb(66, 45, 122))\",font:{},line:1.1,requiredColor:\"rgb(240, 62, 62)\",spacing:0,transform:\"none\"},text:\"Reduce motion\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdipsz\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8jjik\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bkevgz hidden-72rtr7 hidden-1owt4u9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-22aahp\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vn36b8\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c0qjiy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WlCzpePix:{j83RHrNVt:\"This Text\"}},children:/*#__PURE__*/_jsx(Copy,{height:\"100%\",id:\"xhBfwK1qw\",j83RHrNVt:\"this text\",jtuRkHtDH:'Copy \"this text\"',layoutId:\"xhBfwK1qw\",variant:\"t7YFyS0CP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mvp66g-container\",children:/*#__PURE__*/_jsx(V01ExamplesListExample,{height:\"100%\",id:\"U8ZnVeDfd\",layoutId:\"U8ZnVeDfd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m7zndm-container\",children:/*#__PURE__*/_jsx(Prefab_Figure,{height:\"100%\",id:\"n__sBsiQt\",instance:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zjhelq\",whileHover:animation,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:4e3,sizes:\"292px\",src:\"https://framerusercontent.com/images/aq6YEAXwPQKlvdR6wK7LFYqMGc.jpg\",srcSet:\"https://framerusercontent.com/images/aq6YEAXwPQKlvdR6wK7LFYqMGc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aq6YEAXwPQKlvdR6wK7LFYqMGc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aq6YEAXwPQKlvdR6wK7LFYqMGc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aq6YEAXwPQKlvdR6wK7LFYqMGc.jpg 4000w\"},className:\"framer-1oll3w2\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j2a0g1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sqnozh-container\",children:/*#__PURE__*/_jsx(Prefab_Text,{height:\"100%\",id:\"T2l6NfMeS\",layoutId:\"T2l6NfMeS\",style:{width:\"100%\"},styles:{color:\"var(--token-7bc77b9b-d49a-4952-a34b-a7bed3265d83, rgb(103, 106, 168))\",font:{},line:1.1,spacing:0,transform:\"none\"},tag:\"figcaption\",text:\"Use semantic HTML like figure and figcaption. To properly add a caption to a image.\",uid:\"\",width:\"100%\"})})})})]})],layoutId:\"n__sBsiQt\",style:{height:\"100%\",width:\"100%\"},uid:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ke7z2n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TPl8lGXgd:{variant:\"dHEnl75bb\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"N_USTnZXL\",layoutId:\"N_USTnZXL\",style:{width:\"100%\"},variant:\"f5eqjNJgD\",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-3nMEA { background: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, rgb(242, 245, 255)); }`,\".framer-3nMEA.framer-lux5qc, .framer-3nMEA .framer-lux5qc { display: block; }\",\".framer-3nMEA.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, #f2f5ff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-3nMEA .framer-1rz9rhy-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-3nMEA .framer-b7e6g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-3nMEA .framer-1dvz2lp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3nMEA .framer-1ebd4e2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-3nMEA .framer-1ymhuu1-container { flex: none; height: 18px; position: relative; width: auto; }\",\".framer-3nMEA .framer-107rgq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-3nMEA .framer-19m1sws, .framer-3nMEA .framer-52pk90 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3nMEA .framer-9nkyn2 { 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-3nMEA .framer-14bpaje-container, .framer-3nMEA .framer-1ybthev-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-3nMEA .framer-s24r1f-container { flex: none; height: 39px; position: relative; width: 165px; }\",\".framer-3nMEA .framer-17l2dx4 { background-color: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, #f2f5ff); flex: none; height: 587px; overflow: hidden; position: relative; width: 822px; z-index: 1; }\",\".framer-3nMEA .framer-wqqjmf { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 187px; flex: none; height: 1px; overflow: hidden; position: absolute; right: -10px; width: 460px; }\",\".framer-3nMEA .framer-1gk78fd { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); flex: none; height: 360px; left: calc(54.62287104622874% - 1px / 2); overflow: hidden; position: absolute; top: 16px; width: 1px; }\",\".framer-3nMEA .framer-1cggq29-container { flex: none; height: auto; left: 23px; position: absolute; top: 16px; width: 410px; }\",\".framer-3nMEA .framer-13ay1jo-container { bottom: 23px; flex: none; height: 32px; left: 223px; position: absolute; width: auto; }\",\".framer-3nMEA .framer-1876su { align-content: center; align-items: center; bottom: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 28px; justify-content: center; left: calc(52.919708029197096% - 156px / 2); overflow: visible; padding: 0px; position: absolute; width: 156px; }\",\".framer-3nMEA .framer-hzwq0w-container { flex: none; height: auto; position: relative; width: 48px; }\",\".framer-3nMEA .framer-2ka3ee-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3nMEA .framer-kdipsz { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 13px; flex: none; height: 52px; left: 336px; overflow: hidden; position: absolute; width: 1px; }\",\".framer-3nMEA .framer-1g8jjik { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 65px; flex: none; height: 1px; left: calc(49.881796690307354% - 819px / 2); overflow: hidden; position: absolute; width: 819px; }\",\".framer-3nMEA .framer-1bkevgz { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 85px; flex: none; height: 1px; left: -219px; overflow: hidden; position: absolute; right: -200px; }\",\".framer-3nMEA .framer-22aahp { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 15px; flex: none; height: 51px; left: 209px; overflow: hidden; position: absolute; width: 1px; }\",\".framer-3nMEA .framer-vn36b8 { background-color: var(--token-6cc3c1fa-f19d-45a2-86fd-87d3f62b2bd3, rgba(76, 61, 217, 0.15)); bottom: 13px; flex: none; height: 53px; left: 531px; overflow: hidden; position: absolute; width: 1px; }\",\".framer-3nMEA .framer-1c0qjiy-container { bottom: 28px; flex: none; height: auto; left: 552px; position: absolute; width: auto; }\",\".framer-3nMEA .framer-1mvp66g-container { bottom: 100px; flex: none; height: auto; left: 449px; position: absolute; width: auto; }\",\".framer-3nMEA .framer-1m7zndm-container { flex: none; height: 361px; left: 463px; position: absolute; top: 16px; width: 347px; }\",\".framer-3nMEA .framer-zjhelq { align-content: flex-start; align-items: flex-start; background-color: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, #f2f5ff); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.6666666666666665px rgba(0, 0, 0, 0.23), 0px 2.288533303243457px 2.288533303243457px -3.333333333333333px rgba(0, 0, 0, 0.19279), 0px 10px 10px -5px rgba(0, 0, 0, 0); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 216px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 292px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3nMEA .framer-1oll3w2 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3nMEA .framer-1j2a0g1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-3nMEA .framer-1sqnozh-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-3nMEA .framer-1ke7z2n-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3nMEA.framer-72rtr7, .framer-3nMEA .framer-b7e6g5, .framer-3nMEA .framer-1dvz2lp, .framer-3nMEA .framer-1ebd4e2, .framer-3nMEA .framer-107rgq6, .framer-3nMEA .framer-9nkyn2, .framer-3nMEA .framer-1876su, .framer-3nMEA .framer-zjhelq, .framer-3nMEA .framer-1j2a0g1 { gap: 0px; } .framer-3nMEA.framer-72rtr7 > *, .framer-3nMEA .framer-1dvz2lp > *, .framer-3nMEA .framer-107rgq6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3nMEA.framer-72rtr7 > :first-child, .framer-3nMEA .framer-b7e6g5 > :first-child, .framer-3nMEA .framer-1dvz2lp > :first-child, .framer-3nMEA .framer-107rgq6 > :first-child, .framer-3nMEA .framer-zjhelq > :first-child { margin-top: 0px; } .framer-3nMEA.framer-72rtr7 > :last-child, .framer-3nMEA .framer-b7e6g5 > :last-child, .framer-3nMEA .framer-1dvz2lp > :last-child, .framer-3nMEA .framer-107rgq6 > :last-child, .framer-3nMEA .framer-zjhelq > :last-child { margin-bottom: 0px; } .framer-3nMEA .framer-b7e6g5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-3nMEA .framer-1ebd4e2 > *, .framer-3nMEA .framer-9nkyn2 > *, .framer-3nMEA .framer-1j2a0g1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3nMEA .framer-1ebd4e2 > :first-child, .framer-3nMEA .framer-9nkyn2 > :first-child, .framer-3nMEA .framer-1876su > :first-child, .framer-3nMEA .framer-1j2a0g1 > :first-child { margin-left: 0px; } .framer-3nMEA .framer-1ebd4e2 > :last-child, .framer-3nMEA .framer-9nkyn2 > :last-child, .framer-3nMEA .framer-1876su > :last-child, .framer-3nMEA .framer-1j2a0g1 > :last-child { margin-right: 0px; } .framer-3nMEA .framer-1876su > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3nMEA .framer-zjhelq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@media (min-width: 1200px) { .framer-3nMEA .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-3nMEA .hidden-1owt4u9 { display: none !important; } .${metadata.bodyClassName}-framer-3nMEA { background: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, rgb(242, 245, 255)); } .framer-3nMEA.framer-72rtr7 { width: 810px; } .framer-3nMEA .framer-1dvz2lp { max-width: 90%; order: 0; } .framer-3nMEA .framer-17l2dx4 { order: 1; } .framer-3nMEA .framer-1m7zndm-container { width: 324px; }}`,`@media (max-width: 809px) { .framer-3nMEA .hidden-pwrnu0 { display: none !important; } .${metadata.bodyClassName}-framer-3nMEA { background: var(--token-addd394d-0638-45cf-8233-8c3ea3a13327, rgb(242, 245, 255)); } .framer-3nMEA.framer-72rtr7 { width: 390px; } .framer-3nMEA .framer-b7e6g5 { padding: 80px 24px 90px 24px; } .framer-3nMEA .framer-1dvz2lp { max-width: 100%; } .framer-3nMEA .framer-17l2dx4 { height: 623px; width: 400px; } .framer-3nMEA .framer-wqqjmf { left: -50px; width: unset; } .framer-3nMEA .framer-1gk78fd { left: calc(54.50000000000003% - 1px / 2); } .framer-3nMEA .framer-1cggq29-container { left: 50%; transform: translateX(-50%); width: 357px; } .framer-3nMEA .framer-13ay1jo-container { bottom: 93px; left: 43px; } .framer-3nMEA .framer-1876su { bottom: 94px; left: 184px; } .framer-3nMEA .framer-kdipsz { bottom: 83px; left: 356px; } .framer-3nMEA .framer-1g8jjik { bottom: 135px; left: -219px; right: -200px; width: unset; } .framer-3nMEA .framer-22aahp { bottom: 85px; left: 169px; } .framer-3nMEA .framer-vn36b8 { bottom: 83px; left: unset; right: -122px; } .framer-3nMEA .framer-1m7zndm-container { left: unset; right: -377px; top: calc(46.4980544747082% - 361px / 2); }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1406\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WlCzpePix\":{\"layout\":[\"fixed\",\"auto\"]},\"TPl8lGXgd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-3nMEA\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:1406,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_A87jxeN7B.woff2\",weight:\"300\"},{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...SiteNavFonts,...SiteBadgeFonts,...SiteButtonFonts,...SiteDonation_ButtonFonts,...EmbedFonts,...SiteFormFonts,...HomeBookmarkFonts,...SiteSwitchFonts,...Prefab_LabelFonts,...CopyFonts,...V01ExamplesListExampleFonts,...Prefab_TextFonts,...Prefab_FigureFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1406\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WlCzpePix\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TPl8lGXgd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "Prefab_Form_ButtonFonts", "getFonts", "Prefab_Form_Button", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "formID", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pdt2AxGjr", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FramerazUo1pF7n", "withCSS", "azUo1pF7n_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Prefab_Form_ButtonFonts", "getFonts", "Prefab_Form_Button", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "formID", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pdt2AxGjr", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FramerBi0yTp6nk", "withCSS", "Bi0yTp6nk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "Prefab_CheckboxFonts", "Prefab_Checkbox", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "defaultActive", "formID", "height", "id", "iD", "name1", "required", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dshKdS0b5", "Eo4Qnid1Z", "zE94kAjFm", "LvJJzKxFn", "BA_yrig3k", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onActiver2j1d1", "args", "onInActive15y0uig", "onErrornd0xfs", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramercgvUcXltQ", "withCSS", "cgvUcXltQ_default", "addPropertyControls", "ControlType", "addFonts", "Prefab_LabelFonts", "getFonts", "Prefab_Label", "Prefab_Input_TextFonts", "Prefab_Input_Text", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "ariaDescribedby", "disabled", "formID", "height", "id", "id1", "labelText", "name1", "placeholder", "required", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vuseXIEMy", "ur8tLehJ_", "yWjrk3gQN", "dGtZWSl_a", "B7vkNWUbS", "ACvzEUt59", "RelIPR7vd", "GNDC6Grd3", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onDefault8t5wb9", "args", "onDefaultHasValue1k95c9m", "onFocus1bpixfb", "onFocusHasValue19j0o7", "onError1hsft5m", "onErrorHasValue1tlcl2f", "onDisabled10zwnfd", "onDisabledHasValue9up5fp", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerfJmu2vtrs", "withCSS", "fJmu2vtrs_default", "addPropertyControls", "ControlType", "addFonts", "Prefab_Input_TextAreaFonts", "getFonts", "Prefab_Input_TextArea", "PhosphorFonts", "Icon", "Prefab_LabelFonts", "Prefab_Label", "Prefab_Input_TextAreaControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "ariaDescribedby", "disabled", "formID", "height", "id", "id1", "label", "maxLength", "name1", "placeholder", "required", "resize", "setMaxLength", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_humanReadableEnumMap_resize", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xY3PEXKB_", "exN4fekyH", "lgbXBCHHt", "Af12Z14kH", "blUCCmQPc", "JcvxWEq_c", "XSQ4xyJkR", "Tr_hl6AKB", "Vw9Cu8Qyv", "i652rXjYn", "qt0ffsiYj", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onDefault1opzlkl", "args", "onDefaultHasValuer2ndy0", "onFocussm1f0f", "onFocusHasValue1itagfj", "onError7x9141", "onErrorHasValue1uuf3u", "onDisabled1pcxwqt", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerpaKdx5z1z", "withCSS", "paKdx5z1z_default", "addPropertyControls", "ControlType", "addFonts", "SiteInputTextCopyFonts", "getFonts", "fJmu2vtrs_default", "SiteTextAreaFonts", "paKdx5z1z_default", "SiteCheckboxFonts", "cgvUcXltQ_default", "Prefab_LabelFonts", "Prefab_Label", "SiteFormButtonResetFonts", "azUo1pF7n_default", "SiteFormButtonSubmitFonts", "Bi0yTp6nk_default", "Prefab_FormFonts", "Prefab_Form", "Prefab_FormControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "action", "height", "id", "iD", "resetAfter", "service", "timeout", "width", "props", "_ref", "_humanReadableEnumMap_service", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vK9t_rEgq", "ivZUrQznL", "MLiSBKG5c", "FYx5P8IbZ", "NtUOoBrkY", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onDefault1x0eri9", "args", "onSending1k0j2u0", "onSuccessrxy2cs", "onError1aqzs7l", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText", "ComponentViewportProvider", "css", "FramerDqF92a4JT", "withCSS", "DqF92a4JT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "Prefab_SwitchFonts", "Prefab_Checkbox", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onActive1ji4803", "args", "onInActive10fx4rq", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FramerqJ23nN0eE", "withCSS", "qJ23nN0eE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Prefab_CheckboxFonts", "getFonts", "Prefab_Checkbox", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "defaultActive", "formID", "height", "id", "iD", "name1", "required", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IczI1c227", "zlHCRBiEX", "NKDJWsyUO", "cpy7ElsQR", "oXdjmv6qy", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onActived28gay", "args", "onInActivewxvazw", "onError1wzomht", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerVg2XPHXVM", "withCSS", "Vg2XPHXVM_default", "addPropertyControls", "ControlType", "addFonts", "Prefab_Figure", "props", "uid", "instance", "style", "p", "q", "addPropertyControls", "ControlType", "SiteNavFonts", "getFonts", "rykPk3Fa7_default", "SiteBadgeFonts", "szFQaxSoD_default", "SiteButtonFonts", "Q4EQaTQo9_default", "SiteDonation_ButtonFonts", "ok5kDk3yh_default", "EmbedFonts", "Embed", "SiteFormFonts", "DqF92a4JT_default", "HomeBookmarkFonts", "qJ23nN0eE_default", "SiteSwitchFonts", "Vg2XPHXVM_default", "Prefab_LabelFonts", "Prefab_Label", "CopyFonts", "gftbj65DA_default", "V01ExamplesListExampleFonts", "z5nOnjA5b_default", "Prefab_TextFonts", "Prefab_Text", "Prefab_FigureFonts", "Prefab_Figure", "FooterFonts", "gCbF8_42g_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "rykPk3Fa7_default", "szFQaxSoD_default", "x", "RichText", "ResolveLinks", "resolvedLinks", "Q4EQaTQo9_default", "ok5kDk3yh_default", "Embed", "DqF92a4JT_default", "qJ23nN0eE_default", "Vg2XPHXVM_default", "Prefab_Label", "gftbj65DA_default", "z5nOnjA5b_default", "Prefab_Figure", "Image2", "Prefab_Text", "gCbF8_42g_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SiteNavFonts", "SiteBadgeFonts", "SiteButtonFonts", "SiteDonation_ButtonFonts", "EmbedFonts", "SiteFormFonts", "HomeBookmarkFonts", "SiteSwitchFonts", "Prefab_LabelFonts", "CopyFonts", "V01ExamplesListExampleFonts", "Prefab_TextFonts", "Prefab_FigureFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
