{"version":3,"file":"Wjbv6FF7X.DJDj-5D6.mjs","names":["props","useState","addPropertyOverrides","IconsIcon16","IconsIcon24","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","className","css","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","PartsCMSAccordionItemItemHeader","React.useContext","React.useMemo","React.Fragment","props","useRef","React.useId","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","sharedStyle3.className","sharedStyle4.className","sharedStyle5.className","sharedStyle6.className","sharedStyle7.className","sharedStyle8.className","sharedStyle9.className","sharedStyle10.className","className","\"iKqmsZAse\"","\"xVeZ4jAxn\"","\"krYDzN1MQ\"","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle3.css","sharedStyle4.css","sharedStyle5.css","sharedStyle6.css","sharedStyle7.css","sharedStyle8.css","sharedStyle9.css","sharedStyle10.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts","sharedStyle4.fonts","sharedStyle5.fonts","sharedStyle6.fonts","sharedStyle7.fonts","sharedStyle8.fonts","sharedStyle9.fonts","sharedStyle10.fonts"],"sources":["https:/framerusercontent.com/modules/z6dchrQBB73rhPbBj775/p7LYJS3mmZFUKGvdE8zq/LoaderCircle.js","https:/framerusercontent.com/modules/PmqRxo3WZJ7WFBtjQgHV/sHAHSbzXO79Mrk75WklG/fzY_HrIUU.js","https:/framerusercontent.com/modules/hRI0g9nFRrCs2upOU13F/ItoNoejA69QNXenRY8YD/Wjbv6FF7X.js"],"sourcesContent":["// import React, { useEffect, useState } from \"react\"\n// import { addPropertyControls, ControlType } from \"framer\"\n// export default function CircularProgress(props) {\n//     const { backgroundColor, progressColor, timeAnimation, strokeWidth } = props\n//     const [progress, setProgress] = useState(0)\n//     useEffect(() => {\n//         const interval = setInterval(() => {\n//             setProgress((prev) => (prev >= 100 ? 0 : prev + 1))\n//         }, timeAnimation)\n//         return () => clearInterval(interval)\n//     }, [timeAnimation])\n//     const radius = 50 - strokeWidth / 2\n//     const circumference = 2 * Math.PI * radius\n//     const strokeDashoffset = circumference - (progress / 100) * circumference\n//     return (\n//         <svg\n//             width=\"100%\"\n//             height=\"100%\"\n//             viewBox=\"0 0 100 100\"\n//             style={{ transform: \"rotate(-90deg)\" }} // <- clockwise\n//         >\n//             <circle\n//                 stroke={backgroundColor}\n//                 fill=\"transparent\"\n//                 strokeWidth={strokeWidth}\n//                 r={radius}\n//                 cx=\"50\"\n//                 cy=\"50\"\n//             />\n//             <circle\n//                 stroke={progressColor}\n//                 fill=\"transparent\"\n//                 strokeWidth={strokeWidth}\n//                 strokeLinecap=\"round\"\n//                 strokeDasharray={`${circumference} ${circumference}`}\n//                 strokeDashoffset={strokeDashoffset}\n//                 r={radius}\n//                 cx=\"50\"\n//                 cy=\"50\"\n//                 style={{\n//                     transition: `stroke-dashoffset ${timeAnimation}ms linear`,\n//                 }}\n//             />\n//         </svg>\n//     )\n// }\n// addPropertyControls(CircularProgress, {\n//     backgroundColor: {\n//         title: \"Background Color\",\n//         type: ControlType.Color,\n//         defaultValue: \"rgba(0, 0, 0, 0.12)\",\n//     },\n//     progressColor: {\n//         title: \"Progress Color\",\n//         type: ControlType.Color,\n//         defaultValue: \"black\",\n//     },\n//     timeAnimation: {\n//         title: \"Animation Time (ms)\",\n//         type: ControlType.Number,\n//         defaultValue: 90,\n//         min: 10,\n//         max: 1000,\n//         step: 10,\n//     },\n//     strokeWidth: {\n//         title: \"Stroke Width\",\n//         type: ControlType.Number,\n//         defaultValue: 10,\n//         min: 1,\n//         max: 30,\n//         step: 1,\n//     },\n// })\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export default function CircularProgress(props){const{backgroundColor,progressColor,durationSeconds,strokeWidth}=props;const[progress,setProgress]=useState(0);const timePerStep=durationSeconds*1e3/100// 100 steps = 0–100%\n;useEffect(()=>{const interval=setInterval(()=>{setProgress(prev=>prev>=100?0:prev+1);},timePerStep);return()=>clearInterval(interval);},[timePerStep]);const radius=50-strokeWidth/2;const circumference=2*Math.PI*radius;const strokeDashoffset=circumference-progress/100*circumference;return /*#__PURE__*/_jsxs(\"svg\",{width:\"100%\",height:\"100%\",viewBox:\"0 0 100 100\",style:{transform:\"rotate(-90deg)\"},children:[/*#__PURE__*/_jsx(\"circle\",{stroke:backgroundColor,fill:\"transparent\",strokeWidth:strokeWidth,r:radius,cx:\"50\",cy:\"50\"}),/*#__PURE__*/_jsx(\"circle\",{stroke:progressColor,fill:\"transparent\",strokeWidth:strokeWidth,strokeLinecap:\"round\",strokeDasharray:`${circumference} ${circumference}`,strokeDashoffset:strokeDashoffset,r:radius,cx:\"50\",cy:\"50\",style:{transition:`stroke-dashoffset ${timePerStep}ms linear`}})]});}addPropertyControls(CircularProgress,{backgroundColor:{title:\"Background Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.12)\"},progressColor:{title:\"Progress Color\",type:ControlType.Color,defaultValue:\"black\"},durationSeconds:{title:\"Duration (s)\",type:ControlType.Number,defaultValue:3,min:.5,max:100,step:.1},strokeWidth:{title:\"Stroke Width\",type:ControlType.Number,defaultValue:10,min:1,max:100,step:1}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CircularProgress\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LoaderCircle.map","// Generated by Framer (ba156f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CircularProgress from\"https://framerusercontent.com/modules/z6dchrQBB73rhPbBj775/p7LYJS3mmZFUKGvdE8zq/LoaderCircle.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/TmN4vzTqMYKKfnqnN8KW/Jz5Xbk2sz8XmAaZawMgF/bBuTVLxAD.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/f1xL56hgODVxvWoUDn80/AdlsF07oR247oqGAI2G5/HV11iJMUv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cA11wZJKFEEkXwBknMnQ/jszx00gZvkpOEplKd9EW/PPy8h4aL7.js\";import IconsIcon16 from\"https://framerusercontent.com/modules/rArl6aqYIbu7X4oCdLVu/4keARo59kBEfncyyMLnR/bEXceEcVu.js\";import IconsIcon24 from\"https://framerusercontent.com/modules/EFJg8OWuEZZFk006RAYm/44jKm4opzoWz4iroBkQv/w8VIzsJCW.js\";const CircularProgressFonts=getFonts(CircularProgress);const IconsIcon16Fonts=getFonts(IconsIcon16);const IconsIcon24Fonts=getFonts(IconsIcon24);const enabledGestures={dzNr24KqR:{hover:true},ElwuFHoh7:{hover:true},QveLHie5P:{hover:true},vwS3jeBq7:{hover:true},Xq45XvKaR:{hover:true}};const cycleOrder=[\"ElwuFHoh7\",\"Xq45XvKaR\",\"QveLHie5P\",\"vwS3jeBq7\",\"dzNr24KqR\",\"PcAeOOZ6h\"];const serializationHash=\"framer-u6Bk0\";const variantClassNames={dzNr24KqR:\"framer-v-daemfk\",ElwuFHoh7:\"framer-v-43iykq\",PcAeOOZ6h:\"framer-v-ik4q5i\",QveLHie5P:\"framer-v-5nadyj\",vwS3jeBq7:\"framer-v-8qgerw\",Xq45XvKaR:\"framer-v-dmk2eg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Closed - +\":\"QveLHie5P\",\"Closed - >\":\"ElwuFHoh7\",\"Closed - Arrow\":\"dzNr24KqR\",\"Opened - +\":\"vwS3jeBq7\",\"Opened - >\":\"Xq45XvKaR\",\"Opened - Arrow progress\":\"PcAeOOZ6h\"};const getProps=({height,id,tap,text,width,...props})=>{return{...props,oLJDdbKDy:text??props.oLJDdbKDy??\"What is return on investment (ROI)?\",otfoKtSyg:tap??props.otfoKtSyg,variant:humanReadableVariantMap[props.variant]??props.variant??\"ElwuFHoh7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,oLJDdbKDy,otfoKtSyg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ElwuFHoh7\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapys3u68=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(otfoKtSyg){const res=await otfoKtSyg(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"PcAeOOZ6h\")return true;return false;};const isDisplayed1=()=>{if([\"QveLHie5P-hover\",\"vwS3jeBq7-hover\"].includes(gestureVariant))return true;if([\"QveLHie5P\",\"vwS3jeBq7\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"QveLHie5P-hover\",\"vwS3jeBq7-hover\",\"dzNr24KqR-hover\"].includes(gestureVariant))return false;if([\"QveLHie5P\",\"vwS3jeBq7\",\"dzNr24KqR\",\"PcAeOOZ6h\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"dzNr24KqR-hover\")return true;if(baseVariant===\"dzNr24KqR\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-43iykq\",className,classNames),\"data-framer-name\":\"Closed - >\",layoutDependency:layoutDependency,layoutId:\"ElwuFHoh7\",ref:refBinding,style:{opacity:1,...style},variants:{\"dzNr24KqR-hover\":{opacity:.64},\"ElwuFHoh7-hover\":{opacity:.8},\"QveLHie5P-hover\":{opacity:.8},\"vwS3jeBq7-hover\":{opacity:.8},\"Xq45XvKaR-hover\":{opacity:.8}},...addPropertyOverrides({\"dzNr24KqR-hover\":{\"data-framer-name\":undefined},\"ElwuFHoh7-hover\":{\"data-framer-name\":undefined},\"QveLHie5P-hover\":{\"data-framer-name\":undefined},\"vwS3jeBq7-hover\":{\"data-framer-name\":undefined},\"Xq45XvKaR-hover\":{\"data-framer-name\":undefined},dzNr24KqR:{\"data-framer-name\":\"Closed - Arrow\"},PcAeOOZ6h:{\"data-framer-name\":\"Opened - Arrow progress\",\"data-highlight\":true,onTap:onTapys3u68},QveLHie5P:{\"data-framer-name\":\"Closed - +\"},vwS3jeBq7:{\"data-framer-name\":\"Opened - +\",\"data-highlight\":true,onTap:onTapys3u68},Xq45XvKaR:{\"data-framer-name\":\"Opened - >\",\"data-highlight\":true,onTap:onTapys3u68}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11vz1sx\",\"data-styles-preset\":\"HV11iJMUv\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23)))\"},children:\"What is return on investment (ROI)?\"})}),className:\"framer-1lhrgsp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dv4PWKC2T\",style:{\"--extracted-a0htzi\":\"var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oLJDdbKDy,variants:{dzNr24KqR:{\"--extracted-r6o4lv\":\"var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23))\"},PcAeOOZ6h:{\"--extracted-r6o4lv\":\"var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200))\"},QveLHie5P:{\"--extracted-r6o4lv\":\"var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23))\"},vwS3jeBq7:{\"--extracted-r6o4lv\":\"var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200))\"},Xq45XvKaR:{\"--extracted-a0htzi\":\"var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dzNr24KqR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m2a2jm\",\"data-styles-preset\":\"bBuTVLxAD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23)))\"},children:\"What is return on investment (ROI)?\"})})},PcAeOOZ6h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1m2a2jm\",\"data-styles-preset\":\"bBuTVLxAD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200)))\"},children:\"What is return on investment (ROI)?\"})})},QveLHie5P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ff9rp2\",\"data-styles-preset\":\"PPy8h4aL7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf0e09ef-dcee-422f-aed4-bb4e4075a94d, rgb(28, 25, 23)))\"},children:\"What is return on investment (ROI)?\"})})},vwS3jeBq7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ff9rp2\",\"data-styles-preset\":\"PPy8h4aL7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200)))\"},children:\"What is return on investment (ROI)?\"})})},Xq45XvKaR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-11vz1sx\",\"data-styles-preset\":\"HV11iJMUv\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200)))\"},children:\"What is return on investment (ROI)?\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2q3xj9-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"m_gvdwgf4-container\",nodeId:\"m_gvdwgf4\",rendersWithMotion:true,scopeId:\"fzY_HrIUU\",children:/*#__PURE__*/_jsx(CircularProgress,{backgroundColor:\"rgb(227, 230, 250)\",durationSeconds:24,height:\"100%\",id:\"m_gvdwgf4\",layoutId:\"m_gvdwgf4\",progressColor:\"var(--token-112c07a1-1cff-4925-8f0a-aa310f564415, rgb(17, 41, 200))\",strokeWidth:12,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({QveLHie5P:{height:20,width:\"16px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||200)-24-20)/2)},vwS3jeBq7:{height:20,width:\"16px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||52)-24-20)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g2h73i-container\",layoutDependency:layoutDependency,layoutId:\"hYUvzc3S8-container\",nodeId:\"hYUvzc3S8\",rendersWithMotion:true,scopeId:\"fzY_HrIUU\",style:{rotate:0},variants:{\"QveLHie5P-hover\":{rotate:0},vwS3jeBq7:{rotate:45}},children:/*#__PURE__*/_jsx(IconsIcon16,{height:\"100%\",id:\"hYUvzc3S8\",layoutId:\"hYUvzc3S8\",style:{height:\"100%\",width:\"100%\"},variant:\"lzSWTIP0l\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+8,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13dp34h-container\",layoutDependency:layoutDependency,layoutId:\"GY8MoPCPM-container\",nodeId:\"GY8MoPCPM\",rendersWithMotion:true,scopeId:\"fzY_HrIUU\",style:{rotate:0},variants:{\"ElwuFHoh7-hover\":{rotate:0},Xq45XvKaR:{rotate:-180}},children:/*#__PURE__*/_jsx(IconsIcon24,{height:\"100%\",id:\"GY8MoPCPM\",layoutId:\"GY8MoPCPM\",style:{height:\"100%\",width:\"100%\"},variant:\"GJJivoTny\",width:\"100%\",...addPropertyOverrides({Xq45XvKaR:{variant:\"M_RurXiBD\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cco7u\",layoutDependency:layoutDependency,layoutId:\"ksTvwU25M\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-196f31c0-ce4c-4a29-acba-13de032fa513, rgb(245, 244, 244))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80},variants:{dzNr24KqR:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgba(16, 40, 199, 0)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\"}},...addPropertyOverrides({dzNr24KqR:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"16px\",...addPropertyOverrides({dzNr24KqR:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||52)-24-24)/2)+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1opmz1p-container\",layoutDependency:layoutDependency,layoutId:\"OkRR0jh9H-container\",nodeId:\"OkRR0jh9H\",rendersWithMotion:true,scopeId:\"fzY_HrIUU\",children:/*#__PURE__*/_jsx(IconsIcon16,{height:\"100%\",id:\"OkRR0jh9H\",layoutId:\"OkRR0jh9H\",style:{height:\"100%\",width:\"100%\"},variant:\"OjY3r6cDP\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u6Bk0.framer-186i9j8, .framer-u6Bk0 .framer-186i9j8 { display: block; }\",\".framer-u6Bk0.framer-43iykq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 544px; }\",\".framer-u6Bk0 .framer-1lhrgsp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-u6Bk0 .framer-2q3xj9-container, .framer-u6Bk0 .framer-13dp34h-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-u6Bk0 .framer-1g2h73i-container { flex: none; height: 20px; position: relative; width: 16px; }\",\".framer-u6Bk0 .framer-1cco7u { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-u6Bk0 .framer-1opmz1p-container { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-u6Bk0.framer-v-dmk2eg.framer-43iykq { padding: 8px 0px 8px 0px; }\",\".framer-u6Bk0.framer-v-5nadyj.framer-43iykq, .framer-u6Bk0.framer-v-8qgerw.framer-43iykq, .framer-u6Bk0.framer-v-daemfk.framer-43iykq { align-content: center; align-items: center; gap: 8px; padding: 12px 0px 12px 0px; }\",\".framer-u6Bk0.framer-v-5nadyj .framer-1lhrgsp, .framer-u6Bk0.framer-v-8qgerw .framer-1lhrgsp { order: 3; }\",\".framer-u6Bk0.framer-v-5nadyj .framer-1g2h73i-container, .framer-u6Bk0.framer-v-8qgerw .framer-1g2h73i-container, .framer-u6Bk0.framer-v-daemfk .framer-1cco7u { order: 2; }\",\".framer-u6Bk0.framer-v-daemfk .framer-1lhrgsp, .framer-u6Bk0.framer-v-ik4q5i .framer-1lhrgsp { order: 4; }\",\".framer-u6Bk0.framer-v-ik4q5i.framer-43iykq { align-content: center; align-items: center; gap: 8px; padding: 12px 0px 4px 0px; }\",\".framer-u6Bk0.framer-v-ik4q5i .framer-2q3xj9-container { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-u6Bk0[data-border=\"true\"]::after, .framer-u6Bk0 [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 36\n * @framerIntrinsicWidth 544\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Xq45XvKaR\":{\"layout\":[\"fixed\",\"auto\"]},\"QveLHie5P\":{\"layout\":[\"fixed\",\"auto\"]},\"vwS3jeBq7\":{\"layout\":[\"fixed\",\"auto\"]},\"dzNr24KqR\":{\"layout\":[\"fixed\",\"auto\"]},\"PcAeOOZ6h\":{\"layout\":[\"fixed\",\"auto\"]},\"C_AtCTiTq\":{\"layout\":[\"fixed\",\"auto\"]},\"pLGQH9BOz\":{\"layout\":[\"fixed\",\"auto\"]},\"VKpMnkcHt\":{\"layout\":[\"fixed\",\"auto\"]},\"RW4UW7ltO\":{\"layout\":[\"fixed\",\"auto\"]},\"mkLZhSpAv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"oLJDdbKDy\":\"text\",\"otfoKtSyg\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfzY_HrIUU=withCSS(Component,css,\"framer-u6Bk0\");export default FramerfzY_HrIUU;FramerfzY_HrIUU.displayName=\"Parts / CMS - Accordion - Item - Item-header\";FramerfzY_HrIUU.defaultProps={height:36,width:544};addPropertyControls(FramerfzY_HrIUU,{variant:{options:[\"ElwuFHoh7\",\"Xq45XvKaR\",\"QveLHie5P\",\"vwS3jeBq7\",\"dzNr24KqR\",\"PcAeOOZ6h\"],optionTitles:[\"Closed - >\",\"Opened - >\",\"Closed - +\",\"Opened - +\",\"Closed - Arrow\",\"Opened - Arrow progress\"],title:\"Variant\",type:ControlType.Enum},oLJDdbKDy:{defaultValue:\"What is return on investment (ROI)?\",displayTextArea:false,title:\"Text\",type:ControlType.String},otfoKtSyg:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerfzY_HrIUU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CircularProgressFonts,...IconsIcon16Fonts,...IconsIcon24Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfzY_HrIUU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xq45XvKaR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QveLHie5P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vwS3jeBq7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dzNr24KqR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PcAeOOZ6h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C_AtCTiTq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pLGQH9BOz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VKpMnkcHt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RW4UW7ltO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mkLZhSpAv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"oLJDdbKDy\\\":\\\"text\\\",\\\"otfoKtSyg\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"544\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"36\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fzY_HrIUU.map","// Generated by Framer (6e662ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{listStyle}from\"https://framerusercontent.com/modules/BvwBE5vOxnWgJI2Gbv5r/N4ROngMTRlKuocvoVHEb/Custom_list_style_type.js\";import*as componentPresets from\"https://framerusercontent.com/modules/TFRA2JZPFwknrBwNYxMp/dUObsOWXzDf3n2WVavV5/componentPresets.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Nj6MX8wTRfiL7QyUbYoJ/u7eh12UwXK4F09oWMQZl/Btq2R0K0E.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/XPfinvPtkphNUL76sIwD/qf06cxgWA4wwRxYHnYkq/cQfBrVZxv.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Sb3tWl6yodidW7WJhpm6/GD3YLOUum0Lkvc4MEJ2c/Cs0FpWpWl.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/rHc4OcldUBvH6ygxaXKH/FBwWCj4BCXuC5tusf9Ea/IwRGNnBZz.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/oKo44KgArLu7270stfBH/DpgNXfH8yC3IIugiTutM/jfYABng8p.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/dvqg2zm7WkkToeqr5RvE/19To6dcJc2bPXarMiOP6/JXxy3HCJO.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/9wfu8tO6SITlwWsXlZYi/5MbJBM4ylyO22b2sX8pn/Nkz9BxiSz.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/cA11wZJKFEEkXwBknMnQ/jszx00gZvkpOEplKd9EW/PPy8h4aL7.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/pBu7gQNrpUT7QFCQJFCS/zhwQyZz8vZbJP4YFpX4E/QWH2qdujQ.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/HlOnaPG3cYc5XMxomFAu/IwYTb47OveeNh6FuTE5Y/uQ5QAlpyv.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZSoeRbtDElQfMNUZucUI/po9cJXdlEaoEC3n83hUp/VcPcSqxdo.js\";import PartsCMSAccordionItemItemHeader from\"https://framerusercontent.com/modules/PmqRxo3WZJ7WFBtjQgHV/sHAHSbzXO79Mrk75WklG/fzY_HrIUU.js\";const PartsCMSAccordionItemItemHeaderFonts=getFonts(PartsCMSAccordionItemItemHeader);const RichTextListStylem12tfw=withCodeBoundaryForOverrides(RichText,{nodeId:\"gDu1NM2Db\",override:listStyle,scopeId:\"Wjbv6FF7X\"});const cycleOrder=[\"wPBwK14nc\",\"wF4tG5qG2\",\"bSUwhNZQi\",\"zelqTFc6p\",\"M7reWL6A4\",\"ZvDhE9H5w\"];const serializationHash=\"framer-tC5tX\";const variantClassNames={bSUwhNZQi:\"framer-v-1sbkd98\",M7reWL6A4:\"framer-v-jaz76f\",wF4tG5qG2:\"framer-v-o3vsid\",wPBwK14nc:\"framer-v-570v42\",zelqTFc6p:\"framer-v-bgxpkc\",ZvDhE9H5w:\"framer-v-4wh5x3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Closed - +\":\"M7reWL6A4\",\"Closed - >\":\"wPBwK14nc\",\"Opened - +\":\"ZvDhE9H5w\",\"Opened - >\":\"wF4tG5qG2\"};const getProps=({click,fAQItemDescription,fAQItemTitle,height,id,width,...props})=>{return{...props,gaWA4oIPZ:fAQItemDescription??props.gaWA4oIPZ??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{children:[\"Start by creating a form on ConvertCalculator. You can choose from our library of platinum templates or build a form from scratch. Read\",/*#__PURE__*/_jsx(Link,{href:\"https://www.convertcalculator.com/help/tutorials/cleaning-business-price-quote-calculator\",motionChild:true,openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\\xa0this article\"})}),\"\\xa0about creating a calculator for more information.\"]}),/*#__PURE__*/_jsxs(motion.ul,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(54, 63, 82)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Note that you need to be able to edit the HTML on the website you’re installing the ConvertCalculator form.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[\"If you use the scripts in this article, make sure you grab the\\xa0\",/*#__PURE__*/_jsx(motion.code,{children:\"CALCULATORID\"}),\". You can find the\\xa0\",/*#__PURE__*/_jsx(motion.code,{children:\"CALCULATORID\"}),\"\\xa0in the first line of the embed script, e.g.\\xa0\",/*#__PURE__*/_jsx(motion.code,{children:'data-calc-id=\"8nyatmt3mGGD7vNh3\"'}),\".\"]})})]}),/*#__PURE__*/_jsx(motion.p,{children:\"The following steps will lead you to the embed script:\"}),/*#__PURE__*/_jsxs(motion.ol,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(54, 63, 82)\",\"--framer-text-decoration\":\"none\",\"--framer-text-transform\":\"none\"},children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Go to the editor of the calculator you want to embed on\",/*#__PURE__*/_jsx(Link,{href:\"https://www.convertcalculator.com/app\",motionChild:true,openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\\xa0the dashboard\"})}),\".\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Navigate to the Share tab via the top navigation.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:'Click on the \"Embed\" button in the sub-top menu.'})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:'Select \"other\" for the platform.'})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Follow the simple instructions on the screen.\"})})]}),/*#__PURE__*/_jsx(motion.p,{children:\"Now, you’ll have a ConvertCalculator form on your Framer website.\"})]}),GSKeVvf5V:click??props.GSKeVvf5V,Mn_P6Oujg:fAQItemTitle??props.Mn_P6Oujg??\"What is return on investment (ROI)?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"wPBwK14nc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Mn_P6Oujg,GSKeVvf5V,gaWA4oIPZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wPBwK14nc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1e11j9e=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GSKeVvf5V){const res=await GSKeVvf5V(...args);if(res===false)return false;}setVariant(\"wF4tG5qG2\");});const onTap1b0ydyz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GSKeVvf5V){const res=await GSKeVvf5V(...args);if(res===false)return false;}});const onTap1nkj3g9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GSKeVvf5V){const res=await GSKeVvf5V(...args);if(res===false)return false;}setVariant(\"zelqTFc6p\");});const onTap1807whw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GSKeVvf5V){const res=await GSKeVvf5V(...args);if(res===false)return false;}setVariant(\"ZvDhE9H5w\");});const otfoKtSygrweqzt=activeVariantCallback(async(...args)=>{setVariant(\"wPBwK14nc\");});const otfoKtSygiw01b9=activeVariantCallback(async(...args)=>{setVariant(\"zelqTFc6p\");});const otfoKtSyge1j3jb=activeVariantCallback(async(...args)=>{setVariant(\"bSUwhNZQi\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-570v42\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed - >\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wPBwK14nc\",onTap:onTap1e11j9e,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2859dc8f-75dc-4a77-8e47-069106e26f89, rgb(231, 229, 228))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{bSUwhNZQi:{\"--border-color\":\"rgba(231, 229, 228, 0.8)\"},M7reWL6A4:{\"--border-bottom-width\":\"0px\"},ZvDhE9H5w:{\"--border-bottom-width\":\"0px\"}},...addPropertyOverrides({bSUwhNZQi:{\"data-framer-name\":\"Closed - +\",onTap:onTap1nkj3g9},M7reWL6A4:{\"data-framer-name\":\"Closed - +\",onTap:onTap1807whw},wF4tG5qG2:{\"data-framer-name\":\"Opened - >\",onTap:onTap1b0ydyz},zelqTFc6p:{\"data-framer-name\":\"Opened - +\",onTap:onTap1b0ydyz},ZvDhE9H5w:{\"data-framer-name\":\"Opened - +\",onTap:onTap1b0ydyz}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+16+(((componentViewport?.height||77)-32-45)/2+0+0),...addPropertyOverrides({bSUwhNZQi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||53)-0-37)/2+0+0)},M7reWL6A4:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||53)-0-37)/2+0+0)},wF4tG5qG2:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||625.5)-40-1413)/2+0+0)},zelqTFc6p:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||617.5)-24-1413)/2+0+0)},ZvDhE9H5w:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||657.5)-8-1413)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-156q2n5-container\",layoutDependency:layoutDependency,layoutId:\"I5dZHHxTt-container\",nodeId:\"I5dZHHxTt\",rendersWithMotion:true,scopeId:\"Wjbv6FF7X\",children:/*#__PURE__*/_jsx(PartsCMSAccordionItemItemHeader,{height:\"100%\",id:\"I5dZHHxTt\",layoutId:\"I5dZHHxTt\",oLJDdbKDy:Mn_P6Oujg,style:{width:\"100%\"},variant:\"ElwuFHoh7\",width:\"100%\",...addPropertyOverrides({bSUwhNZQi:{otfoKtSyg:otfoKtSygiw01b9,variant:\"QveLHie5P\"},M7reWL6A4:{variant:\"dzNr24KqR\"},wF4tG5qG2:{otfoKtSyg:otfoKtSygrweqzt,variant:\"Xq45XvKaR\"},zelqTFc6p:{otfoKtSyg:otfoKtSyge1j3jb,variant:\"vwS3jeBq7\"},ZvDhE9H5w:{variant:\"PcAeOOZ6h\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-83ae3t\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"nIihXvxi9\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"iKqmsZAse\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"xVeZ4jAxn\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"krYDzN1MQ\"]},children:/*#__PURE__*/_jsx(RichTextListStylem12tfw,{__fromCanvasComponent:true,children:gaWA4oIPZ,className:\"framer-m12tfw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gDu1NM2Db\",style:{\"--framer-paragraph-spacing\":\"16px\",opacity:0},stylesPresetsClassNames:{a:\"framer-styles-preset-ssm2ct\",blockquote:\"framer-styles-preset-1dnvgtv\",code:\"framer-styles-preset-9ocfzl\",h2:\"framer-styles-preset-t82kk1\",h3:\"framer-styles-preset-i3b3hg\",h4:\"framer-styles-preset-8h3dyl\",h5:\"framer-styles-preset-12rif4l\",h6:\"framer-styles-preset-5mamn5\",img:\"framer-styles-preset-1tuo49d\",p:\"framer-styles-preset-ff9rp2\",table:\"framer-styles-preset-f9hkfl\"},variants:{wF4tG5qG2:{opacity:1},zelqTFc6p:{opacity:1},ZvDhE9H5w:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tC5tX.framer-butrmi, .framer-tC5tX .framer-butrmi { display: block; }\",\".framer-tC5tX.framer-570v42 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 544px; }\",\".framer-tC5tX .framer-156q2n5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tC5tX .framer-83ae3t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tC5tX .framer-m12tfw { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tC5tX.framer-v-o3vsid.framer-570v42 { gap: 0px; padding: 16px 0px 24px 0px; }\",\".framer-tC5tX.framer-v-o3vsid .framer-m12tfw, .framer-tC5tX.framer-v-bgxpkc .framer-m12tfw { height: auto; }\",\".framer-tC5tX.framer-v-1sbkd98.framer-570v42, .framer-tC5tX.framer-v-jaz76f.framer-570v42 { gap: 0px; padding: 0px; }\",\".framer-tC5tX.framer-v-bgxpkc.framer-570v42 { gap: 0px; padding: 0px 0px 24px 0px; }\",\".framer-tC5tX.framer-v-jaz76f .framer-83ae3t { padding: 0px 0px 0px 32px; }\",\".framer-tC5tX.framer-v-4wh5x3.framer-570v42 { gap: 0px; padding: 0px 0px 8px 0px; }\",\".framer-tC5tX.framer-v-4wh5x3 .framer-83ae3t { flex-direction: column; padding: 0px 0px 0px 32px; }\",\".framer-tC5tX.framer-v-4wh5x3 .framer-m12tfw { flex: none; height: auto; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-tC5tX[data-border=\"true\"]::after, .framer-tC5tX [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 77\n * @framerIntrinsicWidth 544\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wF4tG5qG2\":{\"layout\":[\"fixed\",\"auto\"]},\"bSUwhNZQi\":{\"layout\":[\"fixed\",\"auto\"]},\"zelqTFc6p\":{\"layout\":[\"fixed\",\"auto\"]},\"M7reWL6A4\":{\"layout\":[\"fixed\",\"auto\"]},\"ZvDhE9H5w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Mn_P6Oujg\":\"fAQItemTitle\",\"GSKeVvf5V\":\"click\",\"gaWA4oIPZ\":\"fAQItemDescription\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerWjbv6FF7X=withCSS(Component,css,\"framer-tC5tX\");export default FramerWjbv6FF7X;FramerWjbv6FF7X.displayName=\"Parts / CMS - Accordion - Item\";FramerWjbv6FF7X.defaultProps={height:77,width:544};addPropertyControls(FramerWjbv6FF7X,{variant:{options:[\"wPBwK14nc\",\"wF4tG5qG2\",\"bSUwhNZQi\",\"zelqTFc6p\",\"M7reWL6A4\",\"ZvDhE9H5w\"],optionTitles:[\"Closed - >\",\"Opened - >\",\"Closed - +\",\"Opened - +\",\"Closed - +\",\"Opened - +\"],title:\"Variant\",type:ControlType.Enum},Mn_P6Oujg:{defaultValue:\"What is return on investment (ROI)?\",displayTextArea:false,title:\"FAQ Item title\",type:ControlType.String},GSKeVvf5V:{title:\"Click\",type:ControlType.EventHandler},gaWA4oIPZ:{defaultValue:'<p>Start by creating a form on ConvertCalculator. You can choose from our library of platinum templates or build a form from scratch. Read<a data-framer-link=\"Link:{&quot;url&quot;:&quot;https://www.convertcalculator.com/help/tutorials/cleaning-business-price-quote-calculator&quot;,&quot;type&quot;:&quot;url&quot;}\">&nbsp;this article</a>&nbsp;about creating a calculator for more information.</p><ul style=\"--framer-text-color: rgb(54, 63, 82); --framer-font-size: 18px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.5em; --framer-text-alignment: start;\"><li data-preset-tag=\"p\"><p>Note that you need to be able to edit the HTML on the website you’re installing the ConvertCalculator form.</p></li><li data-preset-tag=\"p\"><p>If you use the scripts in this article, make sure you grab the&nbsp;<code>CALCULATORID</code>. You can find the&nbsp;<code>CALCULATORID</code>&nbsp;in the first line of the embed script, e.g.&nbsp;<code>data-calc-id=\"8nyatmt3mGGD7vNh3\"</code>.</p></li></ul><p>The following steps will lead you to the embed script:</p><ol style=\"--framer-text-color: rgb(54, 63, 82); --framer-font-size: 18px; --framer-text-transform: none; --framer-text-decoration: none; --framer-line-height: 1.5em; --framer-text-alignment: start;\"><li data-preset-tag=\"p\"><p>Go to the editor of the calculator you want to embed on<a data-framer-link=\"Link:{&quot;url&quot;:&quot;https://www.convertcalculator.com/app&quot;,&quot;type&quot;:&quot;url&quot;}\">&nbsp;the dashboard</a>.</p></li><li data-preset-tag=\"p\"><p>Navigate to the Share tab via the top navigation.</p></li><li data-preset-tag=\"p\"><p>Click on the \"Embed\" button in the sub-top menu.</p></li><li data-preset-tag=\"p\"><p>Select \"other\" for the platform.</p></li><li data-preset-tag=\"p\"><p>Follow the simple instructions on the screen.</p></li></ol><p>Now, you’ll have a ConvertCalculator form on your Framer website.</p>',title:\"FAQ Item description\",type:ControlType.RichText}});addFonts(FramerWjbv6FF7X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PartsCMSAccordionItemItemHeaderFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"xVeZ4jAxn\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"xVeZ4jAxn\"]):[],...componentPresets.fonts?.[\"krYDzN1MQ\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"krYDzN1MQ\"]):[],...componentPresets.fonts?.[\"iKqmsZAse\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"iKqmsZAse\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWjbv6FF7X\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wF4tG5qG2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bSUwhNZQi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zelqTFc6p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M7reWL6A4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZvDhE9H5w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"544\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"Mn_P6Oujg\\\":\\\"fAQItemTitle\\\",\\\"GSKeVvf5V\\\":\\\"click\\\",\\\"gaWA4oIPZ\\\":\\\"fAQItemDescription\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"77\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}