{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/5egwwcVhnVSjigRKf0GV/CJI2zqzdStGOcROBTNUZ/BreakWord.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js", "ssg:https://framerusercontent.com/modules/XOgrUKP2DnrYfzhcipRF/JXCnkfc3Biwfwp4JhWWV/sy0I0KU3j.js", "ssg:https://framerusercontent.com/modules/x3mmumLVh9jd0yYrO8Fg/FJBqZwm3dr7WveyY2txT/X6SY_Ni_q.js", "ssg:https://framerusercontent.com/modules/Vd5SdY2FjVKMG2PmBMt1/IKOxUhbhYgeJQLHbjivy/FB9aw8xbQ.js", "ssg:https://framerusercontent.com/modules/oRYBdai1Ki6Vlw1XKSl2/U294k52H9QoM0QRdYeqF/TM8BKlfGZ-0.js", "ssg:https://framerusercontent.com/modules/oRYBdai1Ki6Vlw1XKSl2/U294k52H9QoM0QRdYeqF/TM8BKlfGZ.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://frameruni.link/cc).\"},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\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__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 (46bb7e9)\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/OobIpExjjda7YDjHO9YN/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=[\"dwsijaARC\",\"D6iGEsGOX\",\"I5DFxQOEI\",\"JuuG0qUGr\"];const serializationHash=\"framer-asvVG\";const variantClassNames={D6iGEsGOX:\"framer-v-1h0x2ug\",dwsijaARC:\"framer-v-yezeph\",I5DFxQOEI:\"framer-v-1qnmws0\",JuuG0qUGr:\"framer-v-1jfaqqy\"};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.create(React.Fragment);const humanReadableVariantMap={\"Grey Active\":\"JuuG0qUGr\",\"Grey Hover\":\"I5DFxQOEI\",Blue:\"dwsijaARC\",Grey:\"D6iGEsGOX\"};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:\"dwsijaARC\",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:\"dwsijaARC\",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 onMouseEnter1ewwyfl=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"I5DFxQOEI\");});const onTap1oi2vk4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Ig9Oen9_Q){const res=await Ig9Oen9_Q(...args);if(res===false)return false;}setVariant(\"JuuG0qUGr\");});const onMouseLeaves349xx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"D6iGEsGOX\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"D6iGEsGOX\",\"I5DFxQOEI\",\"JuuG0qUGr\"].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-yezeph\",className,classNames),\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"dwsijaARC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-0cd53201-207b-42c9-8bed-4a69b6c9d142, rgb(251, 215, 78))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{D6iGEsGOX:{backgroundColor:\"var(--token-1c112584-98be-4f36-974f-53eb3a256d5d, rgb(96, 26, 214))\"},I5DFxQOEI:{backgroundColor:\"rgb(9, 22, 42)\"},JuuG0qUGr:{backgroundColor:\"rgb(9, 22, 42)\"}},...addPropertyOverrides({D6iGEsGOX:{\"data-framer-name\":\"Grey\",\"data-highlight\":true,onMouseEnter:onMouseEnter1ewwyfl,onTap:onTapiswks5},I5DFxQOEI:{\"data-framer-name\":\"Grey Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeaves349xx,onTap:onTap1oi2vk4},JuuG0qUGr:{\"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-8952e0fa-8761-4f03-a69b-e9266ce63bf4, rgb(10, 3, 37)))\"},children:\"What if I don't like it?\"})}),className:\"framer-1z047wb\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"TiuPHSQU8\",style:{\"--extracted-r6o4lv\":\"var(--token-8952e0fa-8761-4f03-a69b-e9266ce63bf4, rgb(10, 3, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BgAQWE9JZ,variants:{D6iGEsGOX:{\"--extracted-r6o4lv\":\"var(--token-9e0047a6-e0ba-4186-bb89-fbe17daf8ed8, rgb(237, 235, 242))\"},I5DFxQOEI:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"},JuuG0qUGr:{\"--extracted-r6o4lv\":\"rgb(0, 120, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D6iGEsGOX:{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-9e0047a6-e0ba-4186-bb89-fbe17daf8ed8, rgb(237, 235, 242)))\"},children:\"What if I don't like it?\"})})},I5DFxQOEI:{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?\"})})},JuuG0qUGr:{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-s8kfmn\",\"data-framer-name\":\"Ear\",layoutDependency:layoutDependency,layoutId:\"ujJW41xoi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vp2ab5\",\"data-framer-name\":\"SVG\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WgWML0biY\",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=\"var(--token-0cd53201-207b-42c9-8bed-4a69b6c9d142, rgb(251, 215, 78)) /* {&quot;name&quot;:&quot;Yellow&quot;} */\"></path></svg>',svgContentId:9476189081,withExternalLayout:true,...addPropertyOverrides({D6iGEsGOX:{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-1c112584-98be-4f36-974f-53eb3a256d5d, rgb(96, 26, 214)) /* {&quot;name&quot;:&quot;Purple&quot;} */\"></path></svg>',svgContentId:10236482249},I5DFxQOEI:{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},JuuG0qUGr:{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-1k2xmzj-container\",layoutDependency:layoutDependency,layoutId:\"zCVIGbyGl-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:\"zCVIGbyGl\",layoutId:\"zCVIGbyGl\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qcxv5MbC_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t34bqi-container\",layoutDependency:layoutDependency,layoutId:\"Tdew8iGap-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:\"Tdew8iGap\",layoutId:\"Tdew8iGap\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgsxy3\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"BKzA_nAR4\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",...addPropertyOverrides({D6iGEsGOX:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||352)*.4992343032159267-10)+0},I5DFxQOEI:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||352)*.4992343032159267-10)+0},JuuG0qUGr:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||352)*.4992343032159267-10)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fqw8g0-container\",layoutDependency:layoutDependency,layoutId:\"Iq0TTlQJa-container\",children:/*#__PURE__*/_jsx(PlusMinusIcon,{height:\"100%\",id:\"Iq0TTlQJa\",layoutId:\"Iq0TTlQJa\",style:{height:\"100%\",width:\"100%\"},variant:\"yroDmQotV\",width:\"100%\",...addPropertyOverrides({I5DFxQOEI:{variant:\"Hmdkv2M4p\"},JuuG0qUGr:{variant:\"vmIKLyrnS\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-asvVG.framer-16dhg7s, .framer-asvVG .framer-16dhg7s { display: block; }\",\".framer-asvVG.framer-yezeph { 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-asvVG .framer-1z047wb { -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-asvVG .framer-s8kfmn { 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-asvVG .framer-vp2ab5 { flex: none; height: 25px; position: relative; width: 17px; }\",\".framer-asvVG .framer-1k2xmzj-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-asvVG .framer-t34bqi-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-asvVG .framer-mgsxy3 { 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-asvVG .framer-fqw8g0-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-asvVG.framer-yezeph, .framer-asvVG .framer-s8kfmn, .framer-asvVG .framer-mgsxy3 { gap: 0px; } .framer-asvVG.framer-yezeph > *, .framer-asvVG .framer-s8kfmn > *, .framer-asvVG .framer-mgsxy3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-asvVG.framer-yezeph > :first-child, .framer-asvVG .framer-s8kfmn > :first-child, .framer-asvVG .framer-mgsxy3 > :first-child { margin-left: 0px; } .framer-asvVG.framer-yezeph > :last-child, .framer-asvVG .framer-s8kfmn > :last-child, .framer-asvVG .framer-mgsxy3 > :last-child { margin-right: 0px; } }\",\".framer-asvVG.framer-v-1h0x2ug .framer-s8kfmn, .framer-asvVG.framer-v-1qnmws0 .framer-s8kfmn, .framer-asvVG.framer-v-1jfaqqy .framer-s8kfmn { bottom: -1px; left: -6px; right: unset; }\",\".framer-asvVG.framer-v-1h0x2ug .framer-vp2ab5 { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 352\n * @framerIntrinsicWidth 62\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"D6iGEsGOX\":{\"layout\":[\"auto\",\"auto\"]},\"I5DFxQOEI\":{\"layout\":[\"auto\",\"auto\"]},\"JuuG0qUGr\":{\"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 FramerX6SY_Ni_q=withCSS(Component,css,\"framer-asvVG\");export default FramerX6SY_Ni_q;FramerX6SY_Ni_q.displayName=\"Message\";FramerX6SY_Ni_q.defaultProps={height:352,width:62};addPropertyControls(FramerX6SY_Ni_q,{variant:{options:[\"dwsijaARC\",\"D6iGEsGOX\",\"I5DFxQOEI\",\"JuuG0qUGr\"],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(FramerX6SY_Ni_q,[{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\":\"FramerX6SY_Ni_q\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"62\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"352\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D6iGEsGOX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"I5DFxQOEI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JuuG0qUGr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"BgAQWE9JZ\\\":\\\"message\\\",\\\"ZowNLHVI9\\\":\\\"ear\\\",\\\"btPQlyjzM\\\":\\\"heart\\\",\\\"qcxv5MbC_\\\":\\\"star\\\",\\\"Ig9Oen9_Q\\\":\\\"showAnswer\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./X6SY_Ni_q.map", "// Generated by Framer (cf240c2)\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/x3mmumLVh9jd0yYrO8Fg/FJBqZwm3dr7WveyY2txT/X6SY_Ni_q.js\";const MessageFonts=getFonts(Message);const cycleOrder=[\"cLq23fDpi\",\"olKt9ZwW9\"];const serializationHash=\"framer-OB2Ko\";const variantClassNames={cLq23fDpi:\"framer-v-ccayfg\",olKt9ZwW9:\"framer-v-1j51pob\"};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.create(React.Fragment);const humanReadableVariantMap={\"Only Question\":\"cLq23fDpi\",\"Show Answer\":\"olKt9ZwW9\"};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:\"cLq23fDpi\",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:\"cLq23fDpi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapiao7tv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"cLq23fDpi\");});const Ig9Oen9_Q8yol2i=activeVariantCallback(async(...args)=>{setVariant(\"olKt9ZwW9\");});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-ccayfg\",className,classNames),\"data-framer-name\":\"Only Question\",layoutDependency:layoutDependency,layoutId:\"cLq23fDpi\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({olKt9ZwW9:{\"data-framer-name\":\"Show Answer\",\"data-highlight\":true,onTap:onTapiao7tv}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-404kv9\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"tG5jzra8T\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:352,width:\"70%\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15clz05-container\",layoutDependency:layoutDependency,layoutId:\"enktiN7FR-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:qc0l7nqoz,btPQlyjzM:GP_AYe5lG,height:\"100%\",id:\"enktiN7FR\",Ig9Oen9_Q:Ig9Oen9_Q8yol2i,layoutId:\"enktiN7FR\",qcxv5MbC_:WwQohTRDI,style:{maxWidth:\"100%\"},variant:\"D6iGEsGOX\",width:\"100%\",ZowNLHVI9:U2IrYA1fw,...addPropertyOverrides({olKt9ZwW9:{Ig9Oen9_Q:undefined,variant:\"JuuG0qUGr\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lwedux\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"eB_20RbZ8\",style:{filter:\"blur(8px)\",opacity:0,scale:.9,WebkitFilter:\"blur(8px)\"},variants:{olKt9ZwW9:{filter:\"blur(0px)\",opacity:1,scale:1,WebkitFilter:\"blur(0px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:352,width:\"70%\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,...addPropertyOverrides({olKt9ZwW9:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+356+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14vz451-container\",layoutDependency:layoutDependency,layoutId:\"XvfYfoWpF-container\",children:/*#__PURE__*/_jsx(Message,{BgAQWE9JZ:egOUrKnhM,btPQlyjzM:false,height:\"100%\",id:\"XvfYfoWpF\",layoutId:\"XvfYfoWpF\",qcxv5MbC_:false,style:{maxWidth:\"100%\"},variant:\"dwsijaARC\",width:\"100%\",ZowNLHVI9:true})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OB2Ko.framer-1ov7666, .framer-OB2Ko .framer-1ov7666 { display: block; }\",\".framer-OB2Ko.framer-ccayfg { 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-OB2Ko .framer-404kv9 { 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-OB2Ko .framer-15clz05-container, .framer-OB2Ko .framer-14vz451-container { flex: none; height: auto; max-width: 70%; position: relative; width: auto; }\",\".framer-OB2Ko .framer-lwedux { 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-OB2Ko.framer-ccayfg, .framer-OB2Ko .framer-404kv9, .framer-OB2Ko .framer-lwedux { gap: 0px; } .framer-OB2Ko.framer-ccayfg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-OB2Ko.framer-ccayfg > :first-child { margin-top: 0px; } .framer-OB2Ko.framer-ccayfg > :last-child { margin-bottom: 0px; } .framer-OB2Ko .framer-404kv9 > *, .framer-OB2Ko .framer-lwedux > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OB2Ko .framer-404kv9 > :first-child, .framer-OB2Ko .framer-lwedux > :first-child { margin-left: 0px; } .framer-OB2Ko .framer-404kv9 > :last-child, .framer-OB2Ko .framer-lwedux > :last-child { margin-right: 0px; } }\",\".framer-OB2Ko.framer-v-1j51pob.framer-ccayfg { cursor: pointer; }\",\".framer-OB2Ko.framer-v-1j51pob .framer-lwedux { left: unset; position: relative; right: unset; top: unset; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"olKt9ZwW9\":{\"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 FramerFB9aw8xbQ=withCSS(Component,css,\"framer-OB2Ko\");export default FramerFB9aw8xbQ;FramerFB9aw8xbQ.displayName=\"Question Row\";FramerFB9aw8xbQ.defaultProps={height:47,width:600};addPropertyControls(FramerFB9aw8xbQ,{variant:{options:[\"cLq23fDpi\",\"olKt9ZwW9\"],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(FramerFB9aw8xbQ,[{explicitInter:true,fonts:[]},...MessageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFB9aw8xbQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"47\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"olKt9ZwW9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"qc0l7nqoz\\\":\\\"question\\\",\\\"U2IrYA1fw\\\":\\\"ear\\\",\\\"GP_AYe5lG\\\":\\\"heart\\\",\\\"WwQohTRDI\\\":\\\"star\\\",\\\"egOUrKnhM\\\":\\\"answer\\\"}\",\"framerIntrinsicWidth\":\"600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS01MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(241, 241, 241)))\"},children:\"Veelgestelde vragen\"})});export const v1=\"Wat is het verschil tussen motion en animatie\";export const v2=\"Motion zet dingen in beweging, animatie brengt ze tot leven. Denk aan motion design als de vonk, en animatie als de dans!\";export const v3=\"Zullen animaties mijn bedrijf helpen?\";export const v4=\"Alleen als je opgemerkt, herinnerd en geliefd wilt worden. Dus\u2026 ja!\";export const v5=\"Ik heb een klein budget, kan ik nog steeds animaties gebruiken?\";export const v6=\"Absoluut! We maken het geweldig, of het nu een klein budget of een champagnebudget is. Elke animatie die we maken, is perfect afgestemd op jouw budget en behoeften.\";export const v7=\"Wat als ik het niet leuk vind?\";export const v8=\"Nou... je krijgt je geld zeker niet terug. Maar... we zullen tweaken, draaien en polijsten tot je dat wel krijgt!\";export const v9=\"Hoeveel rondes aan aanpassingen hebben we?\";export const v10=\"\\xc9\\xe9n ronde - maar met onze moodboards en storyboards krijgen we het meestal vanaf het begin goed!\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\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/Vd5SdY2FjVKMG2PmBMt1/IKOxUhbhYgeJQLHbjivy/FB9aw8xbQ.js\";import*as localizedValues from\"./TM8BKlfGZ-0.js\";const QuestionRowFonts=getFonts(QuestionRow);const serializationHash=\"framer-1zfET\";const variantClassNames={Ws0cI7zEX:\"framer-v-q1pmk1\"};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 valuesByLocaleId={Rupgntr0k:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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.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:\"Ws0cI7zEX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10;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-q1pmk1\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Ws0cI7zEX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ytlhr3\",\"data-framer-name\":\"Timestamp\",layoutDependency:layoutDependency,layoutId:\"Au7_6rPMv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS01MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(241, 241, 241)))\"},children:\"FAQ\"})}),className:\"framer-1r7fnnr\",fonts:[\"GF;Wix Madefor Display-500\"],layoutDependency:layoutDependency,layoutId:\"r72LZ3HZP\",style:{\"--extracted-1of0zx5\":\"var(--token-0c4c4759-e28e-45d4-a0cf-d3824c008842, rgb(241, 241, 241))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout: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)||200)-0-332.6)/2+57.599999999999994+8),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1haqqk2-container\",layoutDependency:layoutDependency,layoutId:\"t5BaIJBiI-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Motion moves, animation brings it to life. Think of motion as a walk and animation as the dance!\",GP_AYe5lG:false,height:\"100%\",id:\"t5BaIJBiI\",layoutId:\"t5BaIJBiI\",qc0l7nqoz:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"What's the difference between motion & animation\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"cLq23fDpi\",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)||200)-0-332.6)/2+104.6+16),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eh87o7-container\",layoutDependency:layoutDependency,layoutId:\"yuwQtKpb2-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Only if you want to be noticed, remembered, and loved. So\u2026 yes!\",GP_AYe5lG:true,height:\"100%\",id:\"yuwQtKpb2\",layoutId:\"yuwQtKpb2\",qc0l7nqoz:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Will animations help my bysiness?\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"cLq23fDpi\",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)||200)-0-332.6)/2+151.6+24),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ca7chv-container\",layoutDependency:layoutDependency,layoutId:\"cQZ4F00Vw-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:(_getLocalizedValue5=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Absolutely! We\u2019ll make it awesome, whether it\u2019s a latte budget or a champagne one. very animation we make is perfectly sized to fit your budget and needs.\",GP_AYe5lG:false,height:\"100%\",id:\"cQZ4F00Vw\",layoutId:\"cQZ4F00Vw\",qc0l7nqoz:(_getLocalizedValue6=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"I've got a small budget can I still get animations\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"cLq23fDpi\",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)||200)-0-332.6)/2+198.6+32),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y7o83o-container\",layoutDependency:layoutDependency,layoutId:\"HammBd8Hh-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:(_getLocalizedValue7=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Well... you\u2019re definitely not getting your money back. But... we will tweak, twist, and polish until you do!\",GP_AYe5lG:false,height:\"100%\",id:\"HammBd8Hh\",layoutId:\"HammBd8Hh\",qc0l7nqoz:(_getLocalizedValue8=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"What if I don't like it?\",style:{width:\"100%\"},U2IrYA1fw:true,variant:\"cLq23fDpi\",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)||200)-0-332.6)/2+245.6+40),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a6it66-container\",layoutDependency:layoutDependency,layoutId:\"KiEYSzjdF-container\",children:/*#__PURE__*/_jsx(QuestionRow,{egOUrKnhM:(_getLocalizedValue9=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"One round\u2014but with our moodboards and storyboards, we usually get it right from the start!\",GP_AYe5lG:false,height:\"100%\",id:\"KiEYSzjdF\",layoutId:\"KiEYSzjdF\",qc0l7nqoz:(_getLocalizedValue10=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"How many rounds of changes do we get\",style:{width:\"100%\"},U2IrYA1fw:false,variant:\"cLq23fDpi\",width:\"100%\",WwQohTRDI:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1zfET.framer-9qgaja, .framer-1zfET .framer-9qgaja { display: block; }\",\".framer-1zfET.framer-q1pmk1 { 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-1zfET .framer-ytlhr3 { 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-1zfET .framer-1r7fnnr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1zfET .framer-1haqqk2-container, .framer-1zfET .framer-eh87o7-container, .framer-1zfET .framer-1ca7chv-container, .framer-1zfET .framer-y7o83o-container, .framer-1zfET .framer-a6it66-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1zfET.framer-q1pmk1, .framer-1zfET .framer-ytlhr3 { gap: 0px; } .framer-1zfET.framer-q1pmk1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-1zfET.framer-q1pmk1 > :first-child, .framer-1zfET .framer-ytlhr3 > :first-child { margin-top: 0px; } .framer-1zfET.framer-q1pmk1 > :last-child, .framer-1zfET .framer-ytlhr3 > :last-child { margin-bottom: 0px; } .framer-1zfET .framer-ytlhr3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 405\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 FramerTM8BKlfGZ=withCSS(Component,css,\"framer-1zfET\");export default FramerTM8BKlfGZ;FramerTM8BKlfGZ.displayName=\"FAQ 2\";FramerTM8BKlfGZ.defaultProps={height:405,width:490};addFonts(FramerTM8BKlfGZ,[{explicitInter:true,fonts:[{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYFTYlthv_3HQKgh.woff2\",weight:\"500\"}]},...QuestionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTM8BKlfGZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"490\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"490px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"405\",\"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", "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", "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", "onMouseEnter1ewwyfl", "onTap1oi2vk4", "onMouseLeaves349xx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerX6SY_Ni_q", "withCSS", "X6SY_Ni_q_default", "addPropertyControls", "ControlType", "addFonts", "MessageFonts", "getFonts", "X6SY_Ni_q_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "onTapiao7tv", "args", "Ig9Oen9_Q8yol2i", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerFB9aw8xbQ", "withCSS", "FB9aw8xbQ_default", "addPropertyControls", "ControlType", "addFonts", "TM8BKlfGZ_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "__FramerMetadata__", "QuestionRowFonts", "getFonts", "FB9aw8xbQ_default", "serializationHash", "variantClassNames", "valuesByLocaleId", "TM8BKlfGZ_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "FB9aw8xbQ_default", "css", "FramerTM8BKlfGZ", "withCSS", "TM8BKlfGZ_default", "addFonts", "QuestionRowFonts"]
}
