{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/gcpN5ko8R3RIS6sEtGyx/bQSKRdp9K7SprTxAvcqJ/CkkbKUPpL.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"I699:14804;699:13521;699:13504\",\"BpyiLRL6r\",\"m4B1udUKg\",\"yHwakReCN\",\"SLdq7t1nm\",\"Zuq3pmgJc\",\"JWOCPObWf\",\"P_GXv7pq7\",\"ixIbkJa0r\",\"wtEkjWw3n\",\"ajAaidBlN\",\"DuYFiWb7J\",\"g23DuRuN9\",\"cJsZSQQ56\",\"ujgPWqwvi\",\"hjMO0S6x9\",\"zs3XdItd8\",\"zCZbZtmln\",\"A8lfqt1D_\",\"z0mOX1qIb\",\"UT9hGVFj4\",\"kUcj5rjiK\",\"gaHDwAach\",\"v4pBwFsab\",\"BRDZEi7Vd\",\"ik3FZsSLH\",\"zyogR1clo\",\"LmsqZs1TH\",\"Z6KmCvkzl\",\"BP3CMXJoK\",\"AzhZQaBws\",\"G9PYAPNsZ\",\"Fr7XoPpwR\",\"Nz_4lTxxo\",\"neSIhME5M\",\"Y2sYdYvBi\"];const serializationHash=\"framer-Ifqhy\";const variantClassNames={\"I699:14804;699:13521;699:13504\":\"framer-v-r0om8s\",A8lfqt1D_:\"framer-v-1yh8fqu\",ajAaidBlN:\"framer-v-1bnu6fj\",AzhZQaBws:\"framer-v-psbevd\",BP3CMXJoK:\"framer-v-1hssuan\",BpyiLRL6r:\"framer-v-jdwz3k\",BRDZEi7Vd:\"framer-v-16pyxs7\",cJsZSQQ56:\"framer-v-1q0hxym\",DuYFiWb7J:\"framer-v-1tragjo\",Fr7XoPpwR:\"framer-v-1qxcfw1\",g23DuRuN9:\"framer-v-ewkmzg\",G9PYAPNsZ:\"framer-v-rlayt2\",gaHDwAach:\"framer-v-1srcgoc\",hjMO0S6x9:\"framer-v-6398h0\",ik3FZsSLH:\"framer-v-1b3xrx3\",ixIbkJa0r:\"framer-v-2d7mdg\",JWOCPObWf:\"framer-v-1y243no\",kUcj5rjiK:\"framer-v-n9eyd4\",LmsqZs1TH:\"framer-v-1f3qb8v\",m4B1udUKg:\"framer-v-1m0c90f\",neSIhME5M:\"framer-v-yprp4o\",Nz_4lTxxo:\"framer-v-1jaxgbx\",P_GXv7pq7:\"framer-v-1bdc45c\",SLdq7t1nm:\"framer-v-10yc05h\",ujgPWqwvi:\"framer-v-tepnay\",UT9hGVFj4:\"framer-v-f05ndw\",v4pBwFsab:\"framer-v-1q8ii2m\",wtEkjWw3n:\"framer-v-1rjpfg6\",Y2sYdYvBi:\"framer-v-za7wxl\",yHwakReCN:\"framer-v-jin7ke\",z0mOX1qIb:\"framer-v-13dpku9\",Z6KmCvkzl:\"framer-v-6sckd6\",zCZbZtmln:\"framer-v-bs2d1t\",zs3XdItd8:\"framer-v-1fcmmk1\",Zuq3pmgJc:\"framer-v-ujed6\",zyogR1clo:\"framer-v-1nvpg3a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Calculator blue\":\"P_GXv7pq7\",\"Controller blue\":\"G9PYAPNsZ\",\"Crown blue\":\"m4B1udUKg\",\"Email check blue\":\"z0mOX1qIb\",\"Email check\":\"zCZbZtmln\",\"Form blue\":\"Zuq3pmgJc\",\"Gift blue\":\"Y2sYdYvBi\",\"Graph 1 blue\":\"yHwakReCN\",\"Graph 1\":\"BpyiLRL6r\",\"Graph 2 blue\":\"kUcj5rjiK\",\"Graph 2\":\"UT9hGVFj4\",\"Omnichannel.blue\":\"cJsZSQQ56\",\"Package blue\":\"BP3CMXJoK\",\"Paint brush blue\":\"LmsqZs1TH\",\"People blue\":\"DuYFiWb7J\",\"Rocket blue\":\"Nz_4lTxxo\",\"Speak blue\":\"v4pBwFsab\",\"Test tube blue\":\"zyogR1clo\",\"Test tube\":\"BRDZEi7Vd\",\"Thunder blue\":\"ajAaidBlN\",\"Ticket blue\":\"A8lfqt1D_\",\"voucher check blue\":\"hjMO0S6x9\",\"voucher check\":\"ujgPWqwvi\",Calculator:\"JWOCPObWf\",Controller:\"AzhZQaBws\",Crown:\"I699:14804;699:13521;699:13504\",Form:\"SLdq7t1nm\",Gift:\"neSIhME5M\",Omnichannel:\"g23DuRuN9\",Package:\"Z6KmCvkzl\",Paintbrush:\"ik3FZsSLH\",People:\"wtEkjWw3n\",Rocket:\"Fr7XoPpwR\",Speak:\"gaHDwAach\",Thunder:\"ixIbkJa0r\",Ticket:\"zs3XdItd8\"};const getProps=({click,height,id,width,...props})=>{return{...props,HK_zN1IYv:click??props.HK_zN1IYv,variant:humanReadableVariantMap[props.variant]??props.variant??\"I699:14804;699:13521;699:13504\"};};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,HK_zN1IYv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I699:14804;699:13521;699:13504\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaphhci=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(HK_zN1IYv){const res=await HK_zN1IYv(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"BpyiLRL6r\",\"yHwakReCN\",\"SLdq7t1nm\",\"Zuq3pmgJc\",\"JWOCPObWf\",\"P_GXv7pq7\",\"ixIbkJa0r\",\"wtEkjWw3n\",\"ajAaidBlN\",\"DuYFiWb7J\",\"g23DuRuN9\",\"cJsZSQQ56\",\"ujgPWqwvi\",\"hjMO0S6x9\",\"zs3XdItd8\",\"zCZbZtmln\",\"A8lfqt1D_\",\"z0mOX1qIb\",\"UT9hGVFj4\",\"kUcj5rjiK\",\"gaHDwAach\",\"v4pBwFsab\",\"BRDZEi7Vd\",\"ik3FZsSLH\",\"zyogR1clo\",\"LmsqZs1TH\",\"Z6KmCvkzl\",\"BP3CMXJoK\",\"AzhZQaBws\",\"G9PYAPNsZ\",\"Fr7XoPpwR\",\"Nz_4lTxxo\",\"neSIhME5M\",\"Y2sYdYvBi\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ixIbkJa0r\",\"ajAaidBlN\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"zs3XdItd8\",\"A8lfqt1D_\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"BRDZEi7Vd\",\"zyogR1clo\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"Fr7XoPpwR\",\"Nz_4lTxxo\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"BpyiLRL6r\",\"yHwakReCN\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"wtEkjWw3n\",\"DuYFiWb7J\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"zCZbZtmln\",\"z0mOX1qIb\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if([\"ik3FZsSLH\",\"LmsqZs1TH\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"SLdq7t1nm\",\"Zuq3pmgJc\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"g23DuRuN9\",\"cJsZSQQ56\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"UT9hGVFj4\",\"kUcj5rjiK\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if([\"Z6KmCvkzl\",\"BP3CMXJoK\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if([\"neSIhME5M\",\"Y2sYdYvBi\"].includes(baseVariant))return true;return false;};const isDisplayed14=()=>{if([\"JWOCPObWf\",\"P_GXv7pq7\"].includes(baseVariant))return true;return false;};const isDisplayed15=()=>{if([\"ujgPWqwvi\",\"hjMO0S6x9\"].includes(baseVariant))return true;return false;};const isDisplayed16=()=>{if([\"gaHDwAach\",\"v4pBwFsab\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if([\"AzhZQaBws\",\"G9PYAPNsZ\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-r0om8s\",className,classNames),\"data-framer-name\":\"Crown\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I699:14804;699:13521;699:13504\",onTap:onTaphhci,ref:refBinding,style:{...style},...addPropertyOverrides({A8lfqt1D_:{\"data-framer-name\":\"Ticket blue\"},ajAaidBlN:{\"data-framer-name\":\"Thunder blue\"},AzhZQaBws:{\"data-framer-name\":\"Controller\"},BP3CMXJoK:{\"data-framer-name\":\"Package blue\"},BpyiLRL6r:{\"data-framer-name\":\"Graph 1\"},BRDZEi7Vd:{\"data-framer-name\":\"Test tube\"},cJsZSQQ56:{\"data-framer-name\":\"Omnichannel.blue\"},DuYFiWb7J:{\"data-framer-name\":\"People blue\"},Fr7XoPpwR:{\"data-framer-name\":\"Rocket\"},g23DuRuN9:{\"data-framer-name\":\"Omnichannel\"},G9PYAPNsZ:{\"data-framer-name\":\"Controller blue\"},gaHDwAach:{\"data-framer-name\":\"Speak\"},hjMO0S6x9:{\"data-framer-name\":\"voucher check blue\"},ik3FZsSLH:{\"data-framer-name\":\"Paintbrush\"},ixIbkJa0r:{\"data-framer-name\":\"Thunder\"},JWOCPObWf:{\"data-framer-name\":\"Calculator\"},kUcj5rjiK:{\"data-framer-name\":\"Graph 2 blue\"},LmsqZs1TH:{\"data-framer-name\":\"Paint brush blue\"},m4B1udUKg:{\"data-framer-name\":\"Crown blue\"},neSIhME5M:{\"data-framer-name\":\"Gift\"},Nz_4lTxxo:{\"data-framer-name\":\"Rocket blue\"},P_GXv7pq7:{\"data-framer-name\":\"Calculator blue\"},SLdq7t1nm:{\"data-framer-name\":\"Form\"},ujgPWqwvi:{\"data-framer-name\":\"voucher check\"},UT9hGVFj4:{\"data-framer-name\":\"Graph 2\"},v4pBwFsab:{\"data-framer-name\":\"Speak blue\"},wtEkjWw3n:{\"data-framer-name\":\"People\"},Y2sYdYvBi:{\"data-framer-name\":\"Gift blue\"},yHwakReCN:{\"data-framer-name\":\"Graph 1 blue\"},z0mOX1qIb:{\"data-framer-name\":\"Email check blue\"},Z6KmCvkzl:{\"data-framer-name\":\"Package\"},zCZbZtmln:{\"data-framer-name\":\"Email check\"},zs3XdItd8:{\"data-framer-name\":\"Ticket\"},Zuq3pmgJc:{\"data-framer-name\":\"Form blue\"},zyogR1clo:{\"data-framer-name\":\"Test tube blue\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-136uxc7\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hwpGVD8HP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 17\"><path d=\"M 3.778 16.346 L 16.222 16.346 M 9.611 0.886 C 9.649 0.817 9.705 0.76 9.774 0.721 C 9.842 0.681 9.92 0.66 10 0.66 C 10.08 0.66 10.158 0.681 10.226 0.721 C 10.295 0.76 10.351 0.817 10.389 0.886 L 13.013 5.771 C 13.076 5.884 13.163 5.983 13.269 6.059 C 13.375 6.135 13.497 6.187 13.625 6.211 C 13.754 6.236 13.887 6.232 14.014 6.2 C 14.141 6.169 14.26 6.11 14.361 6.028 L 18.163 2.833 C 18.236 2.775 18.326 2.741 18.42 2.736 C 18.513 2.731 18.607 2.756 18.685 2.806 C 18.764 2.856 18.825 2.93 18.858 3.016 C 18.892 3.102 18.897 3.197 18.872 3.286 L 16.353 12.218 C 16.301 12.401 16.191 12.562 16.037 12.678 C 15.884 12.793 15.696 12.857 15.503 12.858 L 4.498 12.858 C 4.304 12.857 4.117 12.794 3.963 12.678 C 3.809 12.563 3.699 12.401 3.647 12.218 L 1.129 3.287 C 1.104 3.198 1.109 3.103 1.143 3.017 C 1.176 2.931 1.237 2.857 1.315 2.807 C 1.394 2.757 1.487 2.732 1.581 2.737 C 1.675 2.742 1.765 2.776 1.838 2.834 L 5.639 6.028 C 5.74 6.11 5.859 6.169 5.986 6.201 C 6.113 6.233 6.246 6.237 6.375 6.212 C 6.503 6.188 6.625 6.136 6.731 6.059 C 6.837 5.983 6.924 5.885 6.987 5.772 Z\" fill=\"transparent\" stroke-width=\"1.46\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10410276732,withExternalLayout:true,...addPropertyOverrides({m4B1udUKg:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 17\"><path d=\"M 3.778 16.346 L 16.222 16.346 M 9.611 0.886 C 9.649 0.817 9.705 0.76 9.774 0.721 C 9.842 0.681 9.92 0.66 10 0.66 C 10.08 0.66 10.158 0.681 10.226 0.721 C 10.295 0.76 10.351 0.817 10.389 0.886 L 13.013 5.771 C 13.076 5.884 13.163 5.983 13.269 6.059 C 13.375 6.135 13.497 6.187 13.625 6.211 C 13.754 6.236 13.887 6.232 14.014 6.2 C 14.141 6.169 14.26 6.11 14.361 6.028 L 18.163 2.833 C 18.236 2.775 18.326 2.741 18.42 2.736 C 18.513 2.731 18.607 2.756 18.685 2.806 C 18.764 2.856 18.825 2.93 18.858 3.016 C 18.892 3.102 18.897 3.197 18.872 3.286 L 16.353 12.218 C 16.301 12.401 16.191 12.562 16.037 12.678 C 15.884 12.793 15.696 12.857 15.503 12.858 L 4.498 12.858 C 4.304 12.857 4.117 12.794 3.963 12.678 C 3.809 12.563 3.699 12.401 3.647 12.218 L 1.129 3.287 C 1.104 3.198 1.109 3.103 1.143 3.017 C 1.176 2.931 1.237 2.857 1.315 2.807 C 1.394 2.757 1.487 2.732 1.581 2.737 C 1.675 2.742 1.765 2.776 1.838 2.834 L 5.639 6.028 C 5.74 6.11 5.859 6.169 5.986 6.201 C 6.113 6.233 6.246 6.237 6.375 6.212 C 6.503 6.188 6.625 6.136 6.731 6.059 C 6.837 5.983 6.924 5.885 6.987 5.772 Z\" fill=\"transparent\" stroke-width=\"1.46\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(233, 10, 233))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8700930424}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10nrk06\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JJZR3hZA1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 32\"><path d=\"M 3.333 18.667 C 3.081 18.667 2.834 18.597 2.62 18.462 C 2.406 18.328 2.235 18.136 2.126 17.909 C 2.017 17.681 1.975 17.427 2.005 17.177 C 2.034 16.926 2.135 16.689 2.293 16.493 L 15.494 2.893 C 15.593 2.779 15.727 2.702 15.876 2.674 C 16.025 2.647 16.178 2.671 16.312 2.742 C 16.445 2.813 16.55 2.928 16.61 3.067 C 16.67 3.206 16.68 3.361 16.64 3.507 L 14.08 11.533 C 14.005 11.735 13.979 11.953 14.006 12.167 C 14.033 12.381 14.112 12.585 14.235 12.762 C 14.358 12.939 14.523 13.083 14.714 13.183 C 14.905 13.282 15.118 13.334 15.334 13.333 L 24.667 13.333 C 24.919 13.332 25.166 13.403 25.38 13.537 C 25.594 13.671 25.765 13.863 25.874 14.091 C 25.983 14.319 26.025 14.572 25.995 14.823 C 25.966 15.074 25.866 15.311 25.707 15.507 L 12.507 29.107 C 12.408 29.221 12.273 29.298 12.124 29.326 C 11.975 29.353 11.822 29.329 11.689 29.258 C 11.555 29.187 11.45 29.072 11.39 28.933 C 11.331 28.794 11.32 28.639 11.36 28.493 L 13.92 20.467 C 13.996 20.265 14.021 20.047 13.994 19.833 C 13.967 19.619 13.889 19.415 13.765 19.238 C 13.642 19.061 13.478 18.916 13.287 18.817 C 13.095 18.718 12.883 18.666 12.667 18.667 Z\" fill=\"transparent\" stroke-width=\"2.66667\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11963129741,withExternalLayout:true,...addPropertyOverrides({ajAaidBlN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 23\"><path d=\"M 2.381 13.417 C 2.201 13.417 2.024 13.366 1.871 13.27 C 1.719 13.174 1.597 13.036 1.519 12.872 C 1.441 12.708 1.411 12.526 1.432 12.346 C 1.453 12.166 1.525 11.995 1.638 11.854 L 11.067 2.08 C 11.138 1.997 11.234 1.942 11.34 1.922 C 11.446 1.902 11.556 1.919 11.651 1.971 C 11.747 2.022 11.822 2.104 11.864 2.204 C 11.907 2.304 11.915 2.416 11.886 2.52 L 10.057 8.29 C 10.003 8.435 9.985 8.591 10.005 8.745 C 10.024 8.899 10.08 9.045 10.168 9.173 C 10.256 9.3 10.373 9.404 10.51 9.475 C 10.647 9.547 10.798 9.584 10.953 9.583 L 17.619 9.583 C 17.799 9.583 17.976 9.633 18.129 9.73 C 18.281 9.826 18.404 9.964 18.482 10.128 C 18.559 10.291 18.589 10.474 18.568 10.654 C 18.547 10.834 18.476 11.004 18.362 11.145 L 8.933 20.92 C 8.863 21.002 8.766 21.058 8.66 21.078 C 8.554 21.098 8.444 21.08 8.349 21.029 C 8.254 20.978 8.179 20.896 8.136 20.796 C 8.093 20.696 8.086 20.584 8.114 20.479 L 9.943 14.71 C 9.997 14.565 10.015 14.409 9.996 14.255 C 9.977 14.101 9.92 13.955 9.832 13.827 C 9.744 13.7 9.627 13.596 9.49 13.525 C 9.354 13.453 9.202 13.416 9.048 13.417 Z\" fill=\"transparent\" stroke-width=\"1.43\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(233, 10, 233))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9113748097},ixIbkJa0r:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 23\"><path d=\"M 2.381 13.417 C 2.201 13.417 2.024 13.366 1.871 13.27 C 1.719 13.174 1.597 13.036 1.519 12.872 C 1.441 12.708 1.411 12.526 1.432 12.346 C 1.453 12.166 1.525 11.995 1.638 11.854 L 11.067 2.08 C 11.138 1.997 11.234 1.942 11.34 1.922 C 11.446 1.902 11.556 1.919 11.651 1.971 C 11.747 2.022 11.822 2.104 11.864 2.204 C 11.907 2.304 11.915 2.416 11.886 2.52 L 10.057 8.29 C 10.003 8.435 9.985 8.591 10.005 8.745 C 10.024 8.899 10.08 9.045 10.168 9.173 C 10.256 9.3 10.373 9.404 10.51 9.475 C 10.647 9.547 10.798 9.584 10.953 9.583 L 17.619 9.583 C 17.799 9.583 17.976 9.633 18.129 9.73 C 18.281 9.826 18.404 9.964 18.482 10.128 C 18.559 10.291 18.589 10.474 18.568 10.654 C 18.547 10.834 18.476 11.004 18.362 11.145 L 8.933 20.92 C 8.863 21.002 8.766 21.058 8.66 21.078 C 8.554 21.098 8.444 21.08 8.349 21.029 C 8.254 20.978 8.179 20.896 8.136 20.796 C 8.093 20.696 8.086 20.584 8.114 20.479 L 9.943 14.71 C 9.997 14.565 10.015 14.409 9.996 14.255 C 9.977 14.101 9.92 13.955 9.832 13.827 C 9.744 13.7 9.627 13.596 9.49 13.525 C 9.354 13.453 9.202 13.416 9.048 13.417 Z\" fill=\"transparent\" stroke-width=\"1.43\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9562645217}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-121zcog\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CuVwacCVF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 22\"><path d=\"M 16.333 1.667 L 16.333 4.333 M 16.333 17.667 L 16.333 20.333 M 16.333 9.667 L 16.333 12.333 M 1.667 7 C 2.727 7 3.745 7.421 4.495 8.171 C 5.245 8.922 5.667 9.939 5.667 11 C 5.667 12.061 5.245 13.078 4.495 13.828 C 3.745 14.578 2.727 15 1.667 15 L 1.667 17.666 C 1.667 18.374 1.947 19.052 2.448 19.552 C 2.948 20.052 3.626 20.333 4.333 20.333 L 25.666 20.333 C 26.374 20.333 27.052 20.052 27.552 19.552 C 28.052 19.052 28.333 18.374 28.333 17.666 L 28.333 15 C 27.272 15 26.255 14.578 25.505 13.828 C 24.755 13.078 24.333 12.061 24.333 11 C 24.333 9.939 24.755 8.922 25.505 8.171 C 26.255 7.421 27.272 7 28.333 7 L 28.333 4.333 C 28.333 3.626 28.052 2.948 27.552 2.448 C 27.052 1.947 26.374 1.667 25.666 1.667 L 4.333 1.667 C 3.626 1.667 2.948 1.947 2.448 2.448 C 1.947 2.948 1.667 3.626 1.667 4.333 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8751291676,withExternalLayout:true,...addPropertyOverrides({A8lfqt1D_:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 15\"><path d=\"M 10.889 1.136 L 10.889 2.954 M 10.889 12.045 L 10.889 13.864 M 10.889 6.591 L 10.889 8.409 M 1.111 4.773 C 1.818 4.773 2.497 5.06 2.997 5.571 C 3.497 6.083 3.778 6.777 3.778 7.5 C 3.778 8.223 3.497 8.917 2.997 9.428 C 2.497 9.94 1.818 10.227 1.111 10.227 L 1.111 12.045 C 1.111 12.528 1.298 12.99 1.632 13.331 C 1.965 13.672 2.417 13.864 2.889 13.864 L 17.111 13.864 C 17.582 13.864 18.035 13.672 18.368 13.331 C 18.701 12.99 18.889 12.528 18.889 12.045 L 18.889 10.227 C 18.182 10.227 17.503 9.94 17.003 9.428 C 16.503 8.917 16.222 8.223 16.222 7.5 C 16.222 6.777 16.503 6.083 17.003 5.571 C 17.503 5.06 18.182 4.773 18.889 4.773 L 18.889 2.954 C 18.889 2.472 18.701 2.01 18.368 1.669 C 18.035 1.328 17.582 1.136 17.111 1.136 L 2.889 1.136 C 2.417 1.136 1.965 1.328 1.632 1.669 C 1.298 2.01 1.111 2.472 1.111 2.954 Z\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(233, 10, 233))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9999469910},zs3XdItd8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 15\"><path d=\"M 10.889 1.136 L 10.889 2.954 M 10.889 12.045 L 10.889 13.864 M 10.889 6.591 L 10.889 8.409 M 1.111 4.773 C 1.818 4.773 2.497 5.06 2.997 5.571 C 3.497 6.083 3.778 6.777 3.778 7.5 C 3.778 8.223 3.497 8.917 2.997 9.428 C 2.497 9.94 1.818 10.227 1.111 10.227 L 1.111 12.045 C 1.111 12.528 1.298 12.99 1.632 13.331 C 1.965 13.672 2.417 13.864 2.889 13.864 L 17.111 13.864 C 17.582 13.864 18.035 13.672 18.368 13.331 C 18.701 12.99 18.889 12.528 18.889 12.045 L 18.889 10.227 C 18.182 10.227 17.503 9.94 17.003 9.428 C 16.503 8.917 16.222 8.223 16.222 7.5 C 16.222 6.777 16.503 6.083 17.003 5.571 C 17.503 5.06 18.182 4.773 18.889 4.773 L 18.889 2.954 C 18.889 2.472 18.701 2.01 18.368 1.669 C 18.035 1.328 17.582 1.136 17.111 1.136 L 2.889 1.136 C 2.417 1.136 1.965 1.328 1.632 1.669 C 1.298 2.01 1.111 2.472 1.111 2.954 Z\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12073467738}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jx0dpy\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vBnliB3fR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 27 8.333 L 8.093 27.24 C 7.384 27.941 6.427 28.333 5.43 28.33 C 4.434 28.328 3.478 27.931 2.773 27.226 C 2.066 26.519 1.669 25.56 1.669 24.56 C 1.669 23.56 2.066 22.601 2.773 21.893 L 21.666 3 M 20.333 1.667 L 28.333 9.666 M 15 20.333 L 4.333 20.333\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11680561027,withExternalLayout:true,...addPropertyOverrides({BRDZEi7Vd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18 5.555 L 5.395 18.16 C 4.923 18.627 4.285 18.888 3.62 18.887 C 2.956 18.885 2.319 18.621 1.849 18.151 C 1.378 17.679 1.113 17.04 1.113 16.373 C 1.113 15.707 1.378 15.067 1.849 14.595 L 14.444 2 M 13.555 1.111 L 18.889 6.444 M 10 13.555 L 2.889 13.555\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10354671523},zyogR1clo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.443 5 L 4.839 17.604 C 4.366 18.072 3.728 18.333 3.064 18.331 C 2.399 18.33 1.762 18.065 1.292 17.595 C 0.821 17.124 0.556 16.484 0.556 15.818 C 0.556 15.151 0.821 14.512 1.292 14.04 L 13.888 1.444 M 12.999 0.556 L 18.332 5.889 M 9.443 13 L 2.332 13\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(233, 10, 233))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11199171150}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-179pq4f\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rCtRdG9U8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29 29\"><path d=\"M 14 19 L 10 15 M 14 19 C 15.863 18.292 17.649 17.398 19.334 16.333 M 14 19 L 14 25.667 C 14 25.667 18.04 24.933 19.334 23 C 20.774 20.84 19.334 16.333 19.334 16.333 M 10 15 C 10.71 13.159 11.603 11.395 12.667 9.733 C 14.22 7.249 16.384 5.204 18.951 3.792 C 21.518 2.38 24.404 1.649 27.334 1.667 C 27.334 5.293 26.294 11.667 19.334 16.334 M 10 15 L 3.334 15 C 3.334 15 4.067 10.96 6 9.667 C 8.16 8.227 12.667 9.667 12.667 9.667 M 4 21 C 2 22.68 1.333 27.667 1.333 27.667 C 1.333 27.667 6.32 27 8 25 C 8.947 23.88 8.934 22.16 7.88 21.12 C 7.362 20.626 6.679 20.34 5.963 20.318 C 5.247 20.295 4.548 20.539 4 21 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11203957786,withExternalLayout:true,...addPropertyOverrides({Fr7XoPpwR:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.655 13.104 L 6.897 10.345 M 9.655 13.104 C 10.94 12.615 12.172 11.999 13.333 11.264 M 9.655 13.104 L 9.655 17.701 C 9.655 17.701 12.442 17.196 13.333 15.862 C 14.327 14.373 13.333 11.264 13.333 11.264 M 6.897 10.345 C 7.386 9.075 8.002 7.859 8.736 6.713 C 9.807 5 11.299 3.589 13.07 2.615 C 14.84 1.642 16.83 1.137 18.851 1.15 C 18.851 3.651 18.133 8.046 13.333 11.264 M 6.897 10.345 L 2.299 10.345 C 2.299 10.345 2.805 7.559 4.138 6.667 C 5.628 5.674 8.736 6.667 8.736 6.667 M 2.759 14.483 C 1.379 15.642 0.92 19.081 0.92 19.081 C 0.92 19.081 4.359 18.621 5.517 17.242 C 6.17 16.469 6.161 15.283 5.435 14.566 C 5.077 14.224 4.606 14.027 4.113 14.012 C 3.619 13.997 3.137 14.164 2.759 14.483 Z\" fill=\"transparent\" stroke-width=\"1.38\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10017195582},Nz_4lTxxo:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.241 12.586 L 6.483 9.828 M 9.241 12.586 C 10.526 12.098 11.758 11.482 12.92 10.747 M 9.241 12.586 L 9.241 17.184 C 9.241 17.184 12.028 16.678 12.92 15.345 C 13.913 13.855 12.92 10.747 12.92 10.747 M 6.483 9.828 C 6.972 8.558 7.588 7.341 8.322 6.196 C 9.393 4.482 10.885 3.072 12.656 2.098 C 14.426 1.124 16.416 0.62 18.437 0.632 C 18.437 3.133 17.72 7.529 12.92 10.747 M 6.483 9.828 L 1.885 9.828 C 1.885 9.828 2.391 7.042 3.724 6.15 C 5.214 5.156 8.322 6.15 8.322 6.15 M 2.345 13.966 C 0.966 15.124 0.506 18.563 0.506 18.563 C 0.506 18.563 3.945 18.104 5.104 16.724 C 5.756 15.952 5.747 14.766 5.021 14.048 C 4.663 13.707 4.193 13.51 3.699 13.495 C 3.205 13.48 2.723 13.647 2.345 13.966 Z\" fill=\"transparent\" stroke-width=\"1.38\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(233, 10, 233))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10518662003}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-o3bz3h\",\"data-framer-name\":\"lucide/chart-column-stacked\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jl8ik2lws\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.167 10.833 L 5.833 10.833 M 15.833 7.5 L 12.5 7.5 M 2.5 2.5 L 2.5 15.833 C 2.5 16.275 2.676 16.699 2.988 17.012 C 3.301 17.324 3.725 17.5 4.167 17.5 L 17.5 17.5 M 13.333 4.167 L 15 4.167 C 15.46 4.167 15.833 4.54 15.833 5 L 15.833 13.333 C 15.833 13.794 15.46 14.167 15 14.167 L 13.333 14.167 C 12.873 14.167 12.5 13.794 12.5 13.333 L 12.5 5 C 12.5 4.54 12.873 4.167 13.333 4.167 Z M 6.667 6.667 L 8.333 6.667 C 8.794 6.667 9.167 7.04 9.167 7.5 L 9.167 13.333 C 9.167 13.794 8.794 14.167 8.333 14.167 L 6.667 14.167 C 6.206 14.167 5.833 13.794 5.833 13.333 L 5.833 7.5 C 5.833 7.04 6.206 6.667 6.667 6.667 Z\" fill=\"transparent\" stroke-width=\"1.67\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10088877016,withExternalLayout:true,...addPropertyOverrides({BpyiLRL6r:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.167 10.833 L 5.833 10.833 M 15.833 7.5 L 12.5 7.5 M 2.5 2.5 L 2.5 15.833 C 2.5 16.275 2.676 16.699 2.988 17.012 C 3.301 17.324 3.725 17.5 4.167 17.5 L 17.5 17.5 M 13.333 4.167 L 15 4.167 C 15.46 4.167 15.833 4.54 15.833 5 L 15.833 13.333 C 15.833 13.794 15.46 14.167 15 14.167 L 13.333 14.167 C 12.873 14.167 12.5 13.794 12.5 13.333 L 12.5 5 C 12.5 4.54 12.873 4.167 13.333 4.167 Z M 6.667 6.667 L 8.333 6.667 C 8.794 6.667 9.167 7.04 9.167 7.5 L 9.167 13.333 C 9.167 13.794 8.794 14.167 8.333 14.167 L 6.667 14.167 C 6.206 14.167 5.833 13.794 5.833 13.333 L 5.833 7.5 C 5.833 7.04 6.206 6.667 6.667 6.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10953287480},yHwakReCN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.167 10.833 L 5.833 10.833 M 15.833 7.5 L 12.5 7.5 M 2.5 2.5 L 2.5 15.833 C 2.5 16.275 2.676 16.699 2.988 17.012 C 3.301 17.324 3.725 17.5 4.167 17.5 L 17.5 17.5 M 13.333 4.167 L 15 4.167 C 15.46 4.167 15.833 4.54 15.833 5 L 15.833 13.333 C 15.833 13.794 15.46 14.167 15 14.167 L 13.333 14.167 C 12.873 14.167 12.5 13.794 12.5 13.333 L 12.5 5 C 12.5 4.54 12.873 4.167 13.333 4.167 Z M 6.667 6.667 L 8.333 6.667 C 8.794 6.667 9.167 7.04 9.167 7.5 L 9.167 13.333 C 9.167 13.794 8.794 14.167 8.333 14.167 L 6.667 14.167 C 6.206 14.167 5.833 13.794 5.833 13.333 L 5.833 7.5 C 5.833 7.04 6.206 6.667 6.667 6.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9990485402}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-w79oza\",\"data-framer-name\":\"lucide/users\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"h8E5X5dwI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.333 17.5 L 13.333 15.833 C 13.333 14.949 12.982 14.101 12.357 13.476 C 11.732 12.851 10.884 12.5 10 12.5 L 5 12.5 C 4.116 12.5 3.268 12.851 2.643 13.476 C 2.018 14.101 1.667 14.949 1.667 15.833 L 1.667 17.5 M 18.333 17.5 L 18.333 15.833 C 18.333 15.095 18.087 14.377 17.635 13.794 C 17.182 13.21 16.548 12.793 15.833 12.608 M 13.333 2.608 C 14.05 2.792 14.686 3.209 15.14 3.794 C 15.594 4.378 15.84 5.097 15.84 5.838 C 15.84 6.578 15.594 7.297 15.14 7.881 C 14.686 8.466 14.05 8.883 13.333 9.067 M 10.833 5.833 C 10.833 7.674 9.341 9.167 7.5 9.167 C 5.659 9.167 4.167 7.674 4.167 5.833 C 4.167 3.992 5.659 2.5 7.5 2.5 C 9.341 2.5 10.833 3.992 10.833 5.833 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8721192839,withExternalLayout:true,...addPropertyOverrides({DuYFiWb7J:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.333 17.5 L 13.333 15.833 C 13.333 14.949 12.982 14.101 12.357 13.476 C 11.732 12.851 10.884 12.5 10 12.5 L 5 12.5 C 4.116 12.5 3.268 12.851 2.643 13.476 C 2.018 14.101 1.667 14.949 1.667 15.833 L 1.667 17.5 M 18.333 17.5 L 18.333 15.833 C 18.333 15.095 18.087 14.377 17.635 13.794 C 17.182 13.21 16.548 12.793 15.833 12.608 M 13.333 2.608 C 14.05 2.792 14.686 3.209 15.14 3.794 C 15.594 4.378 15.84 5.097 15.84 5.838 C 15.84 6.578 15.594 7.297 15.14 7.881 C 14.686 8.466 14.05 8.883 13.333 9.067 M 10.833 5.833 C 10.833 7.674 9.341 9.167 7.5 9.167 C 5.659 9.167 4.167 7.674 4.167 5.833 C 4.167 3.992 5.659 2.5 7.5 2.5 C 9.341 2.5 10.833 3.992 10.833 5.833 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11942000761},wtEkjWw3n:{svgContentId:11479394484}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1my7f9w\",\"data-framer-name\":\"lucide/mail-check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"y0QdF0N9f\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18.333 10.833 L 18.333 5 C 18.333 4.558 18.158 4.134 17.845 3.821 C 17.533 3.509 17.109 3.333 16.667 3.333 L 3.333 3.333 C 2.891 3.333 2.467 3.509 2.155 3.821 C 1.842 4.134 1.667 4.558 1.667 5 L 1.667 15 C 1.667 15.917 2.417 16.667 3.333 16.667 L 10 16.667 M 18.333 5.833 L 10.858 10.583 C 10.601 10.745 10.304 10.83 10 10.83 C 9.696 10.83 9.399 10.745 9.142 10.583 L 1.667 5.833 M 13.333 15.833 L 15 17.5 L 18.333 14.167\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9289308354,withExternalLayout:true,...addPropertyOverrides({z0mOX1qIb:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18.333 10.833 L 18.333 5 C 18.333 4.558 18.158 4.134 17.845 3.821 C 17.533 3.509 17.109 3.333 16.667 3.333 L 3.333 3.333 C 2.891 3.333 2.467 3.509 2.155 3.821 C 1.842 4.134 1.667 4.558 1.667 5 L 1.667 15 C 1.667 15.917 2.417 16.667 3.333 16.667 L 10 16.667 M 18.333 5.833 L 10.858 10.583 C 10.601 10.745 10.304 10.83 10 10.83 C 9.696 10.83 9.399 10.745 9.142 10.583 L 1.667 5.833 M 13.333 15.833 L 15 17.5 L 18.333 14.167\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12849159600},zCZbZtmln:{svgContentId:9509671679}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bjwb6r\",\"data-framer-name\":\"lucide/paintbrush\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pWRdilaLu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 12.185 14.914 L 3.285 12.487 M 7.5 6.667 C 5.997 8.925 4.192 9.55 2.014 9.957 C 1.942 9.97 1.874 10.002 1.818 10.049 C 1.762 10.096 1.719 10.157 1.694 10.226 C 1.668 10.295 1.661 10.369 1.673 10.442 C 1.685 10.514 1.716 10.582 1.762 10.639 L 7.862 18.042 C 7.986 18.173 8.15 18.261 8.328 18.292 C 8.506 18.322 8.689 18.294 8.85 18.212 C 10.612 17.004 13.333 13.993 13.333 12.5 M 15.313 2.185 C 15.477 2.021 15.672 1.89 15.887 1.802 C 16.102 1.713 16.332 1.667 16.564 1.667 C 16.796 1.667 17.026 1.713 17.241 1.802 C 17.456 1.89 17.651 2.021 17.815 2.185 C 17.979 2.349 18.109 2.544 18.198 2.759 C 18.287 2.973 18.333 3.204 18.333 3.436 C 18.333 3.668 18.287 3.898 18.198 4.113 C 18.109 4.327 17.979 4.522 17.815 4.687 L 14.467 8.036 C 14.388 8.114 14.345 8.22 14.345 8.33 C 14.345 8.441 14.388 8.547 14.467 8.625 L 15.253 9.412 C 15.63 9.788 15.841 10.299 15.841 10.832 C 15.841 11.364 15.63 11.875 15.253 12.252 L 14.467 13.038 C 14.388 13.116 14.282 13.16 14.172 13.16 C 14.061 13.16 13.956 13.116 13.877 13.038 L 6.962 6.123 C 6.883 6.045 6.84 5.939 6.84 5.829 C 6.84 5.718 6.883 5.612 6.962 5.534 L 7.748 4.747 C 8.125 4.371 8.636 4.159 9.168 4.159 C 9.701 4.159 10.212 4.371 10.588 4.747 L 11.375 5.534 C 11.453 5.612 11.559 5.656 11.669 5.656 C 11.78 5.656 11.886 5.612 11.964 5.534 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9773180680,withExternalLayout:true,...addPropertyOverrides({ik3FZsSLH:{svgContentId:12660318366},LmsqZs1TH:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 12.185 14.914 L 3.285 12.487 M 7.5 6.667 C 5.997 8.925 4.192 9.55 2.014 9.957 C 1.942 9.97 1.874 10.002 1.818 10.049 C 1.762 10.096 1.719 10.157 1.694 10.226 C 1.668 10.295 1.661 10.369 1.673 10.442 C 1.685 10.514 1.716 10.582 1.762 10.639 L 7.862 18.042 C 7.986 18.173 8.15 18.261 8.328 18.292 C 8.506 18.322 8.689 18.294 8.85 18.212 C 10.612 17.004 13.333 13.993 13.333 12.5 M 15.313 2.185 C 15.477 2.021 15.672 1.89 15.887 1.802 C 16.102 1.713 16.332 1.667 16.564 1.667 C 16.796 1.667 17.026 1.713 17.241 1.802 C 17.456 1.89 17.651 2.021 17.815 2.185 C 17.979 2.349 18.109 2.544 18.198 2.759 C 18.287 2.973 18.333 3.204 18.333 3.436 C 18.333 3.668 18.287 3.898 18.198 4.113 C 18.109 4.327 17.979 4.522 17.815 4.687 L 14.467 8.036 C 14.388 8.114 14.345 8.22 14.345 8.33 C 14.345 8.441 14.388 8.547 14.467 8.625 L 15.253 9.412 C 15.63 9.788 15.841 10.299 15.841 10.832 C 15.841 11.364 15.63 11.875 15.253 12.252 L 14.467 13.038 C 14.388 13.116 14.282 13.16 14.172 13.16 C 14.061 13.16 13.956 13.116 13.877 13.038 L 6.962 6.123 C 6.883 6.045 6.84 5.939 6.84 5.829 C 6.84 5.718 6.883 5.612 6.962 5.534 L 7.748 4.747 C 8.125 4.371 8.636 4.159 9.168 4.159 C 9.701 4.159 10.212 4.371 10.588 4.747 L 11.375 5.534 C 11.453 5.612 11.559 5.656 11.669 5.656 C 11.78 5.656 11.886 5.612 11.964 5.534 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9192740542}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pbo7sh\",\"data-framer-name\":\"lucide/letter-text\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jqtZtjbPz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 13.75 11 L 19.25 11 M 13.75 5.5 L 19.25 5.5 M 2.75 11.917 L 6.007 4.836 C 6.045 4.76 6.104 4.696 6.176 4.652 C 6.248 4.607 6.332 4.583 6.417 4.583 C 6.502 4.583 6.585 4.607 6.657 4.652 C 6.73 4.696 6.788 4.76 6.826 4.836 L 10.083 11.917 M 2.75 16.5 L 19.25 16.5 M 3.667 10.083 L 9.167 10.083\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9881157548,withExternalLayout:true,...addPropertyOverrides({SLdq7t1nm:{svgContentId:9001292414},Zuq3pmgJc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 13.75 11 L 19.25 11 M 13.75 5.5 L 19.25 5.5 M 2.75 11.917 L 6.007 4.836 C 6.045 4.76 6.104 4.696 6.176 4.652 C 6.248 4.607 6.332 4.583 6.417 4.583 C 6.502 4.583 6.585 4.607 6.657 4.652 C 6.73 4.696 6.788 4.76 6.826 4.836 L 10.083 11.917 M 2.75 16.5 L 19.25 16.5 M 3.667 10.083 L 9.167 10.083\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11691094876}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-601a50\",\"data-framer-name\":\"lucide/monitor-speaker\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BqXkA4dMr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.583 16.667 L 6.667 16.667 M 14.167 7.5 L 14.175 7.5 M 6.667 5 L 3.333 5 C 2.891 5 2.467 5.176 2.155 5.488 C 1.842 5.801 1.667 6.225 1.667 6.667 L 1.667 11.667 C 1.667 12.109 1.842 12.533 2.155 12.845 C 2.467 13.158 2.891 13.333 3.333 13.333 L 6.667 13.333 M 11.667 3.333 L 16.667 3.333 C 17.587 3.333 18.333 4.08 18.333 5 L 18.333 15 C 18.333 15.921 17.587 16.667 16.667 16.667 L 11.667 16.667 C 10.746 16.667 10 15.921 10 15 L 10 5 C 10 4.08 10.746 3.333 11.667 3.333 Z M 15 12.5 C 15 12.96 14.627 13.333 14.167 13.333 C 13.706 13.333 13.333 12.96 13.333 12.5 C 13.333 12.04 13.706 11.667 14.167 11.667 C 14.627 11.667 15 12.04 15 12.5 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12729907965,withExternalLayout:true,...addPropertyOverrides({cJsZSQQ56:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.583 16.667 L 6.667 16.667 M 14.167 7.5 L 14.175 7.5 M 6.667 5 L 3.333 5 C 2.891 5 2.467 5.176 2.155 5.488 C 1.842 5.801 1.667 6.225 1.667 6.667 L 1.667 11.667 C 1.667 12.109 1.842 12.533 2.155 12.845 C 2.467 13.158 2.891 13.333 3.333 13.333 L 6.667 13.333 M 11.667 3.333 L 16.667 3.333 C 17.587 3.333 18.333 4.08 18.333 5 L 18.333 15 C 18.333 15.921 17.587 16.667 16.667 16.667 L 11.667 16.667 C 10.746 16.667 10 15.921 10 15 L 10 5 C 10 4.08 10.746 3.333 11.667 3.333 Z M 15 12.5 C 15 12.96 14.627 13.333 14.167 13.333 C 13.706 13.333 13.333 12.96 13.333 12.5 C 13.333 12.04 13.706 11.667 14.167 11.667 C 14.627 11.667 15 12.04 15 12.5 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10093974957},g23DuRuN9:{svgContentId:10462698883}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1w0q9c4\",\"data-framer-name\":\"lucide/chart-network\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jGZoLTt_3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 19\"><path d=\"M 10.379 6.067 L 11.788 8.183 M 11.212 10.124 L 8.58 11.251 M 15.833 3.167 L 11.036 4.366 M 2.375 2.375 L 2.375 15.042 C 2.375 15.462 2.542 15.864 2.839 16.161 C 3.136 16.458 3.538 16.625 3.958 16.625 L 16.625 16.625 M 11.083 4.75 C 11.083 5.624 10.374 6.333 9.5 6.333 C 8.626 6.333 7.917 5.624 7.917 4.75 C 7.917 3.876 8.626 3.167 9.5 3.167 C 10.374 3.167 11.083 3.876 11.083 4.75 Z M 14.25 9.5 C 14.25 10.374 13.541 11.083 12.667 11.083 C 11.792 11.083 11.083 10.374 11.083 9.5 C 11.083 8.626 11.792 7.917 12.667 7.917 C 13.541 7.917 14.25 8.626 14.25 9.5 Z M 8.708 11.875 C 8.708 12.749 7.999 13.458 7.125 13.458 C 6.251 13.458 5.542 12.749 5.542 11.875 C 5.542 11.001 6.251 10.292 7.125 10.292 C 7.999 10.292 8.708 11.001 8.708 11.875 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8840999351,withExternalLayout:true,...addPropertyOverrides({kUcj5rjiK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19 19\"><path d=\"M 10.379 6.067 L 11.788 8.183 M 11.212 10.124 L 8.58 11.251 M 15.833 3.167 L 11.036 4.366 M 2.375 2.375 L 2.375 15.042 C 2.375 15.462 2.542 15.864 2.839 16.161 C 3.136 16.458 3.538 16.625 3.958 16.625 L 16.625 16.625 M 11.083 4.75 C 11.083 5.624 10.374 6.333 9.5 6.333 C 8.626 6.333 7.917 5.624 7.917 4.75 C 7.917 3.876 8.626 3.167 9.5 3.167 C 10.374 3.167 11.083 3.876 11.083 4.75 Z M 14.25 9.5 C 14.25 10.374 13.541 11.083 12.667 11.083 C 11.792 11.083 11.083 10.374 11.083 9.5 C 11.083 8.626 11.792 7.917 12.667 7.917 C 13.541 7.917 14.25 8.626 14.25 9.5 Z M 8.708 11.875 C 8.708 12.749 7.999 13.458 7.125 13.458 C 6.251 13.458 5.542 12.749 5.542 11.875 C 5.542 11.001 6.251 10.292 7.125 10.292 C 7.999 10.292 8.708 11.001 8.708 11.875 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9453217046},UT9hGVFj4:{svgContentId:12063551202}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xamfbj\",\"data-framer-name\":\"lucide/package\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HwMrmfB6L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 18.333 L 10 10 M 10 10 L 2.742 5.833 M 10 10 L 17.258 5.833 M 6.25 3.558 L 13.75 7.85 M 9.167 18.108 C 9.42 18.255 9.707 18.332 10 18.332 C 10.293 18.332 10.58 18.255 10.833 18.108 L 16.667 14.775 C 16.92 14.629 17.13 14.419 17.276 14.166 C 17.423 13.913 17.5 13.626 17.5 13.333 L 17.5 6.667 C 17.5 6.374 17.423 6.087 17.276 5.834 C 17.13 5.581 16.92 5.371 16.667 5.225 L 10.833 1.892 C 10.58 1.745 10.293 1.668 10 1.668 C 9.707 1.668 9.42 1.745 9.167 1.892 L 3.333 5.225 C 3.08 5.371 2.87 5.581 2.724 5.834 C 2.577 6.087 2.5 6.374 2.5 6.667 L 2.5 13.333 C 2.5 13.626 2.577 13.913 2.724 14.166 C 2.87 14.419 3.08 14.629 3.333 14.775 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9564199755,withExternalLayout:true,...addPropertyOverrides({BP3CMXJoK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 18.333 L 10 10 M 10 10 L 2.742 5.833 M 10 10 L 17.258 5.833 M 6.25 3.558 L 13.75 7.85 M 9.167 18.108 C 9.42 18.255 9.707 18.332 10 18.332 C 10.293 18.332 10.58 18.255 10.833 18.108 L 16.667 14.775 C 16.92 14.629 17.13 14.419 17.276 14.166 C 17.423 13.913 17.5 13.626 17.5 13.333 L 17.5 6.667 C 17.5 6.374 17.423 6.087 17.276 5.834 C 17.13 5.581 16.92 5.371 16.667 5.225 L 10.833 1.892 C 10.58 1.745 10.293 1.668 10 1.668 C 9.707 1.668 9.42 1.745 9.167 1.892 L 3.333 5.225 C 3.08 5.371 2.87 5.581 2.724 5.834 C 2.577 6.087 2.5 6.374 2.5 6.667 L 2.5 13.333 C 2.5 13.626 2.577 13.913 2.724 14.166 C 2.87 14.419 3.08 14.629 3.333 14.775 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10725338443},Z6KmCvkzl:{svgContentId:12385097469}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-x3hojg\",\"data-framer-name\":\"lucide/gift\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fThA3CJ88\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 6.667 L 10 17.5 M 10 6.667 C 9.699 5.424 9.18 4.363 8.511 3.619 C 7.842 2.876 7.054 2.486 6.25 2.5 C 5.697 2.5 5.168 2.719 4.777 3.11 C 4.386 3.501 4.167 4.031 4.167 4.583 C 4.167 5.136 4.386 5.666 4.777 6.056 C 5.168 6.447 5.697 6.667 6.25 6.667 M 10 6.667 C 10.301 5.424 10.821 4.363 11.489 3.619 C 12.158 2.876 12.946 2.486 13.75 2.5 C 14.303 2.5 14.832 2.719 15.223 3.11 C 15.614 3.501 15.833 4.031 15.833 4.583 C 15.833 5.136 15.614 5.666 15.223 6.056 C 14.832 6.447 14.303 6.667 13.75 6.667 M 15.833 10 L 15.833 15.833 C 15.833 16.275 15.658 16.699 15.345 17.012 C 15.033 17.324 14.609 17.5 14.167 17.5 L 5.833 17.5 C 5.391 17.5 4.967 17.324 4.655 17.012 C 4.342 16.699 4.167 16.275 4.167 15.833 L 4.167 10 M 3.333 6.667 L 16.667 6.667 C 17.127 6.667 17.5 7.04 17.5 7.5 L 17.5 9.167 C 17.5 9.627 17.127 10 16.667 10 L 3.333 10 C 2.873 10 2.5 9.627 2.5 9.167 L 2.5 7.5 C 2.5 7.04 2.873 6.667 3.333 6.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8756873224,withExternalLayout:true,...addPropertyOverrides({neSIhME5M:{svgContentId:12457972227},Y2sYdYvBi:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 6.667 L 10 17.5 M 10 6.667 C 9.699 5.424 9.18 4.363 8.511 3.619 C 7.842 2.876 7.054 2.486 6.25 2.5 C 5.697 2.5 5.168 2.719 4.777 3.11 C 4.386 3.501 4.167 4.031 4.167 4.583 C 4.167 5.136 4.386 5.666 4.777 6.056 C 5.168 6.447 5.697 6.667 6.25 6.667 M 10 6.667 C 10.301 5.424 10.821 4.363 11.489 3.619 C 12.158 2.876 12.946 2.486 13.75 2.5 C 14.303 2.5 14.832 2.719 15.223 3.11 C 15.614 3.501 15.833 4.031 15.833 4.583 C 15.833 5.136 15.614 5.666 15.223 6.056 C 14.832 6.447 14.303 6.667 13.75 6.667 M 15.833 10 L 15.833 15.833 C 15.833 16.275 15.658 16.699 15.345 17.012 C 15.033 17.324 14.609 17.5 14.167 17.5 L 5.833 17.5 C 5.391 17.5 4.967 17.324 4.655 17.012 C 4.342 16.699 4.167 16.275 4.167 15.833 L 4.167 10 M 3.333 6.667 L 16.667 6.667 C 17.127 6.667 17.5 7.04 17.5 7.5 L 17.5 9.167 C 17.5 9.627 17.127 10 16.667 10 L 3.333 10 C 2.873 10 2.5 9.627 2.5 9.167 L 2.5 7.5 C 2.5 7.04 2.873 6.667 3.333 6.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9529953134}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vwr6sh\",\"data-framer-name\":\"lucide/calculator\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FMrSZavs5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 6.667 5 L 13.333 5 M 13.333 11.667 L 13.333 15 M 13.333 8.333 L 13.342 8.333 M 10 8.333 L 10.008 8.333 M 6.667 8.333 L 6.675 8.333 M 10 11.667 L 10.008 11.667 M 6.667 11.667 L 6.675 11.667 M 10 15 L 10.008 15 M 6.667 15 L 6.675 15 M 5 1.667 L 15 1.667 C 15.921 1.667 16.667 2.413 16.667 3.333 L 16.667 16.667 C 16.667 17.587 15.921 18.333 15 18.333 L 5 18.333 C 4.08 18.333 3.333 17.587 3.333 16.667 L 3.333 3.333 C 3.333 2.413 4.08 1.667 5 1.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10797744650,withExternalLayout:true,...addPropertyOverrides({JWOCPObWf:{svgContentId:8641992145},P_GXv7pq7:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 6.667 5 L 13.333 5 M 13.333 11.667 L 13.333 15 M 13.333 8.333 L 13.342 8.333 M 10 8.333 L 10.008 8.333 M 6.667 8.333 L 6.675 8.333 M 10 11.667 L 10.008 11.667 M 6.667 11.667 L 6.675 11.667 M 10 15 L 10.008 15 M 6.667 15 L 6.675 15 M 5 1.667 L 15 1.667 C 15.921 1.667 16.667 2.413 16.667 3.333 L 16.667 16.667 C 16.667 17.587 15.921 18.333 15 18.333 L 5 18.333 C 4.08 18.333 3.333 17.587 3.333 16.667 L 3.333 3.333 C 3.333 2.413 4.08 1.667 5 1.667 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10078024069}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qwk44a\",\"data-framer-name\":\"lucide/ticket-check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KhxFjC6zh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 8.25 11 L 10.083 12.833 L 13.75 9.167 M 1.833 8.25 C 2.563 8.25 3.262 8.54 3.778 9.055 C 4.294 9.571 4.583 10.271 4.583 11 C 4.583 11.729 4.294 12.429 3.778 12.945 C 3.262 13.46 2.563 13.75 1.833 13.75 L 1.833 15.583 C 1.833 16.07 2.026 16.536 2.37 16.88 C 2.714 17.224 3.18 17.417 3.667 17.417 L 18.333 17.417 C 18.82 17.417 19.286 17.224 19.63 16.88 C 19.974 16.536 20.167 16.07 20.167 15.583 L 20.167 13.75 C 19.437 13.75 18.738 13.46 18.222 12.945 C 17.706 12.429 17.417 11.729 17.417 11 C 17.417 10.271 17.706 9.571 18.222 9.055 C 18.738 8.54 19.437 8.25 20.167 8.25 L 20.167 6.417 C 20.167 5.93 19.974 5.464 19.63 5.12 C 19.286 4.776 18.82 4.583 18.333 4.583 L 3.667 4.583 C 3.18 4.583 2.714 4.776 2.37 5.12 C 2.026 5.464 1.833 5.93 1.833 6.417 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8652851340,withExternalLayout:true,...addPropertyOverrides({hjMO0S6x9:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 8.25 11 L 10.083 12.833 L 13.75 9.167 M 1.833 8.25 C 2.563 8.25 3.262 8.54 3.778 9.055 C 4.294 9.571 4.583 10.271 4.583 11 C 4.583 11.729 4.294 12.429 3.778 12.945 C 3.262 13.46 2.563 13.75 1.833 13.75 L 1.833 15.583 C 1.833 16.07 2.026 16.536 2.37 16.88 C 2.714 17.224 3.18 17.417 3.667 17.417 L 18.333 17.417 C 18.82 17.417 19.286 17.224 19.63 16.88 C 19.974 16.536 20.167 16.07 20.167 15.583 L 20.167 13.75 C 19.437 13.75 18.738 13.46 18.222 12.945 C 17.706 12.429 17.417 11.729 17.417 11 C 17.417 10.271 17.706 9.571 18.222 9.055 C 18.738 8.54 19.437 8.25 20.167 8.25 L 20.167 6.417 C 20.167 5.93 19.974 5.464 19.63 5.12 C 19.286 4.776 18.82 4.583 18.333 4.583 L 3.667 4.583 C 3.18 4.583 2.714 4.776 2.37 5.12 C 2.026 5.464 1.833 5.93 1.833 6.417 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12331214099},ujgPWqwvi:{svgContentId:9998889009}},baseVariant,gestureVariant)}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gjz7wl\",\"data-framer-name\":\"lucide/speech\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RnEb_BCTQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 7.7 17.5 L 7.7 13.912 L 9.362 14.087 C 9.846 14.061 10.305 13.86 10.652 13.522 C 11 13.185 11.215 12.733 11.256 12.25 L 11.256 7.262 C 11.262 6.002 10.767 4.791 9.879 3.895 C 8.992 3 7.785 2.493 6.525 2.488 C 5.264 2.482 4.053 2.977 3.158 3.864 C 2.262 4.751 1.756 5.958 1.75 7.219 C 1.75 9.669 2.324 9.891 2.625 11.2 C 2.828 11.99 2.837 12.819 2.65 13.613 L 1.75 17.5 M 17.325 15.575 C 18.555 14.345 19.246 12.676 19.247 10.937 C 19.247 9.197 18.557 7.528 17.328 6.297 M 14.875 13.125 C 15.161 12.839 15.388 12.499 15.542 12.124 C 15.696 11.75 15.774 11.349 15.772 10.944 C 15.77 10.539 15.688 10.139 15.53 9.766 C 15.372 9.393 15.142 9.055 14.853 8.772\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8605816442,withExternalLayout:true,...addPropertyOverrides({gaHDwAach:{svgContentId:11448041396},v4pBwFsab:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 7.7 17.5 L 7.7 13.912 L 9.362 14.087 C 9.846 14.061 10.305 13.86 10.652 13.522 C 11 13.185 11.215 12.733 11.256 12.25 L 11.256 7.262 C 11.262 6.002 10.767 4.791 9.879 3.895 C 8.992 3 7.785 2.493 6.525 2.488 C 5.264 2.482 4.053 2.977 3.158 3.864 C 2.262 4.751 1.756 5.958 1.75 7.219 C 1.75 9.669 2.324 9.891 2.625 11.2 C 2.828 11.99 2.837 12.819 2.65 13.613 L 1.75 17.5 M 17.325 15.575 C 18.555 14.345 19.246 12.676 19.247 10.937 C 19.247 9.197 18.557 7.528 17.328 6.297 M 14.875 13.125 C 15.161 12.839 15.388 12.499 15.542 12.124 C 15.696 11.75 15.774 11.349 15.772 10.944 C 15.77 10.539 15.688 10.139 15.53 9.766 C 15.372 9.393 15.142 9.055 14.853 8.772\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10019057186}},baseVariant,gestureVariant)}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9h6qbq\",\"data-framer-name\":\"lucide/gamepad-2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"x7SHDYNPE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 5 9.167 L 8.333 9.167 M 6.667 7.5 L 6.667 10.833 M 12.5 10 L 12.508 10 M 15 8.333 L 15.008 8.333 M 14.433 4.167 L 5.567 4.167 C 4.742 4.167 3.946 4.473 3.334 5.025 C 2.722 5.578 2.336 6.338 2.252 7.158 C 2.247 7.202 2.243 7.243 2.238 7.285 C 2.17 7.847 1.667 12.047 1.667 13.333 C 1.667 13.996 1.93 14.632 2.399 15.101 C 2.868 15.57 3.504 15.833 4.167 15.833 C 5 15.833 5.417 15.417 5.833 15 L 7.012 13.822 C 7.324 13.509 7.748 13.333 8.19 13.333 L 11.81 13.333 C 12.252 13.333 12.676 13.509 12.988 13.822 L 14.167 15 C 14.583 15.417 15 15.833 15.833 15.833 C 16.496 15.833 17.132 15.57 17.601 15.101 C 18.07 14.632 18.333 13.996 18.333 13.333 C 18.333 12.046 17.83 7.847 17.763 7.285 C 17.757 7.243 17.753 7.202 17.748 7.159 C 17.664 6.339 17.278 5.578 16.666 5.026 C 16.054 4.473 15.258 4.167 14.433 4.167 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-f2189c21-2d43-440c-a60d-4b0a79176d5e, rgb(17, 17, 17))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12374068429,withExternalLayout:true,...addPropertyOverrides({AzhZQaBws:{svgContentId:12166617424},G9PYAPNsZ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 5 9.167 L 8.333 9.167 M 6.667 7.5 L 6.667 10.833 M 12.5 10 L 12.508 10 M 15 8.333 L 15.008 8.333 M 14.433 4.167 L 5.567 4.167 C 4.742 4.167 3.946 4.473 3.334 5.025 C 2.722 5.578 2.336 6.338 2.252 7.158 C 2.247 7.202 2.243 7.243 2.238 7.285 C 2.17 7.847 1.667 12.047 1.667 13.333 C 1.667 13.996 1.93 14.632 2.399 15.101 C 2.868 15.57 3.504 15.833 4.167 15.833 C 5 15.833 5.417 15.417 5.833 15 L 7.012 13.822 C 7.324 13.509 7.748 13.333 8.19 13.333 L 11.81 13.333 C 12.252 13.333 12.676 13.509 12.988 13.822 L 14.167 15 C 14.583 15.417 15 15.833 15.833 15.833 C 16.496 15.833 17.132 15.57 17.601 15.101 C 18.07 14.632 18.333 13.996 18.333 13.333 C 18.333 12.046 17.83 7.847 17.763 7.285 C 17.757 7.243 17.753 7.202 17.748 7.159 C 17.664 6.339 17.278 5.578 16.666 5.026 C 16.054 4.473 15.258 4.167 14.433 4.167 Z\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-a7a1bd0b-1ca5-4edd-8fff-1949bc86d0ae, rgb(0, 114, 239))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11744587100}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ifqhy.framer-1oechfa, .framer-Ifqhy .framer-1oechfa { display: block; }\",\".framer-Ifqhy.framer-r0om8s { cursor: pointer; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-Ifqhy .framer-136uxc7 { flex: none; height: 17px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 20px; }\",\".framer-Ifqhy .framer-10nrk06 { flex: none; height: 32px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 28px; }\",\".framer-Ifqhy .framer-121zcog { flex: none; height: 22px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 30px; }\",\".framer-Ifqhy .framer-jx0dpy { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-Ifqhy .framer-179pq4f { flex: none; height: 29px; left: calc(50.00000000000002% - 29px / 2); position: absolute; top: calc(50.00000000000002% - 29px / 2); width: 29px; }\",\".framer-Ifqhy .framer-o3bz3h, .framer-Ifqhy .framer-w79oza, .framer-Ifqhy .framer-1my7f9w, .framer-Ifqhy .framer-1bjwb6r, .framer-Ifqhy .framer-601a50, .framer-Ifqhy .framer-xamfbj, .framer-Ifqhy .framer-x3hojg, .framer-Ifqhy .framer-vwr6sh, .framer-Ifqhy .framer-9h6qbq { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-Ifqhy .framer-1pbo7sh, .framer-Ifqhy .framer-qwk44a { flex: none; height: 22px; left: calc(50.00000000000002% - 22px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 22px; }\",\".framer-Ifqhy .framer-1w0q9c4 { flex: none; height: 19px; left: calc(50.00000000000002% - 19px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 19px; }\",\".framer-Ifqhy .framer-gjz7wl { flex: none; height: 21px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 21px / 2); width: 21px; }\",\".framer-Ifqhy.framer-v-2d7mdg .framer-10nrk06, .framer-Ifqhy.framer-v-1bnu6fj .framer-10nrk06 { height: 23px; left: calc(50.00000000000002% - 20px / 2); top: calc(50.00000000000002% - 23px / 2); width: 20px; }\",\".framer-Ifqhy.framer-v-1fcmmk1 .framer-121zcog, .framer-Ifqhy.framer-v-1yh8fqu .framer-121zcog { height: 15px; left: calc(50.00000000000002% - 20px / 2); top: calc(50.00000000000002% - 15px / 2); width: 20px; }\",\".framer-Ifqhy.framer-v-16pyxs7 .framer-jx0dpy, .framer-Ifqhy.framer-v-1nvpg3a .framer-jx0dpy, .framer-Ifqhy.framer-v-1qxcfw1 .framer-179pq4f, .framer-Ifqhy.framer-v-1jaxgbx .framer-179pq4f { height: 20px; left: calc(50.00000000000002% - 20px / 2); top: calc(50.00000000000002% - 20px / 2); width: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BpyiLRL6r\":{\"layout\":[\"fixed\",\"fixed\"]},\"m4B1udUKg\":{\"layout\":[\"fixed\",\"fixed\"]},\"yHwakReCN\":{\"layout\":[\"fixed\",\"fixed\"]},\"SLdq7t1nm\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zuq3pmgJc\":{\"layout\":[\"fixed\",\"fixed\"]},\"JWOCPObWf\":{\"layout\":[\"fixed\",\"fixed\"]},\"P_GXv7pq7\":{\"layout\":[\"fixed\",\"fixed\"]},\"ixIbkJa0r\":{\"layout\":[\"fixed\",\"fixed\"]},\"wtEkjWw3n\":{\"layout\":[\"fixed\",\"fixed\"]},\"ajAaidBlN\":{\"layout\":[\"fixed\",\"fixed\"]},\"DuYFiWb7J\":{\"layout\":[\"fixed\",\"fixed\"]},\"g23DuRuN9\":{\"layout\":[\"fixed\",\"fixed\"]},\"cJsZSQQ56\":{\"layout\":[\"fixed\",\"fixed\"]},\"ujgPWqwvi\":{\"layout\":[\"fixed\",\"fixed\"]},\"hjMO0S6x9\":{\"layout\":[\"fixed\",\"fixed\"]},\"zs3XdItd8\":{\"layout\":[\"fixed\",\"fixed\"]},\"zCZbZtmln\":{\"layout\":[\"fixed\",\"fixed\"]},\"A8lfqt1D_\":{\"layout\":[\"fixed\",\"fixed\"]},\"z0mOX1qIb\":{\"layout\":[\"fixed\",\"fixed\"]},\"UT9hGVFj4\":{\"layout\":[\"fixed\",\"fixed\"]},\"kUcj5rjiK\":{\"layout\":[\"fixed\",\"fixed\"]},\"gaHDwAach\":{\"layout\":[\"fixed\",\"fixed\"]},\"v4pBwFsab\":{\"layout\":[\"fixed\",\"fixed\"]},\"BRDZEi7Vd\":{\"layout\":[\"fixed\",\"fixed\"]},\"ik3FZsSLH\":{\"layout\":[\"fixed\",\"fixed\"]},\"zyogR1clo\":{\"layout\":[\"fixed\",\"fixed\"]},\"LmsqZs1TH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z6KmCvkzl\":{\"layout\":[\"fixed\",\"fixed\"]},\"BP3CMXJoK\":{\"layout\":[\"fixed\",\"fixed\"]},\"AzhZQaBws\":{\"layout\":[\"fixed\",\"fixed\"]},\"G9PYAPNsZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fr7XoPpwR\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nz_4lTxxo\":{\"layout\":[\"fixed\",\"fixed\"]},\"neSIhME5M\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y2sYdYvBi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HK_zN1IYv\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCkkbKUPpL=withCSS(Component,css,\"framer-Ifqhy\");export default FramerCkkbKUPpL;FramerCkkbKUPpL.displayName=\"Icon new\";FramerCkkbKUPpL.defaultProps={height:32,width:32};addPropertyControls(FramerCkkbKUPpL,{variant:{options:[\"I699:14804;699:13521;699:13504\",\"BpyiLRL6r\",\"m4B1udUKg\",\"yHwakReCN\",\"SLdq7t1nm\",\"Zuq3pmgJc\",\"JWOCPObWf\",\"P_GXv7pq7\",\"ixIbkJa0r\",\"wtEkjWw3n\",\"ajAaidBlN\",\"DuYFiWb7J\",\"g23DuRuN9\",\"cJsZSQQ56\",\"ujgPWqwvi\",\"hjMO0S6x9\",\"zs3XdItd8\",\"zCZbZtmln\",\"A8lfqt1D_\",\"z0mOX1qIb\",\"UT9hGVFj4\",\"kUcj5rjiK\",\"gaHDwAach\",\"v4pBwFsab\",\"BRDZEi7Vd\",\"ik3FZsSLH\",\"zyogR1clo\",\"LmsqZs1TH\",\"Z6KmCvkzl\",\"BP3CMXJoK\",\"AzhZQaBws\",\"G9PYAPNsZ\",\"Fr7XoPpwR\",\"Nz_4lTxxo\",\"neSIhME5M\",\"Y2sYdYvBi\"],optionTitles:[\"Crown\",\"Graph 1\",\"Crown blue\",\"Graph 1 blue\",\"Form\",\"Form blue\",\"Calculator\",\"Calculator blue\",\"Thunder\",\"People\",\"Thunder blue\",\"People blue\",\"Omnichannel\",\"Omnichannel.blue\",\"voucher check\",\"voucher check blue\",\"Ticket\",\"Email check\",\"Ticket blue\",\"Email check blue\",\"Graph 2\",\"Graph 2 blue\",\"Speak\",\"Speak blue\",\"Test tube\",\"Paintbrush\",\"Test tube blue\",\"Paint brush blue\",\"Package\",\"Package blue\",\"Controller\",\"Controller blue\",\"Rocket\",\"Rocket blue\",\"Gift\",\"Gift blue\"],title:\"Variant\",type:ControlType.Enum},HK_zN1IYv:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerCkkbKUPpL,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCkkbKUPpL\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"32\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BpyiLRL6r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m4B1udUKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yHwakReCN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SLdq7t1nm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zuq3pmgJc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JWOCPObWf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P_GXv7pq7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ixIbkJa0r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wtEkjWw3n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ajAaidBlN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DuYFiWb7J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g23DuRuN9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cJsZSQQ56\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ujgPWqwvi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hjMO0S6x9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zs3XdItd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zCZbZtmln\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A8lfqt1D_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z0mOX1qIb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UT9hGVFj4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kUcj5rjiK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gaHDwAach\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v4pBwFsab\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BRDZEi7Vd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ik3FZsSLH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zyogR1clo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LmsqZs1TH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z6KmCvkzl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BP3CMXJoK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AzhZQaBws\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G9PYAPNsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fr7XoPpwR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nz_4lTxxo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"neSIhME5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y2sYdYvBi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"HK_zN1IYv\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CkkbKUPpL.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "HK_zN1IYv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaphhci", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "LayoutGroup", "u", "SVG", "css", "FramerCkkbKUPpL", "withCSS", "CkkbKUPpL_default", "addPropertyControls", "ControlType", "addFonts"]
}
