{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/5egwwcVhnVSjigRKf0GV/CJI2zqzdStGOcROBTNUZ/BreakWord.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/qv6ME5iAGhQXu7YEHOPJ/SVG.js", "ssg:https://framerusercontent.com/modules/XOgrUKP2DnrYfzhcipRF/JXCnkfc3Biwfwp4JhWWV/sy0I0KU3j.js", "ssg:https://framerusercontent.com/modules/KJNuWWC4vIWj2EzVoh5B/0clxae9LHGoeL25tg4xo/DLp865ZFb.js", "ssg:https://framerusercontent.com/modules/aVHp0PRD3WrKy8Dklsyg/spQl9vSYfPsJhsoXQnvY/ogHjD7wm5.js", "ssg:https://framerusercontent.com/modules/duujr4eBqJRzgFNSsgkW/Eke3q8WhuBH6QlnOZwCZ/gxJpPUsxt.js"],
  "sourcesContent": ["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", "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", "// 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 (38f2e7f)\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=[\"xtrxvou4Q\",\"p21TY0skp\",\"DCGR_vl05\",\"g_TbQBKad\"];const serializationHash=\"framer-8bvHY\";const variantClassNames={DCGR_vl05:\"framer-v-1kmf5rj\",g_TbQBKad:\"framer-v-kesjeu\",p21TY0skp:\"framer-v-p80avj\",xtrxvou4Q:\"framer-v-1d4ve4q\"};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\":\"g_TbQBKad\",\"Grey Hover\":\"DCGR_vl05\",Blue:\"xtrxvou4Q\",Grey:\"p21TY0skp\"};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:\"xtrxvou4Q\",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:\"xtrxvou4Q\",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 onMouseEnter1ic6yzc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"DCGR_vl05\");});const onTap1deb4w6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}setVariant(\"g_TbQBKad\");});const onMouseLeave1hzgxbp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"p21TY0skp\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"p21TY0skp\",\"DCGR_vl05\",\"g_TbQBKad\"].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-1d4ve4q\",className,classNames),\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"xtrxvou4Q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 120, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{DCGR_vl05:{backgroundColor:\"rgb(255, 255, 255)\"},g_TbQBKad:{backgroundColor:\"rgb(255, 255, 255)\"},p21TY0skp:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({DCGR_vl05:{\"data-framer-name\":\"Grey Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave1hzgxbp,onTap:onTap1deb4w6},g_TbQBKad:{\"data-framer-name\":\"Grey Active\"},p21TY0skp:{\"data-framer-name\":\"Grey\",\"data-highlight\":true,onMouseEnter:onMouseEnter1ic6yzc,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-1fs1wjs\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"O90GtG4FM\",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:{DCGR_vl05:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"},g_TbQBKad:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DCGR_vl05:{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?\"})})},g_TbQBKad:{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?\"})})},p21TY0skp:{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\"},children:\"What if I don't like it?\"})})}},baseVariant,gestureVariant)}),ZowNLHVI9&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hasqr\",\"data-framer-name\":\"Ear\",layoutDependency:layoutDependency,layoutId:\"wm1UAEGc_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3ncf4h\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"diYon5WZc\",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({DCGR_vl05:{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(255, 255, 255)\"></path></svg>',svgContentId:10454259826},g_TbQBKad:{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(255, 255, 255)\"></path></svg>',svgContentId:10454259826},p21TY0skp:{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(255, 255, 255)\"></path></svg>',svgContentId:10454259826}},baseVariant,gestureVariant)})}),btPQlyjzM&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3yt1s5-container\",layoutDependency:layoutDependency,layoutId:\"vZ7G3Jr5E-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:\"vZ7G3Jr5E\",layoutId:\"vZ7G3Jr5E\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qcxv5MbC_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rlcdf2-container\",layoutDependency:layoutDependency,layoutId:\"Yzd4ULX56-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:\"Yzd4ULX56\",layoutId:\"Yzd4ULX56\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gouzm5\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"eS8BFo2a3\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",...addPropertyOverrides({DCGR_vl05:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||351.5)*.4992343032159267-10)+0},g_TbQBKad:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||351.5)*.4992343032159267-10)+0},p21TY0skp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||351.5)*.4992343032159267-10)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rm9mnb-container\",layoutDependency:layoutDependency,layoutId:\"cHUof9sfR-container\",children:/*#__PURE__*/_jsx(PlusMinusIcon,{height:\"100%\",id:\"cHUof9sfR\",layoutId:\"cHUof9sfR\",style:{height:\"100%\",width:\"100%\"},variant:\"yroDmQotV\",width:\"100%\",...addPropertyOverrides({DCGR_vl05:{variant:\"Hmdkv2M4p\"},g_TbQBKad:{variant:\"vmIKLyrnS\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8bvHY.framer-115st2k, .framer-8bvHY .framer-115st2k { display: block; }\",\".framer-8bvHY.framer-1d4ve4q { 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-8bvHY .framer-1fs1wjs { -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-8bvHY .framer-2hasqr { 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-8bvHY .framer-3ncf4h { flex: none; height: 25px; position: relative; width: 17px; }\",\".framer-8bvHY .framer-3yt1s5-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-8bvHY .framer-rlcdf2-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-8bvHY .framer-1gouzm5 { 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-8bvHY .framer-1rm9mnb-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8bvHY.framer-1d4ve4q, .framer-8bvHY .framer-2hasqr, .framer-8bvHY .framer-1gouzm5 { gap: 0px; } .framer-8bvHY.framer-1d4ve4q > *, .framer-8bvHY .framer-2hasqr > *, .framer-8bvHY .framer-1gouzm5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8bvHY.framer-1d4ve4q > :first-child, .framer-8bvHY .framer-2hasqr > :first-child, .framer-8bvHY .framer-1gouzm5 > :first-child { margin-left: 0px; } .framer-8bvHY.framer-1d4ve4q > :last-child, .framer-8bvHY .framer-2hasqr > :last-child, .framer-8bvHY .framer-1gouzm5 > :last-child { margin-right: 0px; } }\",\".framer-8bvHY.framer-v-p80avj .framer-2hasqr, .framer-8bvHY.framer-v-1kmf5rj .framer-2hasqr, .framer-8bvHY.framer-v-kesjeu .framer-2hasqr { 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\"]},\"p21TY0skp\":{\"layout\":[\"auto\",\"auto\"]},\"DCGR_vl05\":{\"layout\":[\"auto\",\"auto\"]},\"g_TbQBKad\":{\"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 FramerDLp865ZFb=withCSS(Component,css,\"framer-8bvHY\");export default FramerDLp865ZFb;FramerDLp865ZFb.displayName=\"Message\";FramerDLp865ZFb.defaultProps={height:351.5,width:61.5};addPropertyControls(FramerDLp865ZFb,{variant:{options:[\"xtrxvou4Q\",\"p21TY0skp\",\"DCGR_vl05\",\"g_TbQBKad\"],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(FramerDLp865ZFb,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDLp865ZFb\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"p21TY0skp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DCGR_vl05\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g_TbQBKad\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"351.5\",\"framerVariables\":\"{\\\"BgAQWE9JZ\\\":\\\"message\\\",\\\"ZowNLHVI9\\\":\\\"ear\\\",\\\"btPQlyjzM\\\":\\\"heart\\\",\\\"qcxv5MbC_\\\":\\\"star\\\",\\\"Ig9Oen9_Q\\\":\\\"showAnswer\\\"}\",\"framerIntrinsicWidth\":\"61.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DLp865ZFb.map", "// Generated by Framer (2c4b293)\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 Message from\"https://framerusercontent.com/modules/KJNuWWC4vIWj2EzVoh5B/0clxae9LHGoeL25tg4xo/DLp865ZFb.js\";const MessageFonts=getFonts(Message);const cycleOrder=[\"gd3k6XQD4\",\"XCUCvH47f\"];const serializationHash=\"framer-EYbQX\";const variantClassNames={gd3k6XQD4:\"framer-v-1b6dlsk\",XCUCvH47f:\"framer-v-89rq8a\"};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:30,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={\"Only Question\":\"gd3k6XQD4\",\"Show Answer\":\"XCUCvH47f\"};const getProps=({answer,ear,heart,height,id,question,star,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,egOUrKnhM:(_ref=answer!==null&&answer!==void 0?answer:props.egOUrKnhM)!==null&&_ref!==void 0?_ref:\"What if I don't like it?\",GP_AYe5lG:heart!==null&&heart!==void 0?heart:props.GP_AYe5lG,qc0l7nqoz:(_ref1=question!==null&&question!==void 0?question:props.qc0l7nqoz)!==null&&_ref1!==void 0?_ref1:\"What if I don't like it?\",U2IrYA1fw:(_ref2=ear!==null&&ear!==void 0?ear:props.U2IrYA1fw)!==null&&_ref2!==void 0?_ref2:true,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"gd3k6XQD4\",WwQohTRDI:star!==null&&star!==void 0?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:\"gd3k6XQD4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcbh7ds=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"gd3k6XQD4\");});const Ig9Oen9_Qph9bme=activeVariantCallback(async(...args)=>{setVariant(\"XCUCvH47f\");});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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1b6dlsk\",className,classNames),\"data-framer-name\":\"Only Question\",layoutDependency:layoutDependency,layoutId:\"gd3k6XQD4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({XCUCvH47f:{\"data-framer-name\":\"Show Answer\",\"data-highlight\":true,onTap:onTapcbh7ds}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lbda2a\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"mqv90wTMw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:351,width:\"70%\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wwxnbz-container\",layoutDependency:layoutDependency,layoutId:\"PTdOOfOlF-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:qc0l7nqoz,btPQlyjzM:GP_AYe5lG,height:\"100%\",id:\"PTdOOfOlF\",Ig9Oen9_Q:Ig9Oen9_Qph9bme,layoutId:\"PTdOOfOlF\",qcxv5MbC_:WwQohTRDI,style:{maxWidth:\"100%\"},variant:\"p21TY0skp\",width:\"100%\",ZowNLHVI9:U2IrYA1fw,...addPropertyOverrides({XCUCvH47f:{Ig9Oen9_Q:undefined,variant:\"g_TbQBKad\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m5z6rs\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"H2P_tacwE\",style:{filter:\"blur(8px)\",opacity:0,scale:.9,WebkitFilter:\"blur(8px)\"},variants:{XCUCvH47f:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:351,width:\"70%\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,...addPropertyOverrides({XCUCvH47f:{width:`min(513px, ${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"})`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+355+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxugfy-container\",layoutDependency:layoutDependency,layoutId:\"aT3ShI06p-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:egOUrKnhM,btPQlyjzM:false,height:\"100%\",id:\"aT3ShI06p\",layoutId:\"aT3ShI06p\",qcxv5MbC_:false,style:{maxWidth:\"100%\"},variant:\"xtrxvou4Q\",width:\"100%\",ZowNLHVI9:true,...addPropertyOverrides({XCUCvH47f:{style:{maxWidth:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EYbQX.framer-ak57d4, .framer-EYbQX .framer-ak57d4 { display: block; }\",\".framer-EYbQX.framer-1b6dlsk { 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-EYbQX .framer-1lbda2a { 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-EYbQX .framer-1wwxnbz-container, .framer-EYbQX .framer-1wxugfy-container { flex: none; height: auto; max-width: 70%; position: relative; width: auto; }\",\".framer-EYbQX .framer-m5z6rs { 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-EYbQX.framer-1b6dlsk, .framer-EYbQX .framer-1lbda2a, .framer-EYbQX .framer-m5z6rs { gap: 0px; } .framer-EYbQX.framer-1b6dlsk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-EYbQX.framer-1b6dlsk > :first-child { margin-top: 0px; } .framer-EYbQX.framer-1b6dlsk > :last-child { margin-bottom: 0px; } .framer-EYbQX .framer-1lbda2a > *, .framer-EYbQX .framer-m5z6rs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EYbQX .framer-1lbda2a > :first-child, .framer-EYbQX .framer-m5z6rs > :first-child { margin-left: 0px; } .framer-EYbQX .framer-1lbda2a > :last-child, .framer-EYbQX .framer-m5z6rs > :last-child { margin-right: 0px; } }\",\".framer-EYbQX.framer-v-89rq8a.framer-1b6dlsk { cursor: pointer; }\",\".framer-EYbQX.framer-v-89rq8a .framer-m5z6rs { left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-EYbQX.framer-v-89rq8a .framer-1wxugfy-container { max-width: 100%; width: 513px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XCUCvH47f\":{\"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 FramerogHjD7wm5=withCSS(Component,css,\"framer-EYbQX\");export default FramerogHjD7wm5;FramerogHjD7wm5.displayName=\"Question Row\";FramerogHjD7wm5.defaultProps={height:47,width:600};addPropertyControls(FramerogHjD7wm5,{variant:{options:[\"gd3k6XQD4\",\"XCUCvH47f\"],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(FramerogHjD7wm5,[{explicitInter:true,fonts:[]},...MessageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerogHjD7wm5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XCUCvH47f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"47\",\"framerVariables\":\"{\\\"qc0l7nqoz\\\":\\\"question\\\",\\\"U2IrYA1fw\\\":\\\"ear\\\",\\\"GP_AYe5lG\\\":\\\"heart\\\",\\\"WwQohTRDI\\\":\\\"star\\\",\\\"egOUrKnhM\\\":\\\"answer\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,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/aVHp0PRD3WrKy8Dklsyg/spQl9vSYfPsJhsoXQnvY/ogHjD7wm5.js\";const QuestionRowFonts=getFonts(QuestionRow);const cycleOrder=[\"GmMfLTe5X\"];const serializationHash=\"framer-ZwsE6\";const variantClassNames={GmMfLTe5X:\"framer-v-py8ylu\"};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:30,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=({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({cycleOrder,defaultVariant:\"GmMfLTe5X\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-py8ylu\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"GmMfLTe5X\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-267)/2+0+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9f7uxb-container\",layoutDependency:layoutDependency,layoutId:\"e6OURbczR-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Outdoor Classroom is a dedicated space where participants engage in hands-on, experiential learning in a natural environment. Unlike traditional classrooms, these settings use the outdoors to inspire curiosity, creativity, and a deeper understanding of the natural world through activities that integrate academic subjects with outdoor experiences.\",GP_AYe5lG:true,height:\"100%\",id:\"e6OURbczR\",layoutId:\"e6OURbczR\",qc0l7nqoz:\"What is  Outdoor Classroom?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"gd3k6XQD4\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-267)/2+47+8),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s5282r-container\",layoutDependency:layoutDependency,layoutId:\"XXGKYHu8a-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"We offer a wide range of outdoor experiential learning programs tailored to various age groups and educational goals. These programs include nature exploration, environmental science, team-building activities, survival skills, and outdoor arts and crafts. Each program is designed to enhance students\u2019 connection with nature while reinforcing academic concepts in a practical, engaging way.\",GP_AYe5lG:false,height:\"100%\",id:\"XXGKYHu8a\",layoutId:\"XXGKYHu8a\",qc0l7nqoz:\"What types of programs do you offer?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"gd3k6XQD4\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-267)/2+94+16),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e707av-container\",layoutDependency:layoutDependency,layoutId:\"leKkxEAMt-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Safety is our top priority in every program we offer. All activities are carefully planned and supervised by experienced educators who are trained in first aid and outdoor safety. We conduct thorough risk assessments and ensure that all participants are briefed on safety protocols. Our programs also include the use of appropriate safety gear, and we maintain a low student-to-instructor ratio to provide close supervision at all times.\",GP_AYe5lG:false,height:\"100%\",id:\"leKkxEAMt\",layoutId:\"leKkxEAMt\",qc0l7nqoz:\"How do you ensure safety during the programs?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"gd3k6XQD4\",width:\"100%\",WwQohTRDI:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-267)/2+141+24),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p8fc3m-container\",layoutDependency:layoutDependency,layoutId:\"gx3mkqEy6-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Our programs foster critical thinking, problem-solving, and teamwork by immersing students in real-world scenarios. The outdoor setting encourages physical activity, creativity, and a sense of environmental stewardship. These experiences not only complement traditional learning but also help students develop a lifelong appreciation for nature and the environment.\",GP_AYe5lG:false,height:\"100%\",id:\"gx3mkqEy6\",layoutId:\"gx3mkqEy6\",qc0l7nqoz:\"How do Outdoor Classroom programs benefit students?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"gd3k6XQD4\",width:\"100%\",WwQohTRDI:false})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||362)-0-267)/2+188+32),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ptbrf4-container\",layoutDependency:layoutDependency,layoutId:\"thaFUF1et-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:\"Our programs are designed to cater to a wide range of age groups. However, some activities may have specific age recommendations or restrictions to ensure safety and appropriate levels of challenge. We categorize our programs by age groups to match the developmental needs and abilities of participants, and any specific age requirements will be clearly stated in the program\\xa0descriptions.\",GP_AYe5lG:false,height:\"100%\",id:\"thaFUF1et\",layoutId:\"thaFUF1et\",qc0l7nqoz:\"Are there any age restrictions for participating in the programs?\",style:{width:\"100%\"},U2IrYA1fw:true,variant:\"gd3k6XQD4\",width:\"100%\",WwQohTRDI:false})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZwsE6.framer-1pbqh9o, .framer-ZwsE6 .framer-1pbqh9o { display: block; }\",\".framer-ZwsE6.framer-py8ylu { 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-ZwsE6 .framer-9f7uxb-container, .framer-ZwsE6 .framer-1s5282r-container, .framer-ZwsE6 .framer-1e707av-container, .framer-ZwsE6 .framer-p8fc3m-container, .framer-ZwsE6 .framer-1ptbrf4-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZwsE6.framer-py8ylu { gap: 0px; } .framer-ZwsE6.framer-py8ylu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZwsE6.framer-py8ylu > :first-child { margin-top: 0px; } .framer-ZwsE6.framer-py8ylu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 362\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 FramergxJpPUsxt=withCSS(Component,css,\"framer-ZwsE6\");export default FramergxJpPUsxt;FramergxJpPUsxt.displayName=\"FAQ\";FramergxJpPUsxt.defaultProps={height:362,width:490};addFonts(FramergxJpPUsxt,[{explicitInter:true,fonts:[]},...QuestionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergxJpPUsxt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"490\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"490px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"362\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["withFitContent", "Component", "props", "newStyle", "p", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_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", "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", "onMouseEnter1ic6yzc", "onTap1deb4w6", "onMouseLeave1hzgxbp", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerDLp865ZFb", "withCSS", "DLp865ZFb_default", "addPropertyControls", "ControlType", "addFonts", "MessageFonts", "getFonts", "DLp865ZFb_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", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "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", "onTapcbh7ds", "args", "Ig9Oen9_Qph9bme", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerogHjD7wm5", "withCSS", "ogHjD7wm5_default", "addPropertyControls", "ControlType", "addFonts", "QuestionRowFonts", "getFonts", "ogHjD7wm5_default", "cycleOrder", "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", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "ogHjD7wm5_default", "css", "FramergxJpPUsxt", "withCSS", "gxJpPUsxt_default", "addFonts", "QuestionRowFonts"]
}
