{"version":3,"file":"LzZw0KpVs.DfuvE4Pw.mjs","names":["useState","e","useState","e","result","addPropertyOverrides","DisplayFonts","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","Image","css","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts","addPropertyOverrides","DisplayFonts","cycleOrder","serializationHash","variantClassNames","transition1","Transition","React.useContext","React.useMemo","Variants","React.Fragment","humanReadableVariantMap","getProps","createLayoutDependency","Component","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","Image","css","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts","Toggle","ROICalculatorTodaysCosts","ROICalculatorCalldeskCosts","ButtonMain","LayoutJumpPreventer","React.useContext","React.useMemo","React.Fragment","useRef","React.useId","sharedStyle.className","sharedStyle1.className","className","sharedStyle.css","sharedStyle1.css","sharedStyle.fonts","sharedStyle1.fonts"],"sources":["https:/framerusercontent.com/modules/yWGcuobxIWbony0gNYSr/e9OfeeYO8mTYSYrqFGGX/Slider.js","https:/framerusercontent.com/modules/tbV3zoGR8jVK3utSEpnN/rSd6LxVNj22YwF2KPSW6/AdvancedDisplay.js","https:/framerusercontent.com/modules/sV80HPKdrNnXcnozGhuZ/osqBMsLsJdr9n4ddvBMf/aSCD5GICP.js","https:/framerusercontent.com/modules/gtFZhRQIg2W16xhLU6zM/lATMx0jeu1Edc5ISTsqA/chF_k81lP.js","https:/framerusercontent.com/modules/s5Kv4i4DeStPb5F9cdqv/Rgf5RqnhcspUnb7CJqF1/LzZw0KpVs.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import React,{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function Slider(props){const[value,setValue]=useState(props.defaultValue);React.useEffect(()=>{setValue(props.defaultValue);},[props.defaultValue]);const percentage=(value-props.min)/(props.max-props.min)*100;const handleSliderChange=e=>{const newValue=Number(e.target.value);setValue(newValue);if(props.onChange){props.onChange(newValue);}};return /*#__PURE__*/_jsxs(\"div\",{\"data-variable\":props.variableName,style:{position:\"relative\",height:Math.max(props.track.height,props.knob.size)},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:0,right:0,top:\"50%\",transform:\"translateY(-50%)\",height:props.track.height,backgroundColor:props.track.color,borderRadius:props.track.radius}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:0,width:`${percentage}%`,top:\"50%\",transform:\"translateY(-50%)\",height:props.track.height,backgroundColor:props.track.activeColor,borderRadius:props.track.radius}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:`${percentage}%`,top:\"50%\",transform:\"translate(-50%, -50%)\",width:props.knob.size,height:props.knob.size,backgroundColor:props.knob.color,border:`${props.knob.borderWidth}px solid ${props.knob.borderColor}`,borderRadius:\"50%\",boxShadow:props.knob.shadow,pointerEvents:\"none\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:props.min,max:props.max,step:props.step,value:value,onChange:handleSliderChange,style:{width:\"100%\",height:\"100%\",appearance:\"none\",background:\"transparent\",cursor:\"pointer\",position:\"relative\",margin:0,opacity:0}})]});}Slider.defaultProps={min:0,max:100,step:1,defaultValue:50,variableName:\"slider1\",track:{height:4,radius:2,color:\"#E1E1E1\",activeColor:\"#007AFF\"},knob:{size:20,color:\"#FFFFFF\",borderWidth:2,borderColor:\"#007AFF\",shadow:\"0 2px 4px 0 rgba(0,0,0,0.1)\"}};addPropertyControls(Slider,{variableName:{type:ControlType.String,title:\"Variable\",defaultValue:\"slider1\"},min:{type:ControlType.Number,title:\"Min\",displayStepper:true,step:1e-5},max:{type:ControlType.Number,title:\"Max\",displayStepper:true,step:1e-5},step:{type:ControlType.Number,title:\"Step\",displayStepper:true,step:1e-5},defaultValue:{type:ControlType.Number,title:\"Default\",displayStepper:true,step:1e-5},track:{type:ControlType.Object,title:\"Track\",controls:{height:{type:ControlType.Number,title:\"Height\",min:2,max:200},radius:{type:ControlType.Number,title:\"Radius\",min:0,max:200},color:{type:ControlType.Color,title:\"Color\"},activeColor:{type:ControlType.Color,title:\"Active\"}}},knob:{type:ControlType.Object,title:\"Knob\",controls:{size:{type:ControlType.Number,title:\"Size\",min:0,max:400},color:{type:ControlType.Color,title:\"Color\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",min:0,max:100},borderColor:{type:ControlType.Color,title:\"Border Color\"},shadow:{type:ControlType.BoxShadow,title:\"Shadow\",description:\"v1.0 \\n[via SegmentUI](https://www.segmentUI.com)\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Slider.map","import{jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function Display(props){const[variables,setVariables]=useState({});const[missingVariables,setMissingVariables]=useState([]);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const findVariablesInFormula=formula=>{try{const content=formula.replace(/\"[^\"]*\"/g,\"\").replace(/'[^']*'/g,\"\");const matches=content.match(/[a-zA-Z_][a-zA-Z0-9_]*/g)||[];return[...new Set(matches)].filter(v=>v!==\"true\"&&v!==\"false\"&&v!==\"null\"&&v!==\"undefined\"&&v!==\"return\"&&v!==\"if\"&&v!==\"else\");}catch(e){return[];}};useEffect(()=>{if(isCanvas)return;const scanForVariables=()=>{const sliders=document.querySelectorAll('input[type=\"range\"]');const selectors=document.querySelectorAll(\"[data-value]\");const vars={};sliders.forEach(slider=>{const parent=slider.closest(\"[data-variable]\");if(parent){const varName=parent.getAttribute(\"data-variable\");vars[varName]=Number(slider.value);}});selectors.forEach(selector=>{const varName=selector.getAttribute(\"data-variable\");const value=selector.getAttribute(\"data-value\");if(varName&&value){vars[varName]=value;}});const formulaVars=findVariablesInFormula(props.formula);const missing=formulaVars.filter(v=>!vars[v]);setMissingVariables(missing);setVariables(vars);if(props.debug){console.log(\"Found Variables:\",vars);console.log(\"Formula Variables:\",formulaVars);console.log(\"Missing Variables:\",missing);}};scanForVariables();const observer=new MutationObserver(scanForVariables);observer.observe(document.body,{subtree:true,attributes:true,attributeFilter:[\"value\",\"data-value\"]});return()=>observer.disconnect();},[isCanvas,props.debug,props.formula]);const evaluateFormula=formula=>{try{if(isCanvas)return 100;if(props.debug){console.log(\"Current Variables:\",variables);console.log(\"Formula:\",formula);}if(variables&&variables[formula]){return variables[formula];}const formulaVars=findVariablesInFormula(props.formula);const missing=formulaVars.filter(v=>typeof variables[v]===\"undefined\");if(missing.length>0){return\"Missing variables: \"+missing.join(\", \");}const evalFunction=new Function(\"input\",`\n                if(${props.debug}) {\n                    console.log(\"Input to formula:\", input);\n                }\n                const {${Object.keys(variables).join(\",\")}} = input;\n                return ${formula}\n            `);const result=evalFunction(variables);if(props.debug){console.log(\"Formula Result:\",result);}return result;}catch(error){if(props.debug){console.error(\"Formula Error:\",error);}return isCanvas?100:\"Invalid Formula\";}};const formatNumber=number=>{if(typeof number!==\"number\"&&isNaN(number)){return number;}const num=typeof number===\"string\"?Number(number):number;const applyEUFormat=value=>{const parts=value.toString().split(\".\");const intPart=parts[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g,\" \");const decPart=parts[1]&&Number(parts[1])>0?\",\"+parts[1]:\"\";return intPart+decPart;};if(props.abbreviateLargeNumbers){const abs=Math.abs(num);let formatted=num;if(abs>=1e6){formatted=(num/1e6).toFixed(props.decimals)+\"M\";}else if(abs>=1e3){formatted=(num/1e3).toFixed(props.decimals)+\"k\";}else{formatted=num.toFixed(props.decimals);}return props.addCommas?props.displayFormat===\"EU\"?applyEUFormat(formatted.replace(/[^\\d.,-]/g,\"\"))+formatted.replace(/[\\d.,-]/g,\"\"):Number(formatted.replace(/[^\\d.-]/g,\"\")).toLocaleString(\"en-US\")+formatted.replace(/[\\d.,-]/g,\"\"):formatted;}const rounded=props.decimals>=0?Number(num.toFixed(props.decimals)):num;if(!props.addCommas)return rounded.toString();return props.displayFormat===\"EU\"?applyEUFormat(rounded.toFixed(props.decimals)):rounded.toLocaleString(\"en-US\");};const result=formatNumber(evaluateFormula(props.formula));return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:10},children:[/*#__PURE__*/_jsxs(\"div\",{style:{...props.font,color:props.textColor},children:[props.prefix,result,props.suffix]}),props.debug&&!isCanvas&&/*#__PURE__*/_jsxs(\"div\",{style:{padding:10,background:\"#f5f5f5\",borderRadius:4,fontSize:12,fontFamily:\"monospace\",display:\"flex\",flexDirection:\"column\",gap:8},children:[/*#__PURE__*/_jsxs(\"div\",{children:[\"Variables Found: \",JSON.stringify(variables,null,2)]}),missingVariables.length>0&&/*#__PURE__*/_jsxs(\"div\",{style:{color:\"red\"},children:[\"Missing Variables: \",missingVariables.join(\", \")]}),/*#__PURE__*/_jsxs(\"div\",{children:[\"Formula: \",props.formula]}),/*#__PURE__*/_jsxs(\"div\",{children:[\"Result: \",result]})]})]});}Display.defaultProps={formula:\"0\",prefix:\"$\",suffix:\"\",textColor:\"#000000\",debug:false,addCommas:false,abbreviateLargeNumbers:false,decimals:2,displayFormat:\"US\",font:{family:\"Inter\",fontSize:32,lineHeight:1.5,fontWeight:500}};addPropertyControls(Display,{formula:{type:ControlType.String,title:\"Formula\",defaultValue:\"0\",displayTextArea:true},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"$\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},decimals:{type:ControlType.Number,title:\"Decimals\",min:0,max:10,step:1,defaultValue:2},debug:{type:ControlType.Boolean,title:\"Debug\",defaultValue:false},addCommas:{type:ControlType.Boolean,title:\"Add Commas\",defaultValue:false},abbreviateLargeNumbers:{type:ControlType.Boolean,title:\"Abbreviate\",defaultValue:false},displayFormat:{type:ControlType.Enum,title:\"Format\",options:[\"US\",\"EU\"],optionTitles:[\"US (1,000.00)\",\"EU (1 000,00)\"],defaultValue:\"US\"},textColor:{type:ControlType.Color,title:\"Color\"},font:{type:ControlType.Font,controls:\"extended\",title:\"Font\",description:\"v1.2 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Display\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AdvancedDisplay.map","// Generated by Framer (482670a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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 Display from\"https://framerusercontent.com/modules/tbV3zoGR8jVK3utSEpnN/rSd6LxVNj22YwF2KPSW6/AdvancedDisplay.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2aNLvu3vMxZX8EqwSxoY/onBgXtnJJbtd1TKuRGHO/c0IvWBhtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gV6bYmAUOgOyJzQqKEDC/1M1P9Ijj3ZPWy9VWsups/wFYdeHhoE.js\";const DisplayFonts=getFonts(Display);const cycleOrder=[\"kD0BV9GkM\",\"RAd6JNGmK\"];const serializationHash=\"framer-fI2hT\";const variantClassNames={kD0BV9GkM:\"framer-v-11kcp5y\",RAd6JNGmK:\"framer-v-1tnwcth\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.7,0,.05,1],type:\"tween\"};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:\"RAd6JNGmK\",Open:\"kD0BV9GkM\"};const getProps=({costPerYearFormula,height,id,inHouseFormula,outsourceFormula,width,...props})=>{return{...props,BORlE_1yX:outsourceFormula??props.BORlE_1yX??\"outsourcecalls*outsourcecost\",jgdS3v2Vx:costPerYearFormula??props.jgdS3v2Vx??\"(outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)\",Ri_vKJNDz:inHouseFormula??props.Ri_vKJNDz??\"inhousecalls*inhousecost\",variant:humanReadableVariantMap[props.variant]??props.variant??\"kD0BV9GkM\"};};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,jgdS3v2Vx,Ri_vKJNDz,BORlE_1yX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kD0BV9GkM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1xu9neu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"kD0BV9GkM\");});const onTap13o4ut=activeVariantCallback(async(...args)=>{setVariant(\"RAd6JNGmK\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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-11kcp5y\",className,classNames),\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"kD0BV9GkM\",ref:refBinding,style:{...style},...addPropertyOverrides({RAd6JNGmK:{\"data-framer-name\":\"Closed\",\"data-highlight\":true,onTap:onTap1xu9neu}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-154sr95\",\"data-framer-name\":\"Label\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pD1dCip_b\",onTap:onTap13o4ut,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svrf5o\",\"data-framer-name\":\"Chevron\",layoutDependency:layoutDependency,layoutId:\"HmGMdeEFi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+-16),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"},className:\"framer-e0pqho\",\"data-framer-name\":\"Chevron Down\",layoutDependency:layoutDependency,layoutId:\"z5fmEKVJJ\",...addPropertyOverrides({RAd6JNGmK:{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+0),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+0),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"},className:\"framer-5k0571\",\"data-framer-name\":\"Chevron Down\",layoutDependency:layoutDependency,layoutId:\"ewopAVWVE\",style:{rotate:180},...addPropertyOverrides({RAd6JNGmK:{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+16-1),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qmyh4h\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"aH0wLA92G\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",children:\"Call center costs per year\\xa0today\"})}),className:\"framer-1unriie\",\"data-framer-name\":\"Call center costs per year\\xa0today\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pbSYVuRJP\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n6u82t-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"nyk4VDQx9-container\",nodeId:\"nyk4VDQx9\",rendersWithMotion:true,scopeId:\"aSCD5GICP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:jgdS3v2Vx,height:\"100%\",id:\"nyk4VDQx9\",layoutId:\"nyk4VDQx9\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s3ez5h\",\"data-framer-name\":\"Dropdown\",layoutDependency:layoutDependency,layoutId:\"TECIknB3x\",style:{opacity:.5},variants:{RAd6JNGmK:{opacity:0}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8fff0z\",\"data-border\":true,\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"Ha2iHZuwg\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-91d1668a-9aae-4fdd-a688-3dafb4f25a06, rgba(0, 0, 0, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q1xpmn\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"aQecv5e8W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"In-house agents\"})}),className:\"framer-1354g43\",\"data-framer-name\":\"In-house agents\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QP1MJXStM\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ywgq26-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"rk7Zx40Xm-container\",nodeId:\"rk7Zx40Xm\",rendersWithMotion:true,scopeId:\"aSCD5GICP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:Ri_vKJNDz,height:\"100%\",id:\"rk7Zx40Xm\",layoutId:\"rk7Zx40Xm\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hu3gc7\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"LntVhVRkZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"Outsourced agents\"})}),className:\"framer-1ifb91b\",\"data-framer-name\":\"Outsourced agents\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gGI8u9DKa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-98ln03-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"AeAZSrsns-container\",nodeId:\"AeAZSrsns\",rendersWithMotion:true,scopeId:\"aSCD5GICP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:BORlE_1yX,height:\"100%\",id:\"AeAZSrsns\",layoutId:\"AeAZSrsns\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fI2hT.framer-x35ty6, .framer-fI2hT .framer-x35ty6 { display: block; }\",\".framer-fI2hT.framer-11kcp5y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-fI2hT .framer-154sr95 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fI2hT .framer-1svrf5o { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-fI2hT .framer-e0pqho { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; overflow: visible; position: absolute; right: 0px; top: -16px; }\",\".framer-fI2hT .framer-5k0571 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-fI2hT .framer-1qmyh4h { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fI2hT .framer-1unriie, .framer-fI2hT .framer-1354g43, .framer-fI2hT .framer-1ifb91b { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-fI2hT .framer-n6u82t-container, .framer-fI2hT .framer-1ywgq26-container, .framer-fI2hT .framer-98ln03-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fI2hT .framer-s3ez5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-fI2hT .framer-8fff0z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-fI2hT .framer-q1xpmn, .framer-fI2hT .framer-hu3gc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fI2hT.framer-v-1tnwcth.framer-11kcp5y { cursor: pointer; }\",\".framer-fI2hT.framer-v-1tnwcth .framer-e0pqho { top: 0px; }\",\".framer-fI2hT.framer-v-1tnwcth .framer-5k0571 { bottom: -15px; top: unset; }\",\".framer-fI2hT.framer-v-1tnwcth .framer-s3ez5h { bottom: -56px; height: 20px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-fI2hT[data-border=\"true\"]::after, .framer-fI2hT [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 97\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RAd6JNGmK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jgdS3v2Vx\":\"costPerYearFormula\",\"Ri_vKJNDz\":\"inHouseFormula\",\"BORlE_1yX\":\"outsourceFormula\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameraSCD5GICP=withCSS(Component,css,\"framer-fI2hT\");export default FrameraSCD5GICP;FrameraSCD5GICP.displayName=\"ROI Calculator/Todays Costs\";FrameraSCD5GICP.defaultProps={height:97,width:600};addPropertyControls(FrameraSCD5GICP,{variant:{options:[\"kD0BV9GkM\",\"RAd6JNGmK\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},jgdS3v2Vx:{defaultValue:\"(outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)\",displayTextArea:true,title:\"Cost per year Formula\",type:ControlType.String},Ri_vKJNDz:{defaultValue:\"inhousecalls*inhousecost\",displayTextArea:true,title:\"In-house Formula\",type:ControlType.String},BORlE_1yX:{defaultValue:\"outsourcecalls*outsourcecost\",displayTextArea:true,title:\"Outsource Formula\",type:ControlType.String}});addFonts(FrameraSCD5GICP,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...DisplayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraSCD5GICP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"97\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RAd6JNGmK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"jgdS3v2Vx\\\":\\\"costPerYearFormula\\\",\\\"Ri_vKJNDz\\\":\\\"inHouseFormula\\\",\\\"BORlE_1yX\\\":\\\"outsourceFormula\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (482670a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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 Display from\"https://framerusercontent.com/modules/tbV3zoGR8jVK3utSEpnN/rSd6LxVNj22YwF2KPSW6/AdvancedDisplay.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2aNLvu3vMxZX8EqwSxoY/onBgXtnJJbtd1TKuRGHO/c0IvWBhtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gV6bYmAUOgOyJzQqKEDC/1M1P9Ijj3ZPWy9VWsups/wFYdeHhoE.js\";const DisplayFonts=getFonts(Display);const cycleOrder=[\"LCTYgWMce\",\"K8uMP_G90\"];const serializationHash=\"framer-4syjV\";const variantClassNames={K8uMP_G90:\"framer-v-ip27a6\",LCTYgWMce:\"framer-v-6jyrkc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.7,0,.05,1],type:\"tween\"};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:\"K8uMP_G90\",Open:\"LCTYgWMce\"};const getProps=({callbotFormula,costPerYearWithCalldeskFormula,height,id,inHouseFormula,outsourcedFormula,width,...props})=>{return{...props,A_mJV6nR5:outsourcedFormula??props.A_mJV6nR5??\"(outsourcecalls + inhousecalls) * 0.25 * (outsourcecalls / (inhousecalls + outsourcecalls)) * outsourcecost\",dVMhKxNOP:inHouseFormula??props.dVMhKxNOP??\"(outsourcecalls + inhousecalls) * 0.25 * (inhousecalls / (inhousecalls + outsourcecalls)) * inhousecost\",QtxNZt4OG:costPerYearWithCalldeskFormula??props.QtxNZt4OG??\"(outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000\",variant:humanReadableVariantMap[props.variant]??props.variant??\"LCTYgWMce\",VSO02LOIl:callbotFormula??props.VSO02LOIl??\"10000 + 5000 + (outsourcecalls + inhousecalls) * (\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n)\\n\"};};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,QtxNZt4OG,VSO02LOIl,dVMhKxNOP,A_mJV6nR5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LCTYgWMce\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaph5s7tu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LCTYgWMce\");});const onTap1ovtvid=activeVariantCallback(async(...args)=>{setVariant(\"K8uMP_G90\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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-6jyrkc\",className,classNames),\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"LCTYgWMce\",ref:refBinding,style:{...style},...addPropertyOverrides({K8uMP_G90:{\"data-framer-name\":\"Closed\",\"data-highlight\":true,onTap:onTaph5s7tu}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f0o3s4\",\"data-framer-name\":\"Label\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LCPVc_Zcx\",onTap:onTap1ovtvid,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12o5sh8\",\"data-framer-name\":\"Chevron\",layoutDependency:layoutDependency,layoutId:\"t4BYzCKS2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+-16),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"},className:\"framer-erly0t\",\"data-framer-name\":\"Chevron Down\",layoutDependency:layoutDependency,layoutId:\"N1_qZib6x\",...addPropertyOverrides({K8uMP_G90:{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+0),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+0),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"},className:\"framer-yaew7z\",\"data-framer-name\":\"Chevron Down\",layoutDependency:layoutDependency,layoutId:\"chY0zw_nG\",style:{rotate:180},...addPropertyOverrides({K8uMP_G90:{background:{alt:\"Chevron Down Icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+92+16-0),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AtPbYRbl07Q6zyemQaLOmnRADSg.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tx9prv\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"uEAh2duy1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",children:\"Call center costs per year\\xa0with Calldesk\"})}),className:\"framer-1wpnjvr\",\"data-framer-name\":\"Call center costs per year\\xa0with Calldesk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dg6wZ0o77\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fz729p-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lyGOx2960-container\",nodeId:\"lyGOx2960\",rendersWithMotion:true,scopeId:\"chF_k81lP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:QtxNZt4OG,height:\"100%\",id:\"lyGOx2960\",layoutId:\"lyGOx2960\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0olm7\",\"data-framer-name\":\"Dropdown\",layoutDependency:layoutDependency,layoutId:\"aR40hCC73\",style:{opacity:.5},variants:{K8uMP_G90:{opacity:0}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lg32bg\",\"data-border\":true,\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"SqUnwjCv5\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-91d1668a-9aae-4fdd-a688-3dafb4f25a06, rgba(0, 0, 0, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mix6qi\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"WX4VtOE0c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"Callbot\"})}),className:\"framer-1cg4bwu\",\"data-framer-name\":\"Callbot\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BfHFnkcSb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lfuz1g-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jaCd4uZxk-container\",nodeId:\"jaCd4uZxk\",rendersWithMotion:true,scopeId:\"chF_k81lP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:VSO02LOIl,height:\"100%\",id:\"jaCd4uZxk\",layoutId:\"jaCd4uZxk\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wje13u\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"UPfRjZcF5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"In-house agents\"})}),className:\"framer-18ayjaa\",\"data-framer-name\":\"In-house agents\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FJ2aMuexb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-41rvo3-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"aaHWpl_xm-container\",nodeId:\"aaHWpl_xm\",rendersWithMotion:true,scopeId:\"chF_k81lP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:dVMhKxNOP,height:\"100%\",id:\"aaHWpl_xm\",layoutId:\"aaHWpl_xm\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5g7n3n\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"njFL3Smg8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"Outsourced agents\"})}),className:\"framer-1441yca\",\"data-framer-name\":\"Outsourced agents\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PdYG0HiHG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r6bk4j-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"tjJj8zxor-container\",nodeId:\"tjJj8zxor\",rendersWithMotion:true,scopeId:\"chF_k81lP\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:A_mJV6nR5,height:\"100%\",id:\"tjJj8zxor\",layoutId:\"tjJj8zxor\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4syjV.framer-81emn0, .framer-4syjV .framer-81emn0 { display: block; }\",\".framer-4syjV.framer-6jyrkc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-4syjV .framer-f0o3s4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4syjV .framer-12o5sh8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-4syjV .framer-erly0t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; overflow: visible; position: absolute; right: 0px; top: -16px; }\",\".framer-4syjV .framer-yaew7z { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-4syjV .framer-tx9prv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4syjV .framer-1wpnjvr, .framer-4syjV .framer-1cg4bwu, .framer-4syjV .framer-18ayjaa, .framer-4syjV .framer-1441yca { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4syjV .framer-1fz729p-container, .framer-4syjV .framer-1lfuz1g-container, .framer-4syjV .framer-41rvo3-container, .framer-4syjV .framer-1r6bk4j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4syjV .framer-1a0olm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 8px; position: relative; width: 100%; }\",\".framer-4syjV .framer-lg32bg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 16px; position: relative; width: 100%; }\",\".framer-4syjV .framer-mix6qi, .framer-4syjV .framer-1wje13u, .framer-4syjV .framer-5g7n3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4syjV.framer-v-ip27a6.framer-6jyrkc { cursor: pointer; }\",\".framer-4syjV.framer-v-ip27a6 .framer-erly0t { top: 0px; }\",\".framer-4syjV.framer-v-ip27a6 .framer-yaew7z { bottom: -16px; top: unset; }\",\".framer-4syjV.framer-v-ip27a6 .framer-1a0olm7 { bottom: -56px; height: 20px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-4syjV[data-border=\"true\"]::after, .framer-4syjV [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 135.5\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"K8uMP_G90\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QtxNZt4OG\":\"costPerYearWithCalldeskFormula\",\"VSO02LOIl\":\"callbotFormula\",\"dVMhKxNOP\":\"inHouseFormula\",\"A_mJV6nR5\":\"outsourcedFormula\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerchF_k81lP=withCSS(Component,css,\"framer-4syjV\");export default FramerchF_k81lP;FramerchF_k81lP.displayName=\"ROI Calculator/Calldesk Costs\";FramerchF_k81lP.defaultProps={height:135.5,width:600};addPropertyControls(FramerchF_k81lP,{variant:{options:[\"LCTYgWMce\",\"K8uMP_G90\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},QtxNZt4OG:{defaultValue:\"(outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000\",displayTextArea:true,title:\"Cost per year with Calldesk Formula\",type:ControlType.String},VSO02LOIl:{defaultValue:\"10000 + 5000 + (outsourcecalls + inhousecalls) * (\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n)\\n\",displayTextArea:true,title:\"Callbot Formula\",type:ControlType.String},dVMhKxNOP:{defaultValue:\"(outsourcecalls + inhousecalls) * 0.25 * (inhousecalls / (inhousecalls + outsourcecalls)) * inhousecost\",displayTextArea:true,title:\"In-House Formula\",type:ControlType.String},A_mJV6nR5:{defaultValue:\"(outsourcecalls + inhousecalls) * 0.25 * (outsourcecalls / (inhousecalls + outsourcecalls)) * outsourcecost\",displayTextArea:true,title:\"Outsourced Formula\",type:ControlType.String}});addFonts(FramerchF_k81lP,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...DisplayFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerchF_k81lP\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K8uMP_G90\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"QtxNZt4OG\\\":\\\"costPerYearWithCalldeskFormula\\\",\\\"VSO02LOIl\\\":\\\"callbotFormula\\\",\\\"dVMhKxNOP\\\":\\\"inHouseFormula\\\",\\\"A_mJV6nR5\\\":\\\"outsourcedFormula\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"135.5\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (befeeaf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LayoutJumpPreventer from\"https://framerusercontent.com/modules/h8ioHyt4BUxuvVCE1Q10/aTM6mEMGlM19JjX8exDe/AvoidLayoutJumping_Prod.js\";import Slider from\"https://framerusercontent.com/modules/yWGcuobxIWbony0gNYSr/e9OfeeYO8mTYSYrqFGGX/Slider.js\";import Display from\"https://framerusercontent.com/modules/tbV3zoGR8jVK3utSEpnN/rSd6LxVNj22YwF2KPSW6/AdvancedDisplay.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2aNLvu3vMxZX8EqwSxoY/onBgXtnJJbtd1TKuRGHO/c0IvWBhtq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gV6bYmAUOgOyJzQqKEDC/1M1P9Ijj3ZPWy9VWsups/wFYdeHhoE.js\";import ROICalculatorTodaysCosts from\"https://framerusercontent.com/modules/sV80HPKdrNnXcnozGhuZ/osqBMsLsJdr9n4ddvBMf/aSCD5GICP.js\";import ROICalculatorCalldeskCosts from\"https://framerusercontent.com/modules/gtFZhRQIg2W16xhLU6zM/lATMx0jeu1Edc5ISTsqA/chF_k81lP.js\";import ButtonMain from\"https://framerusercontent.com/modules/roeLUQhYvB2jCrwSiM0C/Gel3E4Kuk0cuqRCWZUH8/KlBdi9eQ0.js\";import Toggle from\"https://framerusercontent.com/modules/odYvRMiztA1k5Ot6k79k/QPUDxQgsQ4yFpMNqaps9/og70cTdfO.js\";const ToggleFonts=getFonts(Toggle);const DisplayFonts=getFonts(Display);const SliderFonts=getFonts(Slider);const ROICalculatorTodaysCostsFonts=getFonts(ROICalculatorTodaysCosts);const ROICalculatorCalldeskCostsFonts=getFonts(ROICalculatorCalldeskCosts);const ButtonMainFonts=getFonts(ButtonMain);const LayoutJumpPreventerFonts=getFonts(LayoutJumpPreventer);const cycleOrder=[\"fMTK29wcS\",\"nntAypvXw\",\"DutADTbgU\",\"g8_WhVusg\"];const serializationHash=\"framer-KWUyq\";const variantClassNames={DutADTbgU:\"framer-v-1rjg19v\",fMTK29wcS:\"framer-v-1gp3i4w\",g8_WhVusg:\"framer-v-5g3sno\",nntAypvXw:\"framer-v-1if80xc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.7,0,.05,1],type:\"tween\"};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"40px 20px 40px 20px\";}else{return\"40px\";}};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"column\";}else{return\"row\";}};const transition2={duration:0,type:\"tween\"};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={All:\"fMTK29wcS\",Inhouse:\"nntAypvXw\",None:\"g8_WhVusg\",Outsource:\"DutADTbgU\"};const getProps=({height,id,mobile,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fMTK29wcS\",YqKrHCvkb:mobile??props.YqKrHCvkb};};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,YqKrHCvkb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fMTK29wcS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const oQbzDYZyV1ovx7gu=activeVariantCallback(async(...args)=>{setVariant(\"DutADTbgU\");});const oQbzDYZyVhbkmhk=activeVariantCallback(async(...args)=>{setVariant(\"g8_WhVusg\");});const oQbzDYZyVm7gegp=activeVariantCallback(async(...args)=>{setVariant(\"fMTK29wcS\");});const oQbzDYZyV8yc7fy=activeVariantCallback(async(...args)=>{setVariant(\"nntAypvXw\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const padding=numberToPixelString(convertFromBoolean(YqKrHCvkb,activeLocale));const stackDirection=convertFromBoolean1(YqKrHCvkb,activeLocale);const router=useRouter();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-1gp3i4w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"fMTK29wcS\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2e909b54-4ddd-4103-b29c-b52df2dd5fc4, rgba(0, 0, 0, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-28a3bf09-9709-4da0-9fe3-abf34c59d0cd, rgb(255, 255, 255))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},...addPropertyOverrides({DutADTbgU:{\"data-framer-name\":\"Outsource\"},g8_WhVusg:{\"data-framer-name\":\"None\"},nntAypvXw:{\"data-framer-name\":\"Inhouse\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ebdqg9\",\"data-border\":true,\"data-framer-name\":\"Values\",layoutDependency:layoutDependency,layoutId:\"KZtSspPuQ\",style:{\"--10ocmuz\":padding,\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2e909b54-4ddd-4103-b29c-b52df2dd5fc4, rgba(0, 0, 0, 0.05))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-28a3bf09-9709-4da0-9fe3-abf34c59d0cd, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ek0q5\",\"data-framer-name\":\"In-House\",layoutDependency:layoutDependency,layoutId:\"kkiJo5xsn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c6th3\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"Dz4RmuSit\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0)))\"},children:\"Do you have in-house agents?\"})}),className:\"framer-1x4bxag\",\"data-framer-name\":\"Do you have in-house agents?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xRObLOOqz\",style:{\"--extracted-r6o4lv\":\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m45h79-container\",layoutDependency:layoutDependency,layoutId:\"nldmjUORn-container\",nodeId:\"nldmjUORn\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Toggle,{GMLVw1GY3:\"Newsletter\",height:\"100%\",hhkPoE44m:false,id:\"nldmjUORn\",layoutId:\"nldmjUORn\",oQbzDYZyV:oQbzDYZyV1ovx7gu,variant:\"NOOOzwE3m\",width:\"100%\",...addPropertyOverrides({DutADTbgU:{oQbzDYZyV:oQbzDYZyVm7gegp,variant:\"EDsMUqPE3\"},g8_WhVusg:{oQbzDYZyV:oQbzDYZyV8yc7fy,variant:\"EDsMUqPE3\"},nntAypvXw:{oQbzDYZyV:oQbzDYZyVhbkmhk}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ige7a\",\"data-framer-name\":\"Sliders\",layoutDependency:layoutDependency,layoutId:\"WtZGHDTVQ\",style:{opacity:1},variants:{DutADTbgU:{opacity:0},g8_WhVusg:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ne9i5r\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"k0RTlJfvo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h7rtcg\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"Lw92pIEJM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"How many calls per year do they handle?\"})}),className:\"framer-1jgq2zt\",\"data-framer-name\":\"How many calls per year do they handle?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e7mYCOpKc\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vkyg0c-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"WsG1PK6Of-container\",nodeId:\"WsG1PK6Of\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:0,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:\"inhousecalls\",height:\"100%\",id:\"WsG1PK6Of\",layoutId:\"WsG1PK6Of\",prefix:\"\",suffix:\"\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ahaaja-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h5DV_8FMS-container\",nodeId:\"h5DV_8FMS\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Slider,{defaultValue:2e5,height:\"100%\",id:\"h5DV_8FMS\",knob:{borderColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",borderWidth:0,color:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",shadow:\"\",size:10},layoutId:\"h5DV_8FMS\",max:1e7,min:1e4,step:1e3,style:{maxWidth:\"100%\",width:\"100%\"},track:{activeColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",color:\"var(--token-4314ee0f-0c7f-4d5c-848e-b0d8c6a7ba16, rgba(0, 0, 0, 0.02))\",height:4,radius:200},variableName:\"inhousecalls\",width:\"100%\",...addPropertyOverrides({DutADTbgU:{defaultValue:0,min:0},g8_WhVusg:{defaultValue:0,min:0}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qk43da\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"GNrwr7tc0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16gyqkg\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"WlKir9vzo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"What is their cost per call?\"})}),className:\"framer-z4hm1j\",\"data-framer-name\":\"What is their cost per call?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KAnyXQZtg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wwhah9-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"zDc96zhUF-container\",nodeId:\"zDc96zhUF\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:\"inhousecost\",height:\"100%\",id:\"zDc96zhUF\",layoutId:\"zDc96zhUF\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sh9bgj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BMwwkiMzR-container\",nodeId:\"BMwwkiMzR\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Slider,{defaultValue:3.5,height:\"100%\",id:\"BMwwkiMzR\",knob:{borderColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",borderWidth:0,color:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",shadow:\"\",size:10},layoutId:\"BMwwkiMzR\",max:15,min:.5,step:.1,style:{maxWidth:\"100%\",width:\"100%\"},track:{activeColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",color:\"var(--token-4314ee0f-0c7f-4d5c-848e-b0d8c6a7ba16, rgba(0, 0, 0, 0.02))\",height:4,radius:200},variableName:\"inhousecost\",width:\"100%\",...addPropertyOverrides({DutADTbgU:{defaultValue:0,min:0},g8_WhVusg:{defaultValue:0,min:0}},baseVariant,gestureVariant)})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jux1sq\",\"data-framer-name\":\"Outsourced\",layoutDependency:layoutDependency,layoutId:\"K585YKc4t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lnq4nn\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"GsSAIZKpW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0)))\"},children:\"Do you have outsourced agents?\"})}),className:\"framer-1ia2poq\",\"data-framer-name\":\"Do you have outsourced agents?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ba0VR05MK\",style:{\"--extracted-r6o4lv\":\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tvs87b-container\",layoutDependency:layoutDependency,layoutId:\"kZkdtuJHe-container\",nodeId:\"kZkdtuJHe\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Toggle,{GMLVw1GY3:\"Newsletter\",height:\"100%\",hhkPoE44m:false,id:\"kZkdtuJHe\",layoutId:\"kZkdtuJHe\",oQbzDYZyV:oQbzDYZyV8yc7fy,variant:\"NOOOzwE3m\",width:\"100%\",...addPropertyOverrides({DutADTbgU:{oQbzDYZyV:oQbzDYZyVhbkmhk},g8_WhVusg:{oQbzDYZyV:oQbzDYZyV1ovx7gu,variant:\"EDsMUqPE3\"},nntAypvXw:{oQbzDYZyV:oQbzDYZyVm7gegp,variant:\"EDsMUqPE3\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-187wlrt\",\"data-framer-name\":\"Sliders\",layoutDependency:layoutDependency,layoutId:\"dNatMz9VT\",style:{opacity:1},variants:{DutADTbgU:{opacity:1},g8_WhVusg:{opacity:0},nntAypvXw:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oykjg6\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"RFQmvgSQW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fcipfe\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"ROZBU6gNC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"How many calls per year do they handle?\"})}),className:\"framer-1hknhj3\",\"data-framer-name\":\"How many calls per year do they handle?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fpMfaKAsU\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n77uks-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"xpz3pvlVI-container\",nodeId:\"xpz3pvlVI\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:0,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:\"outsourcecalls\",height:\"100%\",id:\"xpz3pvlVI\",layoutId:\"xpz3pvlVI\",prefix:\"\",suffix:\"\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15lol1o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"quE2PqT39-container\",nodeId:\"quE2PqT39\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Slider,{defaultValue:1e5,height:\"100%\",id:\"quE2PqT39\",knob:{borderColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",borderWidth:0,color:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",shadow:\"\",size:10},layoutId:\"quE2PqT39\",max:1e7,min:1e4,step:1e3,style:{maxWidth:\"100%\",width:\"100%\"},track:{activeColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",color:\"var(--token-4314ee0f-0c7f-4d5c-848e-b0d8c6a7ba16, rgba(0, 0, 0, 0.02))\",height:4,radius:200},variableName:\"outsourcecalls\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{defaultValue:0,min:0},nntAypvXw:{defaultValue:0,min:0}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epubjp\",\"data-framer-name\":\"Slider\",layoutDependency:layoutDependency,layoutId:\"Ozln3xmsR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hvxm8q\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"x9SN_Xuvk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gzle7j\",\"data-styles-preset\":\"wFYdeHhoE\",children:\"What is their cost per call?\"})}),className:\"framer-1ul7byo\",\"data-framer-name\":\"What is their cost per call?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xQwvn3xGE\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u3h56r-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Qc8qudyuj-container\",nodeId:\"Qc8qudyuj\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:\"outsourcecost\",height:\"100%\",id:\"Qc8qudyuj\",layoutId:\"Qc8qudyuj\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iq8ja1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"A9MeLAwKc-container\",nodeId:\"A9MeLAwKc\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Slider,{defaultValue:1.5,height:\"100%\",id:\"A9MeLAwKc\",knob:{borderColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",borderWidth:0,color:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",shadow:\"\",size:10},layoutId:\"A9MeLAwKc\",max:10,min:.25,step:.05,style:{maxWidth:\"100%\",width:\"100%\"},track:{activeColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",color:\"var(--token-4314ee0f-0c7f-4d5c-848e-b0d8c6a7ba16, rgba(0, 0, 0, 0.02))\",height:4,radius:200},variableName:\"outsourcecost\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{defaultValue:0,min:0},nntAypvXw:{defaultValue:0,min:0}},baseVariant,gestureVariant)})})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cx2t3k\",\"data-border\":true,\"data-framer-name\":\"Values\",layoutDependency:layoutDependency,layoutId:\"aihKgJPwJ\",style:{\"--10ocmuz\":padding,\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2e909b54-4ddd-4103-b29c-b52df2dd5fc4, rgba(0, 0, 0, 0.05))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-4314ee0f-0c7f-4d5c-848e-b0d8c6a7ba16, rgba(0, 0, 0, 0.02))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gb3tsm\",\"data-framer-name\":\"Total\",layoutDependency:layoutDependency,layoutId:\"omDsCx7CE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",children:\"Total calls per year\"})}),className:\"framer-1uyrs2t\",\"data-framer-name\":\"Total calls per year\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iJCjunXS0\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h0m5y8-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"DZovXENgI-container\",nodeId:\"DZovXENgI\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:0,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-0.02em\",lineHeight:\"1.3em\"},formula:\"inhousecalls+outsourcecalls\",height:\"100%\",id:\"DZovXENgI\",layoutId:\"DZovXENgI\",prefix:\"\",suffix:\"\",textColor:\"var(--token-1179e181-b9b9-4654-b3d0-f343b41ba455, rgb(0, 0, 0))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:`calc(${componentViewport?.width||\"100vw\"} - ${convertFromBoolean(YqKrHCvkb,activeLocale)*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kr8k38-container\",layoutDependency:layoutDependency,layoutId:\"eIPwyytfJ-container\",nodeId:\"eIPwyytfJ\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(ROICalculatorTodaysCosts,{BORlE_1yX:\"outsourcecalls*outsourcecost\",height:\"100%\",id:\"eIPwyytfJ\",jgdS3v2Vx:\"(outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)\",layoutId:\"eIPwyytfJ\",Ri_vKJNDz:\"inhousecalls*inhousecost\",style:{width:\"100%\"},variant:\"RAd6JNGmK\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{BORlE_1yX:\"0\",jgdS3v2Vx:\"0\",Ri_vKJNDz:\"0\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:135,width:`calc(${componentViewport?.width||\"100vw\"} - ${convertFromBoolean(YqKrHCvkb,activeLocale)*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sptwky-container\",layoutDependency:layoutDependency,layoutId:\"Cs3REDMgv-container\",nodeId:\"Cs3REDMgv\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(ROICalculatorCalldeskCosts,{A_mJV6nR5:\"(outsourcecalls + inhousecalls) * 0.25 * (outsourcecalls / (inhousecalls + outsourcecalls)) * outsourcecost\",dVMhKxNOP:\"(outsourcecalls + inhousecalls) * 0.25 * (inhousecalls / (inhousecalls + outsourcecalls)) * inhousecost\",height:\"100%\",id:\"Cs3REDMgv\",layoutId:\"Cs3REDMgv\",QtxNZt4OG:\"(outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000\",style:{width:\"100%\"},variant:\"K8uMP_G90\",VSO02LOIl:\"10000 + 5000 + (outsourcecalls + inhousecalls) * (\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n)\\n\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{A_mJV6nR5:\"0\",dVMhKxNOP:\"0\",QtxNZt4OG:\"0\",VSO02LOIl:\"0\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eeooy4\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"pCqeVaOvp\",style:{\"--10ocmuz\":padding,backgroundColor:\"var(--token-28a3bf09-9709-4da0-9fe3-abf34c59d0cd, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mi6io8\",\"data-framer-name\":\"Metrics\",layoutDependency:layoutDependency,layoutId:\"usvaz4UnK\",style:{\"--1chm22c\":stackDirection===\"column\"?undefined:\"1 0 0px\",\"--1dp6oge\":stackDirection,\"--vfs2bx\":stackDirection===\"column\"?\"100%\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x4idhc\",\"data-framer-name\":\"Savings\",layoutDependency:layoutDependency,layoutId:\"OKC6UrWMG\",children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mezbr9-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"muUXLVXHu-container\",nodeId:\"muUXLVXHu\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:true,addCommas:true,debug:false,decimals:1,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.025em\",lineHeight:\"1.1em\",textAlign:\"center\"},formula:\"(((outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)) - ((outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000))\",height:\"100%\",id:\"muUXLVXHu\",layoutId:\"muUXLVXHu\",prefix:\"\",suffix:\" €\",textColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{formula:\"0\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Savings per year\"})}),className:\"framer-whwt7f\",\"data-framer-name\":\"Contact center costs savings per year\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oFykU4Aht\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w8okpq\",\"data-framer-name\":\"Savings\",layoutDependency:layoutDependency,layoutId:\"yFHSPIZMF\",children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nduv4o-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"qNveYrjHO-container\",nodeId:\"qNveYrjHO\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:0,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.025em\",lineHeight:\"1.1em\",textAlign:\"center\"},formula:\"(((outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)) - ((outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000)) / ((outsourcecalls*outsourcecost)+(inhousecalls*inhousecost))*100\",height:\"100%\",id:\"qNveYrjHO\",layoutId:\"qNveYrjHO\",prefix:\"\",suffix:\"%\",textColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{formula:\"0\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Costs reduction per year\"})}),className:\"framer-11oufo9\",\"data-framer-name\":\"Contact center costs savings per year\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yryz2kXLE\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vouxvj\",\"data-framer-name\":\"Savings\",layoutDependency:layoutDependency,layoutId:\"FJ4XtJ3t3\",children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-va0iim-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"uRyF9UFhb-container\",nodeId:\"uRyF9UFhb\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(Display,{abbreviateLargeNumbers:false,addCommas:true,debug:false,decimals:0,displayFormat:\"US\",font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.025em\",lineHeight:\"1.1em\",textAlign:\"center\"},formula:\"(((outsourcecalls*outsourcecost)+(inhousecalls*inhousecost)) - ((outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000)) / ((outsourcecalls + inhousecalls) * ((\\n  outsourcecalls + inhousecalls < 50000 ? 0.50 :\\n  outsourcecalls + inhousecalls < 100000 ? 0.47 :\\n  outsourcecalls + inhousecalls < 200000 ? 0.43 :\\n  outsourcecalls + inhousecalls < 300000 ? 0.40 :\\n  outsourcecalls + inhousecalls < 500000 ? 0.37 :\\n  outsourcecalls + inhousecalls < 750000 ? 0.33 :\\n  outsourcecalls + inhousecalls < 1000000 ? 0.30 :\\n  0.25\\n) + 0.25 * ((inhousecost * (inhousecalls / (inhousecalls + outsourcecalls))) + (outsourcecost * (outsourcecalls / (inhousecalls + outsourcecalls))))) + 15000) * 100\",height:\"100%\",id:\"uRyF9UFhb\",layoutId:\"uRyF9UFhb\",prefix:\"\",suffix:\"%\",textColor:\"var(--token-f255b70e-9e8f-4b9d-af90-b4636c811b1b, rgb(65, 191, 139))\",width:\"100%\",...addPropertyOverrides({g8_WhVusg:{formula:\"0\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xigm5s\",\"data-styles-preset\":\"c0IvWBhtq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Callbot project ROI\"})}),className:\"framer-1havt8u\",\"data-framer-name\":\"Contact center costs savings per year\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SHuMBbXq6\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OAGOMb8jt\"},implicitPathVariables:undefined},{href:{webPageId:\"OAGOMb8jt\"},implicitPathVariables:undefined},{href:{webPageId:\"OAGOMb8jt\"},implicitPathVariables:undefined},{href:{webPageId:\"OAGOMb8jt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} - ${convertFromBoolean(YqKrHCvkb,activeLocale)*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2ae1ny-container\",layoutDependency:layoutDependency,layoutId:\"cWPyAByvV-container\",nodeId:\"cWPyAByvV\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(ButtonMain,{height:\"100%\",id:\"cWPyAByvV\",layoutId:\"cWPyAByvV\",MmkRdREKk:resolvedLinks[0],pzm1f9fmF:\"Request demo\",style:{height:\"100%\",width:\"100%\"},variant:\"SiF5WdeI4\",wdfUGitP3:false,width:\"100%\",...addPropertyOverrides({DutADTbgU:{MmkRdREKk:resolvedLinks[2]},g8_WhVusg:{MmkRdREKk:resolvedLinks[3]},nntAypvXw:{MmkRdREKk:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dap5yb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"funX1xZeI-container\",nodeId:\"funX1xZeI\",rendersWithMotion:true,scopeId:\"LzZw0KpVs\",children:/*#__PURE__*/_jsx(LayoutJumpPreventer,{direction:\"vertical\",height:\"100%\",id:\"funX1xZeI\",layoutId:\"funX1xZeI\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KWUyq.framer-176wprk, .framer-KWUyq .framer-176wprk { display: block; }\",\".framer-KWUyq.framer-1gp3i4w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-KWUyq .framer-1ebdqg9, .framer-KWUyq .framer-cx2t3k, .framer-KWUyq .framer-eeooy4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: var(--10ocmuz); position: relative; width: 100%; }\",\".framer-KWUyq .framer-3ek0q5, .framer-KWUyq .framer-1jux1sq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-1c6th3, .framer-KWUyq .framer-h7rtcg, .framer-KWUyq .framer-16gyqkg, .framer-KWUyq .framer-1lnq4nn, .framer-KWUyq .framer-1fcipfe, .framer-KWUyq .framer-1hvxm8q, .framer-KWUyq .framer-1gb3tsm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-1x4bxag, .framer-KWUyq .framer-1jgq2zt, .framer-KWUyq .framer-z4hm1j, .framer-KWUyq .framer-1ia2poq, .framer-KWUyq .framer-1hknhj3, .framer-KWUyq .framer-1ul7byo, .framer-KWUyq .framer-1uyrs2t { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-KWUyq .framer-m45h79-container, .framer-KWUyq .framer-1vkyg0c-container, .framer-KWUyq .framer-wwhah9-container, .framer-KWUyq .framer-1tvs87b-container, .framer-KWUyq .framer-n77uks-container, .framer-KWUyq .framer-u3h56r-container, .framer-KWUyq .framer-1h0m5y8-container, .framer-KWUyq .framer-1mezbr9-container, .framer-KWUyq .framer-1nduv4o-container, .framer-KWUyq .framer-va0iim-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KWUyq .framer-14ige7a, .framer-KWUyq .framer-187wlrt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-ne9i5r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-ahaaja-container, .framer-KWUyq .framer-1sh9bgj-container, .framer-KWUyq .framer-15lol1o-container, .framer-KWUyq .framer-iq8ja1-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-KWUyq .framer-qk43da, .framer-KWUyq .framer-1oykjg6, .framer-KWUyq .framer-epubjp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-1kr8k38-container, .framer-KWUyq .framer-1sptwky-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KWUyq .framer-mi6io8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: var(--1dp6oge); flex-wrap: nowrap; gap: 40px 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-x4idhc, .framer-KWUyq .framer-w8okpq, .framer-KWUyq .framer-vouxvj { align-content: center; align-items: center; display: flex; flex: var(--1chm22c); flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: var(--vfs2bx); }\",\".framer-KWUyq .framer-whwt7f, .framer-KWUyq .framer-11oufo9, .framer-KWUyq .framer-1havt8u { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KWUyq .framer-2ae1ny-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-KWUyq .framer-dap5yb-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; width: auto; z-index: 1; }\",\".framer-KWUyq.framer-v-1if80xc .framer-187wlrt, .framer-KWUyq.framer-v-1rjg19v .framer-14ige7a, .framer-KWUyq.framer-v-5g3sno .framer-14ige7a, .framer-KWUyq.framer-v-5g3sno .framer-187wlrt { bottom: -60px; height: 20px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; }\",\".framer-KWUyq.framer-v-5g3sno .framer-1mezbr9-container, .framer-KWUyq.framer-v-5g3sno .framer-1nduv4o-container, .framer-KWUyq.framer-v-5g3sno .framer-va0iim-container { order: 0; }\",\".framer-KWUyq.framer-v-5g3sno .framer-whwt7f, .framer-KWUyq.framer-v-5g3sno .framer-11oufo9, .framer-KWUyq.framer-v-5g3sno .framer-1havt8u { order: 2; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KWUyq[data-border=\"true\"]::after, .framer-KWUyq [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 892\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nntAypvXw\":{\"layout\":[\"fixed\",\"auto\"]},\"DutADTbgU\":{\"layout\":[\"fixed\",\"auto\"]},\"g8_WhVusg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YqKrHCvkb\":\"mobile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLzZw0KpVs=withCSS(Component,css,\"framer-KWUyq\");export default FramerLzZw0KpVs;FramerLzZw0KpVs.displayName=\"Component\";FramerLzZw0KpVs.defaultProps={height:892,width:720};addPropertyControls(FramerLzZw0KpVs,{variant:{options:[\"fMTK29wcS\",\"nntAypvXw\",\"DutADTbgU\",\"g8_WhVusg\"],optionTitles:[\"All\",\"Inhouse\",\"Outsource\",\"None\"],title:\"Variant\",type:ControlType.Enum},YqKrHCvkb:{defaultValue:false,title:\"Mobile\",type:ControlType.Boolean}});addFonts(FramerLzZw0KpVs,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]},...ToggleFonts,...DisplayFonts,...SliderFonts,...ROICalculatorTodaysCostsFonts,...ROICalculatorCalldeskCostsFonts,...ButtonMainFonts,...LayoutJumpPreventerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLzZw0KpVs\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"720\",\"framerIntrinsicHeight\":\"892\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nntAypvXw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DutADTbgU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g8_WhVusg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"YqKrHCvkb\\\":\\\"mobile\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LzZw0KpVs.map"],"mappings":"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"}