{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js", "ssg:https://framerusercontent.com/modules/5egwwcVhnVSjigRKf0GV/CJI2zqzdStGOcROBTNUZ/BreakWord.js", "ssg:https://framerusercontent.com/modules/XOgrUKP2DnrYfzhcipRF/JXCnkfc3Biwfwp4JhWWV/sy0I0KU3j.js", "ssg:https://framerusercontent.com/modules/62SSajO9Ech5w2u3OHiw/GV8Y8Wu4CkbESCuresYZ/iPRzNdivE.js", "ssg:https://framerusercontent.com/modules/SMAty54DjkeY4sjiVCke/mAr5BaZpiRNDbIpztBuw/Bwfi0LEWP.js", "ssg:https://framerusercontent.com/modules/xWJxvnHUUOLeDAE6EUgc/ObcOIscoznCzefmiYQLy/oIgfqBTOS.js", "ssg:https://framerusercontent.com/modules/lycnnE9aICRNIcQgUTr5/c1IkIriP1jrIOUPFot81/lSb4RUraK.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true,description:\"More components at [Framer University](https://framer.university?utm_source=component).\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withFitContent(Component){return props=>{const newStyle={...props.style,width:\"fit-content\"};return /*#__PURE__*/_jsx(Component,{...props,style:newStyle});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFitContent\":{\"type\":\"reactHoc\",\"name\":\"withFitContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BreakWord.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"yroDmQotV\",\"Hmdkv2M4p\",\"vmIKLyrnS\"];const serializationHash=\"framer-XIQHn\";const variantClassNames={Hmdkv2M4p:\"framer-v-16ish6a\",vmIKLyrnS:\"framer-v-af2ere\",yroDmQotV:\"framer-v-1w02fi\"};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={duration:0,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={\"Plus Hover\":\"Hmdkv2M4p\",Minus:\"vmIKLyrnS\",Plus:\"yroDmQotV\"};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:\"yroDmQotV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yroDmQotV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vmIKLyrnS\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"vmIKLyrnS\")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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1w02fi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"yroDmQotV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{Hmdkv2M4p:{\"--border-color\":\"rgba(81, 86, 90, 0)\",backgroundColor:\"rgb(0, 120, 255)\"},vmIKLyrnS:{\"--border-color\":\"rgba(81, 86, 90, 0)\",backgroundColor:\"rgb(0, 120, 255)\"}},...addPropertyOverrides({Hmdkv2M4p:{\"data-framer-name\":\"Plus Hover\"},vmIKLyrnS:{\"data-framer-name\":\"Minus\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9q7gv\",\"data-framer-name\":\"SVG (Plus)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HGSVx0Gzl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 2 L 6 6 M 6 6 L 6 10 M 6 6 L 2 6 M 6 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90)) /* {&quot;name&quot;:&quot;10&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12843514063,withExternalLayout:true,...addPropertyOverrides({Hmdkv2M4p:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 2 L 6 6 M 6 6 L 6 10 M 6 6 L 2 6 M 6 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;12&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10260135435}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12gy6yw\",\"data-framer-name\":\"SVG (Minus)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MIzBGaS0q\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 2 6 L 10 6\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;12&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10681430789,withExternalLayout:true,...addPropertyOverrides({vmIKLyrnS:{svgContentId:11548429862}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XIQHn.framer-vuw5k9, .framer-XIQHn .framer-vuw5k9 { display: block; }\",\".framer-XIQHn.framer-1w02fi { height: 20px; overflow: hidden; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XIQHn .framer-9q7gv, .framer-XIQHn .framer-12gy6yw { flex: none; height: 12px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 12px; }\",\".framer-XIQHn.framer-v-16ish6a.framer-1w02fi, .framer-XIQHn.framer-v-af2ere.framer-1w02fi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",'.framer-XIQHn[data-border=\"true\"]::after, .framer-XIQHn [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 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hmdkv2M4p\":{\"layout\":[\"fixed\",\"fixed\"]},\"vmIKLyrnS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framersy0I0KU3j=withCSS(Component,css,\"framer-XIQHn\");export default Framersy0I0KU3j;Framersy0I0KU3j.displayName=\"Plus Minus Icon\";Framersy0I0KU3j.defaultProps={height:20,width:20};addPropertyControls(Framersy0I0KU3j,{variant:{options:[\"yroDmQotV\",\"Hmdkv2M4p\",\"vmIKLyrnS\"],optionTitles:[\"Plus\",\"Plus Hover\",\"Minus\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framersy0I0KU3j,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framersy0I0KU3j\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hmdkv2M4p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vmIKLyrnS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sy0I0KU3j.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js\";import{withFitContent}from\"https://framerusercontent.com/modules/5egwwcVhnVSjigRKf0GV/CJI2zqzdStGOcROBTNUZ/BreakWord.js\";import PlusMinusIcon from\"https://framerusercontent.com/modules/XOgrUKP2DnrYfzhcipRF/JXCnkfc3Biwfwp4JhWWV/sy0I0KU3j.js\";const SVG1Fonts=getFonts(SVG1);const PlusMinusIconFonts=getFonts(PlusMinusIcon);const MotionDivWithFitContent=withFitContent(motion.div);const cycleOrder=[\"PUeNxFrW8\",\"FfH7aIqzB\",\"ITEOmk204\",\"NAJtrgq0H\"];const serializationHash=\"framer-tOLXC\";const variantClassNames={FfH7aIqzB:\"framer-v-1v437fi\",ITEOmk204:\"framer-v-ho0wp7\",NAJtrgq0H:\"framer-v-1mztbp\",PUeNxFrW8:\"framer-v-kf8fu0\"};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={duration:0,type:\"tween\"};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={\"Grey Active\":\"NAJtrgq0H\",\"Grey Hover\":\"ITEOmk204\",Blue:\"PUeNxFrW8\",Grey:\"FfH7aIqzB\"};const getProps=({ear,heart,height,id,message,showAnswer,star,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,BgAQWE9JZ:(_ref=message!==null&&message!==void 0?message:props.BgAQWE9JZ)!==null&&_ref!==void 0?_ref:\"What if I don't like it?\",btPQlyjzM:heart!==null&&heart!==void 0?heart:props.btPQlyjzM,Ig9Oen9_Q:showAnswer!==null&&showAnswer!==void 0?showAnswer:props.Ig9Oen9_Q,qcxv5MbC_:star!==null&&star!==void 0?star:props.qcxv5MbC_,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"PUeNxFrW8\",ZowNLHVI9:(_ref2=ear!==null&&ear!==void 0?ear:props.ZowNLHVI9)!==null&&_ref2!==void 0?_ref2:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BgAQWE9JZ,ZowNLHVI9,btPQlyjzM,qcxv5MbC_,Ig9Oen9_Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PUeNxFrW8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapiswks5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}});const onMouseEnterojlrn7=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"ITEOmk204\");});const onTap35280e=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}setVariant(\"NAJtrgq0H\");});const onMouseLeave171kogg=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"FfH7aIqzB\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"FfH7aIqzB\",\"ITEOmk204\",\"NAJtrgq0H\"].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(MotionDivWithFitContent,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kf8fu0\",className,classNames),\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"PUeNxFrW8\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 120, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{FfH7aIqzB:{backgroundColor:\"var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, rgb(26, 28, 29))\"},ITEOmk204:{backgroundColor:\"rgb(9, 22, 42)\"},NAJtrgq0H:{backgroundColor:\"rgb(9, 22, 42)\"}},...addPropertyOverrides({FfH7aIqzB:{\"data-framer-name\":\"Grey\",\"data-highlight\":true,onMouseEnter:onMouseEnterojlrn7,onTap:onTapiswks5},ITEOmk204:{\"data-framer-name\":\"Grey Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave171kogg,onTap:onTap35280e},NAJtrgq0H:{\"data-framer-name\":\"Grey Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"What if I don't like it?\"})}),className:\"framer-r1nt0w\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mPzVF3uro\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BgAQWE9JZ,variants:{ITEOmk204:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"},NAJtrgq0H:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ITEOmk204:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 120, 255))\"},children:\"What if I don't like it?\"})})},NAJtrgq0H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 120, 255))\"},children:\"What if I don't like it?\"})})}},baseVariant,gestureVariant)}),ZowNLHVI9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i5cqyj\",\"data-framer-name\":\"Ear\",layoutDependency:layoutDependency,layoutId:\"LIlq_esCo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d0f9gn\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"R3Suzk_ZZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 0.005 0 L 11 0 L 11 8.5 C 11 12.071 11.092 20.714 17.005 24.643 C 12.571 24.643 1.854 21.786 0.005 16.071 C -0.007 16.071 0.005 0 0.005 0 Z\" fill=\"rgb(0, 120, 255)\"></path></svg>',svgContentId:11636190616,withExternalLayout:true,...addPropertyOverrides({FfH7aIqzB:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"var(--token-38c4cf9a-0aa8-4902-ad35-3a2d52d62d05, rgb(26, 28, 29)) /* {&quot;name&quot;:&quot;4&quot;} */\"></path></svg>',svgContentId:10540885383},ITEOmk204:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(9, 22, 42)\"></path></svg>',svgContentId:12341440270},NAJtrgq0H:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(9, 22, 42)\"></path></svg>',svgContentId:12341440270}},baseVariant,gestureVariant)})}),btPQlyjzM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nv9lra-container\",layoutDependency:layoutDependency,layoutId:\"SV1osc7SQ-container\",style:{rotate:19},children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 86, 121)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.4885 21.3725C21.0164 16.5927 23.1145 10.9028 21.5103 6.90294C20.7315 4.96087 19.0967 3.56916 17.1687 3.13926C15.4711 2.76077 13.6161 3.14222 11.9995 4.42553C10.3829 3.14222 8.52778 2.76077 6.83026 3.13927C4.9022 3.56917 3.26747 4.96089 2.48861 6.90295C0.884469 10.9029 2.98263 16.5927 11.5106 21.3725L11.9995 21.6466L12.4885 21.3725Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"SV1osc7SQ\",layoutId:\"SV1osc7SQ\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qcxv5MbC_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yu3pdm-container\",layoutDependency:layoutDependency,layoutId:\"Ry_kIH42g-container\",style:{rotate:-13},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(254, 217, 94)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.9086 2.19626C13.1399 0.601248 10.857 0.601245 10.0883 2.19626L8.07325 6.37748C8.05819 6.40873 8.02531 6.43524 7.98153 6.44095L3.34253 7.04641C1.58779 7.27543 0.855254 9.43807 2.1633 10.6675L5.55689 13.8571C5.58454 13.8831 5.59438 13.9178 5.5885 13.9492L4.73655 18.5047C4.4065 20.2694 6.28023 21.5748 7.82594 20.7441L11.9383 18.5342C11.9755 18.5142 12.0214 18.5142 12.0585 18.5342L16.171 20.7441C17.7167 21.5748 19.5904 20.2694 19.2604 18.5047L18.4084 13.9492C18.4026 13.9178 18.4124 13.8831 18.44 13.8571L21.8336 10.6675C23.1417 9.43807 22.4091 7.27543 20.6544 7.04641L16.0154 6.44095C15.9716 6.43524 15.9387 6.40873 15.9237 6.37748L13.9086 2.19626Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"Ry_kIH42g\",layoutId:\"Ry_kIH42g\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yohl3s\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"hyRq8bJdy\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17kh7uj-container\",layoutDependency:layoutDependency,layoutId:\"K93lws7RO-container\",children:/*#__PURE__*/_jsx(PlusMinusIcon,{height:\"100%\",id:\"K93lws7RO\",layoutId:\"K93lws7RO\",style:{height:\"100%\",width:\"100%\"},variant:\"yroDmQotV\",width:\"100%\",...addPropertyOverrides({ITEOmk204:{variant:\"Hmdkv2M4p\"},NAJtrgq0H:{variant:\"vmIKLyrnS\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tOLXC.framer-14zdu3y, .framer-tOLXC .framer-14zdu3y { display: block; }\",\".framer-tOLXC.framer-kf8fu0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 22px 12px 22px; position: relative; width: min-content; }\",\".framer-tOLXC .framer-r1nt0w { -webkit-user-select: none; flex: none; height: auto; max-width: 100%; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-tOLXC .framer-1i5cqyj { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -6px; width: min-content; z-index: 1; }\",\".framer-tOLXC .framer-d0f9gn { flex: none; height: 25px; position: relative; width: 17px; }\",\".framer-tOLXC .framer-1nv9lra-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: absolute; right: -4px; top: -11px; width: 28px; z-index: 1; }\",\".framer-tOLXC .framer-yu3pdm-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: -16px; position: absolute; top: 50%; width: 28px; z-index: 1; }\",\".framer-tOLXC .framer-1yohl3s { 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: 0px; position: absolute; right: -32px; top: 50%; width: 32px; z-index: 1; }\",\".framer-tOLXC .framer-17kh7uj-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tOLXC.framer-kf8fu0, .framer-tOLXC .framer-1i5cqyj, .framer-tOLXC .framer-1yohl3s { gap: 0px; } .framer-tOLXC.framer-kf8fu0 > *, .framer-tOLXC .framer-1i5cqyj > *, .framer-tOLXC .framer-1yohl3s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tOLXC.framer-kf8fu0 > :first-child, .framer-tOLXC .framer-1i5cqyj > :first-child, .framer-tOLXC .framer-1yohl3s > :first-child { margin-left: 0px; } .framer-tOLXC.framer-kf8fu0 > :last-child, .framer-tOLXC .framer-1i5cqyj > :last-child, .framer-tOLXC .framer-1yohl3s > :last-child { margin-right: 0px; } }\",\".framer-tOLXC.framer-v-1v437fi .framer-1i5cqyj, .framer-tOLXC.framer-v-ho0wp7 .framer-1i5cqyj, .framer-tOLXC.framer-v-1mztbp .framer-1i5cqyj { bottom: -1px; left: -6px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 351.5\n * @framerIntrinsicWidth 61.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FfH7aIqzB\":{\"layout\":[\"auto\",\"auto\"]},\"ITEOmk204\":{\"layout\":[\"auto\",\"auto\"]},\"NAJtrgq0H\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BgAQWE9JZ\":\"message\",\"ZowNLHVI9\":\"ear\",\"btPQlyjzM\":\"heart\",\"qcxv5MbC_\":\"star\",\"Ig9Oen9_Q\":\"showAnswer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriPRzNdivE=withCSS(Component,css,\"framer-tOLXC\");export default FrameriPRzNdivE;FrameriPRzNdivE.displayName=\"Message\";FrameriPRzNdivE.defaultProps={height:351.5,width:61.5};addPropertyControls(FrameriPRzNdivE,{variant:{options:[\"PUeNxFrW8\",\"FfH7aIqzB\",\"ITEOmk204\",\"NAJtrgq0H\"],optionTitles:[\"Blue\",\"Grey\",\"Grey Hover\",\"Grey Active\"],title:\"Variant\",type:ControlType.Enum},BgAQWE9JZ:{defaultValue:\"What if I don't like it?\",displayTextArea:false,title:\"Message\",type:ControlType.String},ZowNLHVI9:{defaultValue:true,title:\"Ear\",type:ControlType.Boolean},btPQlyjzM:{defaultValue:false,title:\"Heart\",type:ControlType.Boolean},qcxv5MbC_:{defaultValue:false,title:\"Star\",type:ControlType.Boolean},Ig9Oen9_Q:{title:\"Show Answer\",type:ControlType.EventHandler}});addFonts(FrameriPRzNdivE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVG1Fonts,...PlusMinusIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriPRzNdivE\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"61.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BgAQWE9JZ\\\":\\\"message\\\",\\\"ZowNLHVI9\\\":\\\"ear\\\",\\\"btPQlyjzM\\\":\\\"heart\\\",\\\"qcxv5MbC_\\\":\\\"star\\\",\\\"Ig9Oen9_Q\\\":\\\"showAnswer\\\"}\",\"framerIntrinsicHeight\":\"351.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FfH7aIqzB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ITEOmk204\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NAJtrgq0H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iPRzNdivE.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withFitContent}from\"https://framerusercontent.com/modules/5egwwcVhnVSjigRKf0GV/CJI2zqzdStGOcROBTNUZ/BreakWord.js\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js\";import PlusMinusIcon from\"https://framerusercontent.com/modules/XOgrUKP2DnrYfzhcipRF/JXCnkfc3Biwfwp4JhWWV/sy0I0KU3j.js\";const SVG1Fonts=getFonts(SVG1);const PlusMinusIconFonts=getFonts(PlusMinusIcon);const MotionDivWithFitContent=withFitContent(motion.div);const cycleOrder=[\"X3YHFCGW_\",\"XdgrSkftF\",\"kBQplAckP\",\"GGoT9molh\"];const serializationHash=\"framer-KxzLH\";const variantClassNames={GGoT9molh:\"framer-v-1rk08tk\",kBQplAckP:\"framer-v-w48y7k\",X3YHFCGW_:\"framer-v-t3k90v\",XdgrSkftF:\"framer-v-6pmzn2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Grey Active\":\"GGoT9molh\",\"Grey Hover\":\"kBQplAckP\",Blue:\"X3YHFCGW_\",Grey:\"XdgrSkftF\"};const getProps=({ear,heart,height,id,message,showAnswer,star,width,...props})=>{return{...props,BgAQWE9JZ:message??props.BgAQWE9JZ??\"What is Lumos House?\",btPQlyjzM:heart??props.btPQlyjzM,Ig9Oen9_Q:showAnswer??props.Ig9Oen9_Q,qcxv5MbC_:star??props.qcxv5MbC_,variant:humanReadableVariantMap[props.variant]??props.variant??\"X3YHFCGW_\",ZowNLHVI9:ear??props.ZowNLHVI9??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BgAQWE9JZ,ZowNLHVI9,btPQlyjzM,qcxv5MbC_,Ig9Oen9_Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"X3YHFCGW_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapiswks5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}});const onMouseEntergd1q7x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"kBQplAckP\");});const onTap1hjjt9r=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}setVariant(\"GGoT9molh\");});const onMouseLeave1i7j8yo=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"XdgrSkftF\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"XdgrSkftF\",\"kBQplAckP\",\"GGoT9molh\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFitContent,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-t3k90v\",className,classNames),\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"X3YHFCGW_\",ref:ref??ref1,style:{backgroundColor:\"rgb(0, 120, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{GGoT9molh:{backgroundColor:\"rgb(216, 216, 216)\"},kBQplAckP:{backgroundColor:\"rgb(216, 216, 216)\"},XdgrSkftF:{backgroundColor:\"rgb(216, 216, 216)\"}},...addPropertyOverrides({GGoT9molh:{\"data-framer-name\":\"Grey Active\"},kBQplAckP:{\"data-framer-name\":\"Grey Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave1i7j8yo,onTap:onTap1hjjt9r},XdgrSkftF:{\"data-framer-name\":\"Grey\",\"data-highlight\":true,onMouseEnter:onMouseEntergd1q7x,onTap:onTapiswks5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"What if I don't like it?\"})}),className:\"framer-5xlktx\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"SCp2vdXHZ\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BgAQWE9JZ,variants:{GGoT9molh:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"},kBQplAckP:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"},XdgrSkftF:{\"--extracted-r6o4lv\":\"var(--token-2007957d-a074-4c0c-8a33-8d85ed1ba0fd, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GGoT9molh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 120, 255))\"},children:\"What if I don't like it?\"})})},kBQplAckP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 120, 255))\"},children:\"What if I don't like it?\"})})},XdgrSkftF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2007957d-a074-4c0c-8a33-8d85ed1ba0fd, rgb(0, 0, 0)))\"},children:\"What is Lumos House?\"})})}},baseVariant,gestureVariant)}),ZowNLHVI9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cguc7c\",\"data-framer-name\":\"Ear\",layoutDependency:layoutDependency,layoutId:\"ASeGNCawd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qtgvkd\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uwq3zPxYI\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 0.005 0 L 11 0 L 11 8.5 C 11 12.071 11.092 20.714 17.005 24.643 C 12.571 24.643 1.854 21.786 0.005 16.071 C -0.007 16.071 0.005 0 0.005 0 Z\" fill=\"rgb(0, 120, 255)\"></path></svg>',svgContentId:11636190616,variants:{GGoT9molh:{backgroundColor:\"rgba(0, 0, 0, 0)\"},kBQplAckP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},XdgrSkftF:{backgroundColor:\"rgba(216, 216, 216, 0)\"}},withExternalLayout:true,...addPropertyOverrides({GGoT9molh:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(216, 216, 216)\"></path></svg>',svgContentId:10509100956},kBQplAckP:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(216, 216, 216)\"></path></svg>',svgContentId:10509100956},XdgrSkftF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 25\"><path d=\"M 17 0 L 6.005 0 L 6.005 8.5 C 6.005 12.071 5.913 20.714 0 24.643 C 4.434 24.643 15.151 21.786 17 16.071 C 17.012 16.071 17 0 17 0 Z\" fill=\"rgb(216, 216, 216)\"></path></svg>',svgContentId:11116277197}},baseVariant,gestureVariant)})}),btPQlyjzM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxi683-container\",layoutDependency:layoutDependency,layoutId:\"T93HmX2of-container\",style:{rotate:19},children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(255, 86, 121)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.4885 21.3725C21.0164 16.5927 23.1145 10.9028 21.5103 6.90294C20.7315 4.96087 19.0967 3.56916 17.1687 3.13926C15.4711 2.76077 13.6161 3.14222 11.9995 4.42553C10.3829 3.14222 8.52778 2.76077 6.83026 3.13927C4.9022 3.56917 3.26747 4.96089 2.48861 6.90295C0.884469 10.9029 2.98263 16.5927 11.5106 21.3725L11.9995 21.6466L12.4885 21.3725Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"T93HmX2of\",layoutId:\"T93HmX2of\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qcxv5MbC_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cdtyec-container\",layoutDependency:layoutDependency,layoutId:\"rIiVqtwSs-container\",style:{rotate:-13},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG1,{customColor:\"rgb(254, 217, 94)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.9086 2.19626C13.1399 0.601248 10.857 0.601245 10.0883 2.19626L8.07325 6.37748C8.05819 6.40873 8.02531 6.43524 7.98153 6.44095L3.34253 7.04641C1.58779 7.27543 0.855254 9.43807 2.1633 10.6675L5.55689 13.8571C5.58454 13.8831 5.59438 13.9178 5.5885 13.9492L4.73655 18.5047C4.4065 20.2694 6.28023 21.5748 7.82594 20.7441L11.9383 18.5342C11.9755 18.5142 12.0214 18.5142 12.0585 18.5342L16.171 20.7441C17.7167 21.5748 19.5904 20.2694 19.2604 18.5047L18.4084 13.9492C18.4026 13.9178 18.4124 13.8831 18.44 13.8571L21.8336 10.6675C23.1417 9.43807 22.4091 7.27543 20.6544 7.04641L16.0154 6.44095C15.9716 6.43524 15.9387 6.40873 15.9237 6.37748L13.9086 2.19626Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"rIiVqtwSs\",layoutId:\"rIiVqtwSs\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejad11\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"In5vaBkMf\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",...addPropertyOverrides({GGoT9molh:{y:(componentViewport?.y||0)+((componentViewport?.height||71)*.4992343032159267-10)+0},kBQplAckP:{y:(componentViewport?.y||0)+((componentViewport?.height||71)*.4992343032159267-10)+0},XdgrSkftF:{y:(componentViewport?.y||0)+((componentViewport?.height||71)*.4992343032159267-10)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhexx-container\",layoutDependency:layoutDependency,layoutId:\"KtMxy0Mvs-container\",children:/*#__PURE__*/_jsx(PlusMinusIcon,{height:\"100%\",id:\"KtMxy0Mvs\",layoutId:\"KtMxy0Mvs\",style:{height:\"100%\",width:\"100%\"},variant:\"yroDmQotV\",width:\"100%\",...addPropertyOverrides({GGoT9molh:{variant:\"vmIKLyrnS\"},kBQplAckP:{variant:\"Hmdkv2M4p\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KxzLH.framer-fenzg6, .framer-KxzLH .framer-fenzg6 { display: block; }\",\".framer-KxzLH.framer-t3k90v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 22px 12px 22px; position: relative; width: min-content; }\",\".framer-KxzLH .framer-5xlktx { -webkit-user-select: none; flex: none; height: auto; max-width: 100%; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-KxzLH .framer-1cguc7c { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -6px; width: min-content; z-index: 1; }\",\".framer-KxzLH .framer-qtgvkd { flex: none; height: 25px; position: relative; width: 17px; }\",\".framer-KxzLH .framer-dxi683-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: absolute; right: -4px; top: -11px; width: 28px; z-index: 1; }\",\".framer-KxzLH .framer-1cdtyec-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: -16px; position: absolute; top: 50%; width: 28px; z-index: 1; }\",\".framer-KxzLH .framer-1ejad11 { 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: 0px; position: absolute; right: -32px; top: 50%; width: 32px; z-index: 1; }\",\".framer-KxzLH .framer-1fhexx-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KxzLH.framer-t3k90v, .framer-KxzLH .framer-1cguc7c, .framer-KxzLH .framer-1ejad11 { gap: 0px; } .framer-KxzLH.framer-t3k90v > *, .framer-KxzLH .framer-1cguc7c > *, .framer-KxzLH .framer-1ejad11 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KxzLH.framer-t3k90v > :first-child, .framer-KxzLH .framer-1cguc7c > :first-child, .framer-KxzLH .framer-1ejad11 > :first-child { margin-left: 0px; } .framer-KxzLH.framer-t3k90v > :last-child, .framer-KxzLH .framer-1cguc7c > :last-child, .framer-KxzLH .framer-1ejad11 > :last-child { margin-right: 0px; } }\",\".framer-KxzLH.framer-v-6pmzn2.framer-t3k90v, .framer-KxzLH.framer-v-w48y7k.framer-t3k90v, .framer-KxzLH.framer-v-1rk08tk.framer-t3k90v { min-width: 200px; }\",\".framer-KxzLH.framer-v-6pmzn2 .framer-1cguc7c, .framer-KxzLH.framer-v-w48y7k .framer-1cguc7c, .framer-KxzLH.framer-v-1rk08tk .framer-1cguc7c { bottom: -1px; left: -6px; right: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 375\n * @framerIntrinsicWidth 61.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"XdgrSkftF\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"kBQplAckP\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"200px\",null,null,null]},\"GGoT9molh\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"200px\",null,null,null]}}}\n * @framerVariables {\"BgAQWE9JZ\":\"message\",\"ZowNLHVI9\":\"ear\",\"btPQlyjzM\":\"heart\",\"qcxv5MbC_\":\"star\",\"Ig9Oen9_Q\":\"showAnswer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBwfi0LEWP=withCSS(Component,css,\"framer-KxzLH\");export default FramerBwfi0LEWP;FramerBwfi0LEWP.displayName=\"Message\";FramerBwfi0LEWP.defaultProps={height:375,width:61.5};addPropertyControls(FramerBwfi0LEWP,{variant:{options:[\"X3YHFCGW_\",\"XdgrSkftF\",\"kBQplAckP\",\"GGoT9molh\"],optionTitles:[\"Blue\",\"Grey\",\"Grey Hover\",\"Grey Active\"],title:\"Variant\",type:ControlType.Enum},BgAQWE9JZ:{defaultValue:\"What is Lumos House?\",displayTextArea:false,title:\"Message\",type:ControlType.String},ZowNLHVI9:{defaultValue:true,title:\"Ear\",type:ControlType.Boolean},btPQlyjzM:{defaultValue:false,title:\"Heart\",type:ControlType.Boolean},qcxv5MbC_:{defaultValue:false,title:\"Star\",type:ControlType.Boolean},Ig9Oen9_Q:{title:\"Show Answer\",type:ControlType.EventHandler}});addFonts(FramerBwfi0LEWP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SVG1Fonts,...PlusMinusIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBwfi0LEWP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XdgrSkftF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"kBQplAckP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]},\\\"GGoT9molh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"200px\\\",null,null,null]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"BgAQWE9JZ\\\":\\\"message\\\",\\\"ZowNLHVI9\\\":\\\"ear\\\",\\\"btPQlyjzM\\\":\\\"heart\\\",\\\"qcxv5MbC_\\\":\\\"star\\\",\\\"Ig9Oen9_Q\\\":\\\"showAnswer\\\"}\",\"framerIntrinsicHeight\":\"375\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"61.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Bwfi0LEWP.map", "// Generated by Framer (c563d2c)\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 Message1 from\"https://framerusercontent.com/modules/62SSajO9Ech5w2u3OHiw/GV8Y8Wu4CkbESCuresYZ/iPRzNdivE.js\";import Message from\"https://framerusercontent.com/modules/SMAty54DjkeY4sjiVCke/mAr5BaZpiRNDbIpztBuw/Bwfi0LEWP.js\";const MessageFonts=getFonts(Message);const Message1Fonts=getFonts(Message1);const cycleOrder=[\"ngXN_Gq6U\",\"SoFcNnxDE\"];const serializationHash=\"framer-Xd5xD\";const variantClassNames={ngXN_Gq6U:\"framer-v-tnidgd\",SoFcNnxDE:\"framer-v-fpeqax\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Only Question\":\"ngXN_Gq6U\",\"Show Answer\":\"SoFcNnxDE\"};const getProps=({answer,ear,heart,height,id,question,star,width,...props})=>{return{...props,egOUrKnhM:answer??props.egOUrKnhM??\"What if I don't like it?\",GP_AYe5lG:heart??props.GP_AYe5lG,qc0l7nqoz:question??props.qc0l7nqoz??\"What if I don't like it?\",U2IrYA1fw:ear??props.U2IrYA1fw??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"ngXN_Gq6U\",WwQohTRDI:star??props.WwQohTRDI};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qc0l7nqoz,U2IrYA1fw,GP_AYe5lG,WwQohTRDI,egOUrKnhM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ngXN_Gq6U\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1h6rcj1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ngXN_Gq6U\");});const Ig9Oen9_Qkmf9ka=activeVariantCallback(async(...args)=>{setVariant(\"SoFcNnxDE\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tnidgd\",className,classNames),\"data-framer-name\":\"Only Question\",layoutDependency:layoutDependency,layoutId:\"ngXN_Gq6U\",ref:ref??ref1,style:{...style},...addPropertyOverrides({SoFcNnxDE:{\"data-framer-name\":\"Show Answer\",\"data-highlight\":true,onTap:onTap1h6rcj1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgb5wx\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"b_z6UQhOX\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:351,width:\"70%\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jzlqbj-container\",layoutDependency:layoutDependency,layoutId:\"eBpI5exJp-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:qc0l7nqoz,btPQlyjzM:GP_AYe5lG,height:\"100%\",id:\"eBpI5exJp\",Ig9Oen9_Q:Ig9Oen9_Qkmf9ka,layoutId:\"eBpI5exJp\",qcxv5MbC_:WwQohTRDI,style:{maxWidth:\"100%\"},variant:\"XdgrSkftF\",width:\"100%\",ZowNLHVI9:U2IrYA1fw,...addPropertyOverrides({SoFcNnxDE:{Ig9Oen9_Q:undefined,variant:\"GGoT9molh\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpnmr6\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"IztFJvlLS\",style:{filter:\"blur(8px)\",opacity:0,scale:.9,WebkitFilter:\"blur(8px)\"},variants:{SoFcNnxDE:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:351,width:\"70%\",y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({SoFcNnxDE:{y:(componentViewport?.y||0)+0+355+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-30gwi0-container\",layoutDependency:layoutDependency,layoutId:\"D4UYlg9NA-container\",children:/*#__PURE__*/_jsx(Message1,{BgAQWE9JZ:egOUrKnhM,btPQlyjzM:false,height:\"100%\",id:\"D4UYlg9NA\",layoutId:\"D4UYlg9NA\",qcxv5MbC_:false,style:{maxWidth:\"100%\"},variant:\"PUeNxFrW8\",width:\"100%\",ZowNLHVI9:true})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Xd5xD.framer-1x75zxf, .framer-Xd5xD .framer-1x75zxf { display: block; }\",\".framer-Xd5xD.framer-tnidgd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-Xd5xD .framer-mgb5wx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Xd5xD .framer-jzlqbj-container, .framer-Xd5xD .framer-30gwi0-container { flex: none; height: auto; max-width: 70%; position: relative; width: auto; }\",\".framer-Xd5xD .framer-1mpnmr6 { 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; left: 0px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Xd5xD.framer-tnidgd, .framer-Xd5xD .framer-mgb5wx, .framer-Xd5xD .framer-1mpnmr6 { gap: 0px; } .framer-Xd5xD.framer-tnidgd > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Xd5xD.framer-tnidgd > :first-child { margin-top: 0px; } .framer-Xd5xD.framer-tnidgd > :last-child { margin-bottom: 0px; } .framer-Xd5xD .framer-mgb5wx > *, .framer-Xd5xD .framer-1mpnmr6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Xd5xD .framer-mgb5wx > :first-child, .framer-Xd5xD .framer-1mpnmr6 > :first-child { margin-left: 0px; } .framer-Xd5xD .framer-mgb5wx > :last-child, .framer-Xd5xD .framer-1mpnmr6 > :last-child { margin-right: 0px; } }\",\".framer-Xd5xD.framer-v-fpeqax.framer-tnidgd { cursor: pointer; }\",\".framer-Xd5xD.framer-v-fpeqax .framer-1mpnmr6 { left: unset; position: relative; right: unset; top: unset; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47.5\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SoFcNnxDE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qc0l7nqoz\":\"question\",\"U2IrYA1fw\":\"ear\",\"GP_AYe5lG\":\"heart\",\"WwQohTRDI\":\"star\",\"egOUrKnhM\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroIgfqBTOS=withCSS(Component,css,\"framer-Xd5xD\");export default FrameroIgfqBTOS;FrameroIgfqBTOS.displayName=\"Question Row\";FrameroIgfqBTOS.defaultProps={height:47.5,width:600};addPropertyControls(FrameroIgfqBTOS,{variant:{options:[\"ngXN_Gq6U\",\"SoFcNnxDE\"],optionTitles:[\"Only Question\",\"Show Answer\"],title:\"Variant\",type:ControlType.Enum},qc0l7nqoz:{defaultValue:\"What if I don't like it?\",displayTextArea:false,title:\"Question\",type:ControlType.String},U2IrYA1fw:{defaultValue:true,title:\"Ear\",type:ControlType.Boolean},GP_AYe5lG:{defaultValue:false,title:\"Heart\",type:ControlType.Boolean},WwQohTRDI:{defaultValue:false,title:\"Star\",type:ControlType.Boolean},egOUrKnhM:{defaultValue:\"What if I don't like it?\",displayTextArea:false,title:\"Answer\",type:ControlType.String}});addFonts(FrameroIgfqBTOS,[{explicitInter:true,fonts:[]},...MessageFonts,...Message1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroIgfqBTOS\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"qc0l7nqoz\\\":\\\"question\\\",\\\"U2IrYA1fw\\\":\\\"ear\\\",\\\"GP_AYe5lG\\\":\\\"heart\\\",\\\"WwQohTRDI\\\":\\\"star\\\",\\\"egOUrKnhM\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SoFcNnxDE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"47.5\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import QuestionRow from\"https://framerusercontent.com/modules/xWJxvnHUUOLeDAE6EUgc/ObcOIscoznCzefmiYQLy/oIgfqBTOS.js\";const QuestionRowFonts=getFonts(QuestionRow);const serializationHash=\"framer-MOvWg\";const variantClassNames={xWXX3lJKo:\"framer-v-ud3zm1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"xWXX3lJKo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ud3zm1\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"xWXX3lJKo\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-se22ig\",\"data-framer-name\":\"Timestamp\",layoutDependency:layoutDependency,layoutId:\"AzVdUVwmI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90)))\"},children:\"From FAQ Planet, 9:41 AM\"})}),className:\"framer-10ygg9o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sF3v91m6u\",style:{\"--extracted-r6o4lv\":\"var(--token-82b5832e-a0cf-4abf-84b4-daf77b132a71, rgb(81, 86, 90))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||316)-0-353)/2+78+8),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kxbs13-container\",layoutDependency:layoutDependency,layoutId:\"wXAiPeIMq-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Lumos House is an event series for founders, investors, and operators taking place in a private mansion. The next one will take place in Austin from March 8 to 11.\",GP_AYe5lG:true,height:\"100%\",id:\"wXAiPeIMq\",layoutId:\"wXAiPeIMq\",qc0l7nqoz:\"What is Lumos House?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"ngXN_Gq6U\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||316)-0-353)/2+125+16),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-164ngwl-container\",layoutDependency:layoutDependency,layoutId:\"L8lCpJL5b-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Yes! Admittance to each event is free but requires an application. Applications are carefully reviewed to ensure they meet the event\u2019s standards.\",GP_AYe5lG:false,height:\"100%\",id:\"L8lCpJL5b\",layoutId:\"L8lCpJL5b\",qc0l7nqoz:\"Is it free to attend?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"ngXN_Gq6U\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||316)-0-353)/2+172+24),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ls3iw3-container\",layoutDependency:layoutDependency,layoutId:\"jR612drKH-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Applications are accepted on a rolling basis up until one week before the event date. We appreciate your patience as we review all applications.\",GP_AYe5lG:false,height:\"100%\",id:\"jR612drKH\",layoutId:\"jR612drKH\",qc0l7nqoz:\"When will I find out if I\u2019m accepted?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"ngXN_Gq6U\",width:\"100%\",WwQohTRDI:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||316)-0-353)/2+219+32),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j0x1t7-container\",layoutDependency:layoutDependency,layoutId:\"SWEJ188Lb-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Each event requires its own application. Acceptance into one event does not guarantee acceptance into another. Be sure to apply for each event you'd like to attend.\",GP_AYe5lG:false,height:\"100%\",id:\"SWEJ188Lb\",layoutId:\"SWEJ188Lb\",qc0l7nqoz:\"Do I have access to all Lumos House events if I\u2019m accepted?\",style:{width:\"100%\"},U2IrYA1fw:true,variant:\"ngXN_Gq6U\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||316)-0-353)/2+266+40),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ubp9yk-container\",layoutDependency:layoutDependency,layoutId:\"tsWMkilRm-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Our typical sponsors are service providers and tech companies looking to reach the founder, CEO, and decision-maker audience. We require potential sponsors to underdo a brief vetting process to ensure they meet our curation bar.\",GP_AYe5lG:false,height:\"100%\",id:\"tsWMkilRm\",layoutId:\"tsWMkilRm\",qc0l7nqoz:\"How do event sponsorships work?\",style:{width:\"100%\"},U2IrYA1fw:true,variant:\"ngXN_Gq6U\",width:\"100%\",WwQohTRDI:false})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MOvWg.framer-1ea1i8x, .framer-MOvWg .framer-1ea1i8x { display: block; }\",\".framer-MOvWg.framer-ud3zm1 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 490px; overflow: visible; padding: 0px; position: relative; width: 490px; }\",\".framer-MOvWg .framer-se22ig { 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 22px 0px 22px; position: relative; width: 100%; }\",\".framer-MOvWg .framer-10ygg9o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MOvWg .framer-1kxbs13-container, .framer-MOvWg .framer-164ngwl-container, .framer-MOvWg .framer-1ls3iw3-container, .framer-MOvWg .framer-1j0x1t7-container, .framer-MOvWg .framer-1ubp9yk-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MOvWg.framer-ud3zm1, .framer-MOvWg .framer-se22ig { gap: 0px; } .framer-MOvWg.framer-ud3zm1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-MOvWg.framer-ud3zm1 > :first-child, .framer-MOvWg .framer-se22ig > :first-child { margin-top: 0px; } .framer-MOvWg.framer-ud3zm1 > :last-child, .framer-MOvWg .framer-se22ig > :last-child { margin-bottom: 0px; } .framer-MOvWg .framer-se22ig > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 316\n * @framerIntrinsicWidth 490\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"490px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlSb4RUraK=withCSS(Component,css,\"framer-MOvWg\");export default FramerlSb4RUraK;FramerlSb4RUraK.displayName=\"FAQ\";FramerlSb4RUraK.defaultProps={height:316,width:490};addFonts(FramerlSb4RUraK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...QuestionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlSb4RUraK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"316\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"490px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"490\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "withFitContent", "Component", "props", "newStyle", "p", "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", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Framersy0I0KU3j", "withCSS", "sy0I0KU3j_default", "addPropertyControls", "ControlType", "addFonts", "SVG1Fonts", "getFonts", "SVG_default", "PlusMinusIconFonts", "sy0I0KU3j_default", "MotionDivWithFitContent", "withFitContent", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "ear", "heart", "height", "id", "message", "showAnswer", "star", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BgAQWE9JZ", "ZowNLHVI9", "btPQlyjzM", "qcxv5MbC_", "Ig9Oen9_Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapiswks5", "args", "onMouseEnterojlrn7", "onTap35280e", "onMouseLeave171kogg", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FrameriPRzNdivE", "withCSS", "iPRzNdivE_default", "addPropertyControls", "ControlType", "addFonts", "SVG1Fonts", "getFonts", "SVG_default", "PlusMinusIconFonts", "sy0I0KU3j_default", "MotionDivWithFitContent", "withFitContent", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "ear", "heart", "height", "id", "message", "showAnswer", "star", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BgAQWE9JZ", "ZowNLHVI9", "btPQlyjzM", "qcxv5MbC_", "Ig9Oen9_Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapiswks5", "args", "onMouseEntergd1q7x", "onTap1hjjt9r", "onMouseLeave1i7j8yo", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerBwfi0LEWP", "withCSS", "Bwfi0LEWP_default", "addPropertyControls", "ControlType", "addFonts", "MessageFonts", "getFonts", "Bwfi0LEWP_default", "Message1Fonts", "iPRzNdivE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "ear", "heart", "height", "id", "question", "star", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qc0l7nqoz", "U2IrYA1fw", "GP_AYe5lG", "WwQohTRDI", "egOUrKnhM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1h6rcj1", "args", "Ig9Oen9_Qkmf9ka", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FrameroIgfqBTOS", "withCSS", "oIgfqBTOS_default", "addPropertyControls", "ControlType", "addFonts", "QuestionRowFonts", "getFonts", "oIgfqBTOS_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "oIgfqBTOS_default", "css", "FramerlSb4RUraK", "withCSS", "lSb4RUraK_default", "addFonts", "QuestionRowFonts"]
}
