{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1PjmdWp1KUPGJ6MSXZSG/gpspD4sYk1dKrEHDcTYM/ThemeSwitch.js", "ssg:https://framerusercontent.com/modules/YCkPIPvjxczD08WBZpJY/8tQIfnwApnu4NTR3WoSd/sDquhqjHT.js", "ssg:https://framerusercontent.com/modules/0AfC8Koo329Six6igTZY/1Ia8UITFrV9vlRPqT1ib/aGffgv7Ct.js", "ssg:https://framerusercontent.com/modules/KynAm6rQ47XtGN6u9X9H/DzB4KjeuyawzE1IYr5hh/maGpaxTnj.js", "ssg:https://framerusercontent.com/modules/hKdE4BSlco24yloavHaF/gxw6wmgXPR7PasSQTa8q/ZC6oaTVqt.js", "ssg:https://framerusercontent.com/modules/49YprPtrqGIq96ZDySMJ/u9USk79Iosg6BpoxasEH/Z5aW2k3RB.js", "ssg:https://framerusercontent.com/modules/tBtywotwmTXT9IkPTsy7/pKhf8lo7Itbxin6x1JMo/x6PfALCgy.js", "ssg:https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js", "ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16", "ssg:https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js", "ssg:https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js", "ssg:https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js", "ssg:https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js", "ssg:https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js", "ssg:https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js", "ssg:https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js", "ssg:https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js", "ssg:https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js", "ssg:https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js", "ssg:https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js", "ssg:https://framerusercontent.com/modules/7JBpKnKtvffAA9S6ygFl/IQeEiRh8wyADc95ZGvm1/R59UUiNVK.js"],
  "sourcesContent": ["function _define_property(obj,key,value){if(key in obj){Object.defineProperty(obj,key,{value:value,enumerable:true,configurable:true,writable:true});}else{obj[key]=value;}return obj;}import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";import{motion}from\"framer-motion\";function extractDarkModeCSS(cssString){const regex=/@media\\s*\\(prefers-color-scheme:\\s*dark\\)\\s*\\{([^}]*)\\}/;const match=cssString.match(regex);return match?match[1].trim():\"\";}function extractDarkModeCSSVariables(css){// Regular expression to match @media (prefers-color-scheme: dark) { ... }\nconst regex=/@media\\s+\\(prefers-color-scheme:\\s*dark\\)\\s*{([^}]*)body\\s*{([^}]*)}}/;const matches=css.match(regex);if(matches&&matches[2]){return matches[2].trim();}return\"\";}function extractLightModeCSSVariables(css){// Match body block, excluding nested @media blocks\nconst bodyRegex=/body\\s*{([^}]*)}/g;const mediaRegex=/@media\\s+\\(prefers-color-scheme:\\s*dark\\)\\s*{[^}]*body\\s*{[^}]*}}/g;// Extract body block without @media blocks\nconst bodyMatches=css.match(bodyRegex);const mediaMatches=css.match(mediaRegex);let bodyContent=\"\";if(bodyMatches){bodyContent=bodyMatches[0];}// Remove media block content from bodyContent\nif(mediaMatches){mediaMatches.forEach(mediaMatch=>{bodyContent=bodyContent.replace(mediaMatch,\"\");});}// Extract the CSS variables from the body block\nconst cssVarRegex=/--[\\w-]+:\\s*[^;]+;/g;const cssVars=bodyContent.match(cssVarRegex);return cssVars?cssVars.join(\"\\n\"):\"\";}function setDarkThemeCode(code){const styleId=\"pix-dark-theme-style\";// Check if a <style> element with the specified ID already exists\nlet existingStyle=document.getElementById(styleId);if(existingStyle){return;// If it exists, do nothing\n}// Step 1: Create a <style> element\nconst style=document.createElement(\"style\");// Step 2: Set its content to the desired CSS string\nconst cssString=`body.pix-is-dark, body:has(.pix-is-dark) {${code}}`;style.textContent=cssString;// Step 3: Set the ID of the <style> element\nstyle.id=styleId;// Step 4: Append the <style> element to the <head>\ndocument.head.appendChild(style);}function setLightThemeCode(code){const styleId=\"pix-light-theme-style\";// Check if a <style> element with the specified ID already exists\nlet existingStyle=document.getElementById(styleId);if(existingStyle){return;// If it exists, do nothing\n}// Step 1: Create a <style> element\nconst style=document.createElement(\"style\");// Step 2: Set its content to the desired CSS string\nconst cssString=`body.pix-is-light, body:has(.pix-is-light) {${code}}`;style.textContent=cssString;// Step 3: Set the ID of the <style> element\nstyle.id=styleId;// Step 4: Append the <style> element to the <head>\ndocument.head.appendChild(style);}class EventEmitter{on(event,listener){if(!this.events[event]){this.events[event]=[];}this.events[event].push(listener);}emit(event,data){if(this.events[event]){this.events[event].forEach(listener=>listener(data));}}off(event,listenerToRemove){if(!this.events[event])return;this.events[event]=this.events[event].filter(listener=>listener!==listenerToRemove);}constructor(){_define_property(this,\"events\",void 0);this.events={};}}const eventEmitter=new EventEmitter;class ThemeCheck{constructor(){const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){if(savedTheme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(savedTheme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}}}const themeChecker=new ThemeCheck;/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ThemeSwitcher(props){// Config Properties\nconst{defaultTheme,color,size,strokeWidth}=props;const getInitialTheme=()=>{if(typeof window===\"undefined\"){return defaultTheme;}const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){return savedTheme;}if(defaultTheme===\"System\"){const prefersDarkScheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches;return prefersDarkScheme?\"Dark\":\"Light\";}return defaultTheme;};const[theme,setTheme]=useState(\"\");useEffect(()=>{setTheme(getInitialTheme());},[]);let lightIcon=/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",height:size,fill:\"none\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{fill:\"none\",fontSize:size,stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\",strokeLinejoin:\"round\",fillRule:\"evenodd\",d:\"M12,16 C14.209139,16 16,14.209139 16,12 C16,9.790861 14.209139,8 12,8 C9.790861,8 8,9.790861 8,12 C8,14.209139 9.790861,16 12,16 Z M3.75,12 L4,12 M20,12 L20.25,12 M6.16636906,6.16636906 L6.34314575,6.34314575 M17.6568542,17.6568542 L17.8336309,17.8336309 M12,3.75 L12,4 M12,20 L12,20.25 M17.8336309,6.16636906 L17.6568542,6.34314575 M6.34314575,17.6568542 L6.16636906,17.8336309\"})});let moonIcon=/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",height:size,fill:\"none\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{fill:\"none\",fontSize:size,stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\",strokeLinejoin:\"round\",fillRule:\"evenodd\",d:\"M10.0097755,3.50866835 C6.50909297,4.74141324 4,8.07769159 4,12 C4,16.9705627 8.02943725,21 13,21 C16.0968026,21 18.8282936,19.4359151 20.4476029,17.0546154 C12.1379474,17.2549581 7.62134541,13.421417 10.0097755,3.50866835 Z\"})});if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}useEffect(()=>{if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}},[]);if(typeof document!==\"undefined\"){if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){if(savedTheme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(savedTheme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}}useEffect(()=>{if(theme===\"Light\"||theme===\"Dark\"){localStorage.setItem(\"theme\",theme);const styleTags=Array.from(document.getElementsByTagName(\"style\"));const themeStyleTag=styleTags.find(tag=>tag.innerHTML.includes(\"prefers-color-scheme:\"));if(themeStyleTag){const darkModeCSS=extractDarkModeCSSVariables(themeStyleTag.innerHTML);const lightModeCSS=extractLightModeCSSVariables(themeStyleTag.innerHTML);localStorage.setItem(\"darkThemeVars\",darkModeCSS);localStorage.setItem(\"lightThemeVars\",lightModeCSS);setDarkThemeCode(darkModeCSS);setLightThemeCode(lightModeCSS);if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}}},[theme]);const handleReload=data=>{setTheme(data);};useEffect(()=>{eventEmitter.on(\"reload\",handleReload);// Cleanup the event listener on component unmount\nreturn()=>{eventEmitter.off(\"reload\",handleReload);};},[]);const switchTheme=e=>{e.preventDefault();let newTheme=theme===\"Light\"?\"Dark\":\"Light\";setTheme(prevTheme=>{return prevTheme===\"Light\"?\"Dark\":\"Light\";});eventEmitter.emit(\"reload\",newTheme);};return /*#__PURE__*/_jsx(motion.div,{style:{},whileHover:{scale:.98,opacity:.8,cursor:\"pointer\"},transition:{type:\"spring\",stiffness:500,damping:30},children:/*#__PURE__*/_jsx(\"a\",{style:containerStyle,onClick:switchTheme,href:\"#\",\"aria-label\":\"Theme switch\",children:theme?theme===\"Dark\"?moonIcon:lightIcon:null})});}addPropertyControls(ThemeSwitcher,{defaultTheme:{type:ControlType.Enum,options:[\"Light\",\"Dark\",\"System\"],optionTitles:[\"Light\",\"Dark\",\"System (auto)\"],title:\"Default Theme\",defaultValue:\"System\",description:\"Theme Switcher will work only in live preview (the icon showing in Framer editor is a placeholder).\"},color:{type:ControlType.Color,defaultValue:\"#09090b\"},size:{type:ControlType.Number,defaultValue:30},strokeWidth:{type:ControlType.Number,defaultValue:2,max:3,min:.5}});const containerStyle={cursor:\"pointer\",display:\"inline-flex\",justifyContent:\"center\",alignItems:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeSwitcher\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeSwitch.map", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jes3YGVf7\",\"EiPw8AZS4\"];const serializationHash=\"framer-x5SFt\";const variantClassNames={EiPw8AZS4:\"framer-v-es8tzg\",jes3YGVf7:\"framer-v-1ib4qbi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Menu [Open]\":\"EiPw8AZS4\",\"Mobile Menu\":\"jes3YGVf7\"};const getProps=({height,iconColor,id,tap,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,E6NV4Gf2f:tap!==null&&tap!==void 0?tap:props.E6NV4Gf2f,lYvpkC7IW:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.lYvpkC7IW)!==null&&_ref!==void 0?_ref:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jes3YGVf7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E6NV4Gf2f,lYvpkC7IW,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jes3YGVf7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapey0dds=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"EiPw8AZS4\");});const onTap108nq5d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"jes3YGVf7\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ib4qbi\",className,classNames),\"data-framer-name\":\"Mobile Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jes3YGVf7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapey0dds,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EiPw8AZS4:{\"data-framer-name\":\"Mobile Menu [Open]\",onTap:onTap108nq5d}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cux5of\",layoutDependency:layoutDependency,layoutId:\"axZqjz8iD\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{EiPw8AZS4:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w1bul6\",layoutDependency:layoutDependency,layoutId:\"NLO8BEcKq\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{EiPw8AZS4:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ku2ucf\",layoutDependency:layoutDependency,layoutId:\"eoR2V6lm3\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:0},variants:{EiPw8AZS4:{opacity:0,rotate:-45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x5SFt.framer-3vm2ug, .framer-x5SFt .framer-3vm2ug { display: block; }\",\".framer-x5SFt.framer-1ib4qbi { cursor: pointer; height: 48px; position: relative; width: 48px; }\",\".framer-x5SFt .framer-1cux5of { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 14px; width: 26px; }\",\".framer-x5SFt .framer-1w1bul6 { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 22px; width: 26px; }\",\".framer-x5SFt .framer-1ku2ucf { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 30px; width: 19px; }\",\".framer-x5SFt.framer-v-es8tzg.framer-1ib4qbi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); }\",\".framer-x5SFt.framer-v-es8tzg .framer-1cux5of { left: calc(50.00000000000002% - 26px / 2); top: 23px; }\",\".framer-x5SFt.framer-v-es8tzg .framer-1w1bul6 { top: 23px; }\",\".framer-x5SFt.framer-v-es8tzg .framer-1ku2ucf { bottom: 18px; height: unset; left: 13px; width: 13px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EiPw8AZS4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"E6NV4Gf2f\":\"tap\",\"lYvpkC7IW\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersDquhqjHT=withCSS(Component,css,\"framer-x5SFt\");export default FramersDquhqjHT;FramersDquhqjHT.displayName=\"Menu/Hamburger Menu\";FramersDquhqjHT.defaultProps={height:48,width:48};addPropertyControls(FramersDquhqjHT,{variant:{options:[\"jes3YGVf7\",\"EiPw8AZS4\"],optionTitles:[\"Mobile Menu\",\"Mobile Menu [Open]\"],title:\"Variant\",type:ControlType.Enum},E6NV4Gf2f:{title:\"Tap\",type:ControlType.EventHandler},lYvpkC7IW:{defaultValue:'var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11)) /* {\"name\":\"Gray 950\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramersDquhqjHT,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersDquhqjHT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"E6NV4Gf2f\\\":\\\"tap\\\",\\\"lYvpkC7IW\\\":\\\"iconColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EiPw8AZS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sDquhqjHT.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-34J0A .framer-styles-preset-1xyptdp:not(.rich-text-wrapper), .framer-34J0A .framer-styles-preset-1xyptdp.rich-text-wrapper p { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, #71717a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-34J0A\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter Tight-500\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-6ydCa .framer-styles-preset-1b8z1kr:not(.rich-text-wrapper), .framer-6ydCa .framer-styles-preset-1b8z1kr.rich-text-wrapper p { --framer-font-family: \"Inter Tight\", \"Inter Tight Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, #71717a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-6ydCa\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ApX9HVBYzXw8OVpsB5J0/iAdQeJWoL35Kf2JGPnrF/acdDqsSOM.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kd8jVAanMrY55FyaEebM/QCGZ5TPXGA3QvV1Szskh/lpvldrpA0.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/uSGUkH17FiSlGZhjBL7w/SPpxe0Y95Y7WW5V6fRL3/uYwjFvoUl.js\";const cycleOrder=[\"Dh_kmLg81\",\"Qy1b_vjYv\",\"XhoVkTECU\",\"cUGIJY4lk\"];const serializationHash=\"framer-gpXUq\";const variantClassNames={cUGIJY4lk:\"framer-v-1p942gh\",Dh_kmLg81:\"framer-v-7ipqct\",Qy1b_vjYv:\"framer-v-q9cg6d\",XhoVkTECU:\"framer-v-1xnqf79\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Badge sm\":\"Qy1b_vjYv\",\"Badge xs\":\"XhoVkTECU\",\"Badge xxs\":\"cUGIJY4lk\",Badge:\"Dh_kmLg81\"};const getProps=({backgroundColor,bGBlur,border,height,id,radius,text,textColor,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,C_fTzd5lR:(_ref=border!==null&&border!==void 0?border:props.C_fTzd5lR)!==null&&_ref!==void 0?_ref:{borderColor:'var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231)) /* {\"name\":\"Gray 200\"} */',borderStyle:\"solid\",borderWidth:1},iXsfVjsEM:(_ref1=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.iXsfVjsEM)!==null&&_ref1!==void 0?_ref1:\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\",JPO2n74ig:(_ref2=radius!==null&&radius!==void 0?radius:props.JPO2n74ig)!==null&&_ref2!==void 0?_ref2:10,Lsu1xrgI3:(_ref3=textColor!==null&&textColor!==void 0?textColor:props.Lsu1xrgI3)!==null&&_ref3!==void 0?_ref3:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",p4KdNyw2A:bGBlur!==null&&bGBlur!==void 0?bGBlur:props.p4KdNyw2A,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"Dh_kmLg81\",XGtDHEUvE:(_ref5=text!==null&&text!==void 0?text:props.XGtDHEUvE)!==null&&_ref5!==void 0?_ref5:\"Badge Text\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XGtDHEUvE,Lsu1xrgI3,iXsfVjsEM,JPO2n74ig,C_fTzd5lR,p4KdNyw2A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Dh_kmLg81\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();var _C_fTzd5lR_borderBottomWidth,_C_fTzd5lR_borderLeftWidth,_C_fTzd5lR_borderRightWidth,_C_fTzd5lR_borderTopWidth;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7ipqct\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"Dh_kmLg81\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":`${(_C_fTzd5lR_borderBottomWidth=C_fTzd5lR.borderBottomWidth)!==null&&_C_fTzd5lR_borderBottomWidth!==void 0?_C_fTzd5lR_borderBottomWidth:C_fTzd5lR.borderWidth}px`,\"--border-color\":C_fTzd5lR.borderColor,\"--border-left-width\":`${(_C_fTzd5lR_borderLeftWidth=C_fTzd5lR.borderLeftWidth)!==null&&_C_fTzd5lR_borderLeftWidth!==void 0?_C_fTzd5lR_borderLeftWidth:C_fTzd5lR.borderWidth}px`,\"--border-right-width\":`${(_C_fTzd5lR_borderRightWidth=C_fTzd5lR.borderRightWidth)!==null&&_C_fTzd5lR_borderRightWidth!==void 0?_C_fTzd5lR_borderRightWidth:C_fTzd5lR.borderWidth}px`,\"--border-style\":C_fTzd5lR.borderStyle,\"--border-top-width\":`${(_C_fTzd5lR_borderTopWidth=C_fTzd5lR.borderTopWidth)!==null&&_C_fTzd5lR_borderTopWidth!==void 0?_C_fTzd5lR_borderTopWidth:C_fTzd5lR.borderWidth}px`,backdropFilter:`blur(${p4KdNyw2A}px)`,backgroundColor:iXsfVjsEM,borderBottomLeftRadius:radiusForCorner(JPO2n74ig,3),borderBottomRightRadius:radiusForCorner(JPO2n74ig,2),borderTopLeftRadius:radiusForCorner(JPO2n74ig,0),borderTopRightRadius:radiusForCorner(JPO2n74ig,1),...style},...addPropertyOverrides({cUGIJY4lk:{\"data-framer-name\":\"Badge xxs\"},Qy1b_vjYv:{\"data-framer-name\":\"Badge sm\"},XhoVkTECU:{\"data-framer-name\":\"Badge xs\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-brloun\",layoutDependency:layoutDependency,layoutId:\"LJNyOguvz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-oqxj12\",\"data-styles-preset\":\"lpvldrpA0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Lsu1xrgI3-ZC6oaTVqt))\"},children:\"Badge Text\"})}),className:\"framer-n2s70i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SsTSqHFV8\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Lsu1xrgI3-ZC6oaTVqt)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-Lsu1xrgI3-ZC6oaTVqt\":Lsu1xrgI3},text:XGtDHEUvE,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cUGIJY4lk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1subfuh\",\"data-styles-preset\":\"uYwjFvoUl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Lsu1xrgI3-ZC6oaTVqt))\"},children:\"Badge Text\"})})},Qy1b_vjYv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5c03bw\",\"data-styles-preset\":\"acdDqsSOM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Lsu1xrgI3-ZC6oaTVqt))\"},children:\"Badge Text\"})})},XhoVkTECU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1subfuh\",\"data-styles-preset\":\"uYwjFvoUl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Lsu1xrgI3-ZC6oaTVqt))\"},children:\"Badge Text\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gpXUq.framer-1w5kpb9, .framer-gpXUq .framer-1w5kpb9 { display: block; }\",\".framer-gpXUq.framer-7ipqct { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gpXUq .framer-brloun { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gpXUq .framer-n2s70i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gpXUq.framer-7ipqct, .framer-gpXUq .framer-brloun { gap: 0px; } .framer-gpXUq.framer-7ipqct > *, .framer-gpXUq .framer-brloun > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gpXUq.framer-7ipqct > :first-child, .framer-gpXUq .framer-brloun > :first-child { margin-left: 0px; } .framer-gpXUq.framer-7ipqct > :last-child, .framer-gpXUq .framer-brloun > :last-child { margin-right: 0px; } }\",\".framer-gpXUq.framer-v-q9cg6d.framer-7ipqct { padding: 6px 11px 6px 11px; }\",\".framer-gpXUq.framer-v-1xnqf79.framer-7ipqct { padding: 6px 8px 6px 8px; }\",\".framer-gpXUq.framer-v-1p942gh.framer-7ipqct { padding: 4px 6px 4px 6px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-gpXUq[data-border=\"true\"]::after, .framer-gpXUq [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 45\n * @framerIntrinsicWidth 109.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Qy1b_vjYv\":{\"layout\":[\"auto\",\"auto\"]},\"XhoVkTECU\":{\"layout\":[\"auto\",\"auto\"]},\"cUGIJY4lk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XGtDHEUvE\":\"text\",\"Lsu1xrgI3\":\"textColor\",\"iXsfVjsEM\":\"backgroundColor\",\"JPO2n74ig\":\"radius\",\"C_fTzd5lR\":\"border\",\"p4KdNyw2A\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZC6oaTVqt=withCSS(Component,css,\"framer-gpXUq\");export default FramerZC6oaTVqt;FramerZC6oaTVqt.displayName=\"Badge\";FramerZC6oaTVqt.defaultProps={height:45,width:109.5};addPropertyControls(FramerZC6oaTVqt,{variant:{options:[\"Dh_kmLg81\",\"Qy1b_vjYv\",\"XhoVkTECU\",\"cUGIJY4lk\"],optionTitles:[\"Badge\",\"Badge sm\",\"Badge xs\",\"Badge xxs\"],title:\"Variant\",type:ControlType.Enum},XGtDHEUvE:{defaultValue:\"Badge Text\",displayTextArea:false,title:\"Text\",type:ControlType.String},Lsu1xrgI3:{defaultValue:'var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11)) /* {\"name\":\"Gray 950\"} */',title:\"Text Color\",type:ControlType.Color},iXsfVjsEM:{defaultValue:'var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background Color\",type:ControlType.Color},JPO2n74ig:{defaultValue:10,title:\"Radius\",type:ControlType.Number},C_fTzd5lR:{defaultValue:{borderColor:'var(--token-408e9ffb-f435-48c7-a9ff-2c04fe742fc2, rgb(228, 228, 231)) /* {\"name\":\"Gray 200\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},p4KdNyw2A:{defaultValue:0,title:\"BG Blur\",type:ControlType.Number}});addFonts(FramerZC6oaTVqt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZC6oaTVqt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Qy1b_vjYv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XhoVkTECU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cUGIJY4lk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"109.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"45\",\"framerVariables\":\"{\\\"XGtDHEUvE\\\":\\\"text\\\",\\\"Lsu1xrgI3\\\":\\\"textColor\\\",\\\"iXsfVjsEM\\\":\\\"backgroundColor\\\",\\\"JPO2n74ig\\\":\\\"radius\\\",\\\"C_fTzd5lR\\\":\\\"border\\\",\\\"p4KdNyw2A\\\":\\\"bGBlur\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZC6oaTVqt.map", "// Generated by Framer (ae47b7e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0AfC8Koo329Six6igTZY/1Ia8UITFrV9vlRPqT1ib/aGffgv7Ct.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/KynAm6rQ47XtGN6u9X9H/DzB4KjeuyawzE1IYr5hh/maGpaxTnj.js\";import Badge from\"https://framerusercontent.com/modules/hKdE4BSlco24yloavHaF/gxw6wmgXPR7PasSQTa8q/ZC6oaTVqt.js\";const BadgeFonts=getFonts(Badge);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={icuU8oJ0t:{hover:true}};const cycleOrder=[\"icuU8oJ0t\",\"HhwQ1hV0t\",\"LQXjyoW02\",\"kc88LMeYu\",\"usttoGkoS\"];const serializationHash=\"framer-vxWxL\";const variantClassNames={HhwQ1hV0t:\"framer-v-1vx7c28\",icuU8oJ0t:\"framer-v-hfop9t\",kc88LMeYu:\"framer-v-1rk7qb1\",LQXjyoW02:\"framer-v-ix00l\",usttoGkoS:\"framer-v-ri7xm7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:.5,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:.5,stiffness:300,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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Dropdown Title Item\":\"kc88LMeYu\",\"Empty space\":\"usttoGkoS\",\"Menu Item Dropdown [Open]\":\"LQXjyoW02\",\"Menu Item Dropdown\":\"HhwQ1hV0t\",\"Menu Item Simple\":\"icuU8oJ0t\"};const getProps=({align,badgeBGColor,badgeBorder,badgeText,badgeTextColor,bGColor,bGHover,enableBadge,height,hover,id,link,name1,openInNewTab,radius,tap,textColor,width,...props})=>{return{...props,bxYeoQnmJ:badgeBGColor??props.bxYeoQnmJ??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:badgeBorder??props.CKLn4URch??{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},dqMpST25y:radius??props.dqMpST25y??10,i6eMpMhze:tap??props.i6eMpMhze,i8hVK17KP:bGHover??props.i8hVK17KP??\"rgba(113, 113, 122, 0.08)\",kf3NktHXk:badgeText??props.kf3NktHXk??\"Badge\",ku0K5iab7:name1??props.ku0K5iab7??\"Link\",PnQ813Qxg:hover??props.PnQ813Qxg,qfg9TUc_S:enableBadge??props.qfg9TUc_S,stziIHmv7:bGColor??props.stziIHmv7??\"rgba(113, 113, 122, 0)\",T3ktnO2nz:openInNewTab??props.T3ktnO2nz,variant:humanReadableVariantMap[props.variant]??props.variant??\"icuU8oJ0t\",VdwkoqfEz:badgeTextColor??props.VdwkoqfEz??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:textColor??props.wGRcFK04x??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",ycFa86gVJ:humanReadableEnumMap[align]??align??props.ycFa86gVJ??\"center\",ZpWw94nXT:link??props.ZpWw94nXT};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ku0K5iab7,ZpWw94nXT,T3ktnO2nz,wGRcFK04x,stziIHmv7,i8hVK17KP,ycFa86gVJ,i6eMpMhze,PnQ813Qxg,dqMpST25y,qfg9TUc_S,kf3NktHXk,VdwkoqfEz,bxYeoQnmJ,CKLn4URch,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"icuU8oJ0t\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17wrld9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(i6eMpMhze){const res=await i6eMpMhze(...args);if(res===false)return false;}});const onMouseEnter1x7u0ml=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PnQ813Qxg){const res=await PnQ813Qxg(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"usttoGkoS\")return false;return true;};const isDisplayed1=()=>{if([\"HhwQ1hV0t\",\"LQXjyoW02\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({LQXjyoW02:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ZpWw94nXT,nodeId:\"icuU8oJ0t\",openInNewTab:T3ktnO2nz,smoothScroll:true,...addPropertyOverrides({kc88LMeYu:{href:undefined},usttoGkoS:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-hfop9t\",className,classNames)} framer-1xk21ds`,\"data-framer-name\":\"Menu Item Simple\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"icuU8oJ0t\",onMouseEnter:onMouseEnter1x7u0ml,onTap:onTap17wrld9,ref:ref??ref1,style:{\"--1rj8ghj\":ycFa86gVJ,backgroundColor:stziIHmv7,borderBottomLeftRadius:radiusForCorner(dqMpST25y,3),borderBottomRightRadius:radiusForCorner(dqMpST25y,2),borderTopLeftRadius:radiusForCorner(dqMpST25y,0),borderTopRightRadius:radiusForCorner(dqMpST25y,1),...style},variants:{\"icuU8oJ0t-hover\":{backgroundColor:i8hVK17KP},LQXjyoW02:{backgroundColor:\"rgba(9, 9, 11, 0.05)\"}},...addPropertyOverrides({\"icuU8oJ0t-hover\":{\"data-framer-name\":undefined},HhwQ1hV0t:{\"data-framer-name\":\"Menu Item Dropdown\"},kc88LMeYu:{\"data-framer-name\":\"Dropdown Title Item\"},LQXjyoW02:{\"data-framer-name\":\"Menu Item Dropdown [Open]\"},usttoGkoS:{\"data-framer-name\":\"Empty space\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xyptdp\",\"data-styles-preset\":\"aGffgv7Ct\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-Z5aW2k3RB))\"},children:\"Link\"})}),className:\"framer-1vx5tu0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gTNv8fTVS\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-wGRcFK04x-Z5aW2k3RB)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-wGRcFK04x-Z5aW2k3RB\":wGRcFK04x},text:ku0K5iab7,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kc88LMeYu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b8z1kr\",\"data-styles-preset\":\"maGpaxTnj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-Z5aW2k3RB))\"},children:\"Link\"})})}},baseVariant,gestureVariant)}),qfg9TUc_S&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+(18+((componentViewport?.height||36)-36-45)/2),...addPropertyOverrides({kc88LMeYu:{y:(componentViewport?.y||0)+(8+((componentViewport?.height||30.5)-16-45)/2)},usttoGkoS:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||0)-0-45)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eukp2i-container\",layoutDependency:layoutDependency,layoutId:\"JN6O6Y8K9-container\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:CKLn4URch,height:\"100%\",id:\"JN6O6Y8K9\",iXsfVjsEM:bxYeoQnmJ,JPO2n74ig:5,layoutId:\"JN6O6Y8K9\",Lsu1xrgI3:VdwkoqfEz,p4KdNyw2A:0,variant:\"cUGIJY4lk\",width:\"100%\",XGtDHEUvE:kf3NktHXk})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jenrk\",layoutDependency:layoutDependency,layoutId:\"qdqvZw6xP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kr3p8o-container\",layoutDependency:layoutDependency,layoutId:\"TfGao9FSL-container\",style:{opacity:.5,rotate:0},variants:{LQXjyoW02:{rotate:-180}},children:/*#__PURE__*/_jsx(Phosphor,{color:wGRcFK04x,height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"TfGao9FSL\",layoutId:\"TfGao9FSL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vxWxL.framer-1xk21ds, .framer-vxWxL .framer-1xk21ds { display: block; }\",\".framer-vxWxL.framer-hfop9t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 17px; justify-content: var(--1rj8ghj); overflow: visible; padding: 18px 12px 18px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-vxWxL .framer-1vx5tu0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vxWxL .framer-eukp2i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vxWxL .framer-12jenrk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vxWxL .framer-kr3p8o-container { flex: none; height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vxWxL.framer-hfop9t, .framer-vxWxL .framer-12jenrk { gap: 0px; } .framer-vxWxL.framer-hfop9t > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-vxWxL.framer-hfop9t > :first-child, .framer-vxWxL .framer-12jenrk > :first-child { margin-left: 0px; } .framer-vxWxL.framer-hfop9t > :last-child, .framer-vxWxL .framer-12jenrk > :last-child { margin-right: 0px; } .framer-vxWxL .framer-12jenrk > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-vxWxL.framer-v-1vx7c28.framer-hfop9t, .framer-vxWxL.framer-v-ix00l.framer-hfop9t, .framer-vxWxL.framer-v-hfop9t.hover.framer-hfop9t { height: 36px; }\",\".framer-vxWxL.framer-v-1rk7qb1.framer-hfop9t { height: min-content; padding: 8px 12px 8px 12px; }\",\".framer-vxWxL.framer-v-1rk7qb1 .framer-1vx5tu0 { order: 0; }\",\".framer-vxWxL.framer-v-1rk7qb1 .framer-eukp2i-container, .framer-vxWxL.framer-v-ri7xm7 .framer-eukp2i-container { order: 1; }\",\".framer-vxWxL.framer-v-ri7xm7.framer-hfop9t { height: min-content; padding: 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 51\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"HhwQ1hV0t\":{\"layout\":[\"auto\",\"fixed\"]},\"LQXjyoW02\":{\"layout\":[\"auto\",\"fixed\"]},\"kc88LMeYu\":{\"layout\":[\"auto\",\"auto\"]},\"usttoGkoS\":{\"layout\":[\"auto\",\"auto\"]},\"Dv2nGJV7X\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"ku0K5iab7\":\"name1\",\"ZpWw94nXT\":\"link\",\"T3ktnO2nz\":\"openInNewTab\",\"wGRcFK04x\":\"textColor\",\"stziIHmv7\":\"bGColor\",\"i8hVK17KP\":\"bGHover\",\"ycFa86gVJ\":\"align\",\"i6eMpMhze\":\"tap\",\"PnQ813Qxg\":\"hover\",\"dqMpST25y\":\"radius\",\"qfg9TUc_S\":\"enableBadge\",\"kf3NktHXk\":\"badgeText\",\"VdwkoqfEz\":\"badgeTextColor\",\"bxYeoQnmJ\":\"badgeBGColor\",\"CKLn4URch\":\"badgeBorder\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ5aW2k3RB=withCSS(Component,css,\"framer-vxWxL\");export default FramerZ5aW2k3RB;FramerZ5aW2k3RB.displayName=\"Menu/Item\";FramerZ5aW2k3RB.defaultProps={height:36,width:51};addPropertyControls(FramerZ5aW2k3RB,{variant:{options:[\"icuU8oJ0t\",\"HhwQ1hV0t\",\"LQXjyoW02\",\"kc88LMeYu\",\"usttoGkoS\"],optionTitles:[\"Menu Item Simple\",\"Menu Item Dropdown\",\"Menu Item Dropdown [Open]\",\"Dropdown Title Item\",\"Empty space\"],title:\"Variant\",type:ControlType.Enum},ku0K5iab7:{defaultValue:\"Link\",displayTextArea:false,title:\"Name\",type:ControlType.String},ZpWw94nXT:{title:\"Link\",type:ControlType.Link},T3ktnO2nz:{defaultValue:false,title:\"Open in New Tab\",type:ControlType.Boolean},wGRcFK04x:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},stziIHmv7:{defaultValue:\"rgba(113, 113, 122, 0)\",title:\"BG Color\",type:ControlType.Color},i8hVK17KP:{defaultValue:\"rgba(113, 113, 122, 0.08)\",title:\"BG Hover\",type:ControlType.Color},ycFa86gVJ:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},i6eMpMhze:{title:\"Tap\",type:ControlType.EventHandler},PnQ813Qxg:{title:\"Hover\",type:ControlType.EventHandler},dqMpST25y:{defaultValue:10,title:\"Radius\",type:ControlType.Number},qfg9TUc_S:{defaultValue:false,title:\"Enable Badge\",type:ControlType.Boolean},kf3NktHXk:{defaultValue:\"Badge\",displayTextArea:false,title:\"Badge Text\",type:ControlType.String},VdwkoqfEz:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Badge Text Color\",type:ControlType.Color},bxYeoQnmJ:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White/Gray 950 [Dynamic]\"} */',title:\"Badge BG Color\",type:ControlType.Color},CKLn4URch:{defaultValue:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Badge Border\",type:ControlType.Border}});addFonts(FramerZ5aW2k3RB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BadgeFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ5aW2k3RB\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ku0K5iab7\\\":\\\"name1\\\",\\\"ZpWw94nXT\\\":\\\"link\\\",\\\"T3ktnO2nz\\\":\\\"openInNewTab\\\",\\\"wGRcFK04x\\\":\\\"textColor\\\",\\\"stziIHmv7\\\":\\\"bGColor\\\",\\\"i8hVK17KP\\\":\\\"bGHover\\\",\\\"ycFa86gVJ\\\":\\\"align\\\",\\\"i6eMpMhze\\\":\\\"tap\\\",\\\"PnQ813Qxg\\\":\\\"hover\\\",\\\"dqMpST25y\\\":\\\"radius\\\",\\\"qfg9TUc_S\\\":\\\"enableBadge\\\",\\\"kf3NktHXk\\\":\\\"badgeText\\\",\\\"VdwkoqfEz\\\":\\\"badgeTextColor\\\",\\\"bxYeoQnmJ\\\":\\\"badgeBGColor\\\",\\\"CKLn4URch\\\":\\\"badgeBorder\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"51\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HhwQ1hV0t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LQXjyoW02\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kc88LMeYu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"usttoGkoS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dv2nGJV7X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z5aW2k3RB.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import MenuItem from\"https://framerusercontent.com/modules/49YprPtrqGIq96ZDySMJ/u9USk79Iosg6BpoxasEH/Z5aW2k3RB.js\";const MenuItemFonts=getFonts(MenuItem);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-6SEr5\";const variantClassNames={GqsjJ_k1_:\"framer-v-1ltwia3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const getProps=({align,bGBlur,dropdownBG,height,id,textColor,width,...props})=>{return{...props,ILT7xcLmk:dropdownBG??props.ILT7xcLmk??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",odLrH8wIa:textColor??props.odLrH8wIa??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",XWxsdOvDJ:bGBlur??props.XWxsdOvDJ??5,ZmT46usVX:humanReadableEnumMap[align]??align??props.ZmT46usVX??\"flex-start\"};};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,ZmT46usVX,odLrH8wIa,ILT7xcLmk,XWxsdOvDJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GqsjJ_k1_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const PnQ813Qxgtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);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-1ltwia3\",className,classNames),\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"GqsjJ_k1_\",ref:refBinding,style:{\"--hkf6fz\":ZmT46usVX,...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14day1l-container\",layoutDependency:layoutDependency,layoutId:\"JuMrSWolJ-container\",nodeId:\"JuMrSWolJ\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"JuMrSWolJ\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Home\",layoutId:\"JuMrSWolJ\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Yi3Lvqs1X\",webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-45owg4-container\",layoutDependency:layoutDependency,layoutId:\"yTT6iqjSL-container\",nodeId:\"yTT6iqjSL\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"yTT6iqjSL\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Reviews\",layoutId:\"yTT6iqjSL\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FWy99tzOg\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1po5uc9-container\",layoutDependency:layoutDependency,layoutId:\"xfUpr60yl-container\",nodeId:\"xfUpr60yl\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"xfUpr60yl\",kf3NktHXk:\"Badge\",ku0K5iab7:\"About Us\",layoutId:\"xfUpr60yl\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-9aoi12-container\",id:`${layoutId}-9aoi12`,layoutDependency:layoutDependency,layoutId:\"cjnLLIdO0-container\",nodeId:\"cjnLLIdO0\",ref:ref1,rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:[/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"cjnLLIdO0\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Offers\",layoutId:\"cjnLLIdO0\",PnQ813Qxg:PnQ813Qxgtxyyif({overlay}),qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:overlay.visible?\"LQXjyoW02\":\"HhwQ1hV0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-9aoi12`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1s69nvq\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"NOv4cUdDl\",ref:ref2,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${XWxsdOvDJ}px)`,backgroundColor:ILT7xcLmk,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.18065619053231788px -1.5px rgba(0, 0, 0, 0.04), 0px 1.1442666516217286px 0.6865599909730372px -3px rgba(0, 0, 0, 0.04), 0px 5px 3.0000000000000004px -4.5px rgba(0, 0, 0, 0), 0px 0.6021873017743928px 1.5656869846134214px -1px rgba(0, 0, 0, 0.06), 0px 2.288533303243457px 5.950186588432988px -2px rgba(0, 0, 0, 0.06), 0px 10px 26px -3px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sd5swc\",layoutDependency:layoutDependency,layoutId:\"rrSwjqQ5S\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-199hmje\",layoutDependency:layoutDependency,layoutId:\"wq3aF3iTJ\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fPFCSKcR5\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"210px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-woi9bz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KeBTVifVE-container\",nodeId:\"KeBTVifVE\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"KeBTVifVE\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Pricing\",layoutId:\"KeBTVifVE\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks3[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lCuZcvLlK\",webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"210px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcwgv3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"y1W4Xk4jo-container\",nodeId:\"y1W4Xk4jo\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"y1W4Xk4jo\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Alpha M1\",layoutId:\"y1W4Xk4jo\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks4[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lCuZcvLlK\",webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"210px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pts2np-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"oCam2S9lq-container\",nodeId:\"oCam2S9lq\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"oCam2S9lq\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Alpha M2 Coaching\",layoutId:\"oCam2S9lq\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks5[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"REGRA7hoM\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"210px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iwi2lt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"dQEk5Wwxf-container\",nodeId:\"dQEk5Wwxf\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"dQEk5Wwxf\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Alpha M3 Mentorship\",layoutId:\"dQEk5Wwxf\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks6[0]})})})})]})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||36)-0-36)/2),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-2bsq3a-container\",id:`${layoutId}-2bsq3a`,layoutDependency:layoutDependency,layoutId:\"pgdLXbIJA-container\",nodeId:\"pgdLXbIJA\",ref:ref3,rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:[/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"pgdLXbIJA\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Free Trading Lessons\",layoutId:\"pgdLXbIJA\",PnQ813Qxg:PnQ813Qxgtxyyif({overlay:overlay1}),qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:overlay1.visible?\"LQXjyoW02\":\"HhwQ1hV0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-2bsq3a`,offsetX:-175,offsetY:10,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1il3y5f\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"TwS3D4fvF\",ref:ref4,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${XWxsdOvDJ}px)`,backgroundColor:ILT7xcLmk,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.18065619053231788px -1.5px rgba(0, 0, 0, 0.04), 0px 1.1442666516217286px 0.6865599909730372px -3px rgba(0, 0, 0, 0.04), 0px 5px 3.0000000000000004px -4.5px rgba(0, 0, 0, 0), 0px 0.6021873017743928px 1.5656869846134214px -1px rgba(0, 0, 0, 0.06), 0px 2.288533303243457px 5.950186588432988px -2px rgba(0, 0, 0, 0.06), 0px 10px 26px -3px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uoosho\",layoutDependency:layoutDependency,layoutId:\"FAvjkIzhH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7xalb\",layoutDependency:layoutDependency,layoutId:\"kaYZjPQKU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o71vej-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XCEG2MxjN-container\",nodeId:\"XCEG2MxjN\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"XCEG2MxjN\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Trading Basics\",layoutId:\"XCEG2MxjN\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A4NNwe5zb\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sburoh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"G0pUGxLHz-container\",nodeId:\"G0pUGxLHz\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"G0pUGxLHz\",kf3NktHXk:\"New\",ku0K5iab7:\"Account Structure\",layoutId:\"G0pUGxLHz\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks7[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R9zDAbwff\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ilfs0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"plpNUY2rG-container\",nodeId:\"plpNUY2rG\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"plpNUY2rG\",kf3NktHXk:\"New\",ku0K5iab7:\"Trade Planning\",layoutId:\"plpNUY2rG\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks8[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oTXfu56eJ\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15uvu2b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"EMFEUiYtJ-container\",nodeId:\"EMFEUiYtJ\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"EMFEUiYtJ\",kf3NktHXk:\"New\",ku0K5iab7:\"Futures Trading Guide\",layoutId:\"EMFEUiYtJ\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks9[0]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mgh40q\",layoutDependency:layoutDependency,layoutId:\"XRABUop2z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rd7suy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"NumIEHZHx-container\",nodeId:\"NumIEHZHx\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"NumIEHZHx\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Technical Skills\",layoutId:\"NumIEHZHx\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mR1BF78gh\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ety9r5-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GbgoSjNNw-container\",nodeId:\"GbgoSjNNw\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"GbgoSjNNw\",kf3NktHXk:\"New\",ku0K5iab7:\"Supply & Demand\",layoutId:\"GbgoSjNNw\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks10[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DWnxacTIi\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o9tiw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mE1QI_ag3-container\",nodeId:\"mE1QI_ag3\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"mE1QI_ag3\",kf3NktHXk:\"New\",ku0K5iab7:\"HTF Zoning\",layoutId:\"mE1QI_ag3\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks11[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NNvxa4yHV\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"220.5px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-770up6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"tIBmsHrBj-container\",nodeId:\"tIBmsHrBj\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"tIBmsHrBj\",kf3NktHXk:\"New\",ku0K5iab7:\"Options Risk Analysis\",layoutId:\"tIBmsHrBj\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks12[0]})})})})]})]})})})})]})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6SEr5.framer-10aihsl, .framer-6SEr5 .framer-10aihsl { display: block; }\",\".framer-6SEr5.framer-1ltwia3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: var(--hkf6fz); overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-6SEr5 .framer-14day1l-container, .framer-6SEr5 .framer-1o71vej-container, .framer-6SEr5 .framer-1rd7suy-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6SEr5 .framer-45owg4-container, .framer-6SEr5 .framer-1po5uc9-container, .framer-6SEr5 .framer-9aoi12-container, .framer-6SEr5 .framer-2bsq3a-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-6SEr5 .framer-1s69nvq, .framer-6SEr5 .framer-1il3y5f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-6SEr5 .framer-sd5swc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 240px; }\",\".framer-6SEr5 .framer-199hmje { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-6SEr5 .framer-woi9bz-container, .framer-6SEr5 .framer-kcwgv3-container, .framer-6SEr5 .framer-pts2np-container, .framer-6SEr5 .framer-iwi2lt-container, .framer-6SEr5 .framer-1sburoh-container, .framer-6SEr5 .framer-11ilfs0-container, .framer-6SEr5 .framer-15uvu2b-container, .framer-6SEr5 .framer-1ety9r5-container, .framer-6SEr5 .framer-o9tiw-container, .framer-6SEr5 .framer-770up6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6SEr5 .framer-1uoosho { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 501px; }\",\".framer-6SEr5 .framer-7xalb, .framer-6SEr5 .framer-1mgh40q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-6SEr5[data-border=\"true\"]::after, .framer-6SEr5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 519\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZmT46usVX\":\"align\",\"odLrH8wIa\":\"textColor\",\"ILT7xcLmk\":\"dropdownBG\",\"XWxsdOvDJ\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerx6PfALCgy=withCSS(Component,css,\"framer-6SEr5\");export default Framerx6PfALCgy;Framerx6PfALCgy.displayName=\"Menu/Menu\";Framerx6PfALCgy.defaultProps={height:36,width:519};addPropertyControls(Framerx6PfALCgy,{ZmT46usVX:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},odLrH8wIa:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},ILT7xcLmk:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White [Dynamic]\"} */',title:\"Dropdown BG\",type:ControlType.Color},XWxsdOvDJ:{defaultValue:5,title:\"BG Blur\",type:ControlType.Number}});addFonts(Framerx6PfALCgy,[{explicitInter:true,fonts:[]},...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx6PfALCgy\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ZmT46usVX\\\":\\\"align\\\",\\\"odLrH8wIa\\\":\\\"textColor\\\",\\\"ILT7xcLmk\\\":\\\"dropdownBG\\\",\\\"XWxsdOvDJ\\\":\\\"bGBlur\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"519\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./x6PfALCgy.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";export function SearchIcon(props){return /*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z\",fill:\"currentColor\"})});}export function ClearIcon(props){return /*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",...props,children:[/*#__PURE__*/ _jsx(\"rect\",{width:\"256\",height:\"256\",fill:\"none\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm37.66,130.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32L139.31,128Z\",fill:\"currentColor\"})]});}export function SpinnerIcon(props){const borderWidth=3;return /*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",...props.style},children:[/*#__PURE__*/ _jsx(motion.div,{animate:{rotate:360},transition:{ease:\"linear\",duration:1,repeat:Infinity},style:{borderRadius:100,backgroundImage:`conic-gradient(from 270deg, transparent 0%, ${props.color} 100%)`,width:\"100%\",height:\"100%\"}}),/*#__PURE__*/ _jsx(\"div\",{style:{backgroundColor:props.backgroundColor,borderRadius:100,position:\"absolute\",top:borderWidth,left:borderWidth,bottom:borderWidth,right:borderWidth}})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"ClearIcon\":{\"type\":\"reactComponent\",\"name\":\"ClearIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SpinnerIcon\":{\"type\":\"reactComponent\",\"name\":\"SpinnerIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIcon\":{\"type\":\"reactComponent\",\"name\":\"SearchIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "export function Storage(name) {\n    this.ready = new Promise((resolve, reject)=>{\n        var request = window.indexedDB.open(location.origin);\n        request.onupgradeneeded = (e)=>{\n            this.db = e.target[\"result\"];\n            this.db.createObjectStore(\"store\");\n        };\n        request.onsuccess = (e)=>{\n            this.db = e.target[\"result\"];\n            resolve();\n        };\n        request.onerror = (e)=>{\n            this.db = e.target[\"result\"];\n            reject(e);\n        };\n    });\n}\nStorage.prototype.get = function(key) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().get(key);\n            request.onsuccess = (e)=>resolve(e.target.result)\n            ;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.getStore = function() {\n    return this.db.transaction([\n        \"store\"\n    ], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function(key, value) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().put(value, key);\n            request.onsuccess = resolve;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.delete = function(key, value) {\n    window.indexedDB.deleteDatabase(location.origin);\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"Storage\":{\"type\":\"function\"}}}", "// @ts-ignore\nimport{Storage}from\"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";export const hashCode=s=>s.split(\"\").reduce((a,b)=>{a=(a<<5)-a+b.charCodeAt(0);return a&a;},0);export function corsProxy(url){return`https://cors-anywhere.herokuapp.com/${url}`;}export async function cachedResponse(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{var req=new XMLHttpRequest;req.open(\"GET\",url,true);req.responseType=\"blob\";return new Promise((resolve,reject)=>{req.onload=async function(){if(this.status===200){await cache.set(url,this.response);resolve(this.response);}else{reject(new Error(`Response status ${this.status} ${this.statusText}`));}};req.onerror=function(error){reject(error);};req.send();});}}export async function setCachedData(url,dataToCache,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.set(cacheKey,dataToCache);}export async function checkForCachedData(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{return null;}}\nexport const __FramerMetadata__ = {\"exports\":{\"hashCode\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkForCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"corsProxy\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"cachedResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cache.map", "import{checkForCachedData,setCachedData}from\"https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16\";const VERSION=1;const defaultLocaleId=\"default\";export function isDefaultLocaleId(localeId){return!localeId||localeId===\"default\";}const INDEX_KEY=\"searchIndexCache\";function getIndexKey(localeId){if(isDefaultLocaleId(localeId))return INDEX_KEY;return`${INDEX_KEY}-${localeId}`;}const METADATA_KEY=\"searchCacheMetadata\";function getMetadataKey(localeId){if(isDefaultLocaleId(localeId))return METADATA_KEY;return`${METADATA_KEY}-${localeId}`;}export async function getCachedIndex(localeId){// A check here for metadata can be added later if we need to\n// migrate or expire the index. Though most likely, any version change\n// should result in deleting the cache and starting again.\nconst indexKey=getIndexKey(localeId);const cachedIndex=await checkForCachedData(indexKey);if(cachedIndex){return cachedIndex;}}export function setCachedIndex(localeId,index){const indexKey=getIndexKey(localeId);setCachedData(indexKey,index);const metadata={version:VERSION,timestamp:Date.now()};const metadataKey=getMetadataKey(localeId);setCachedData(metadataKey,metadata);}\nexport const __FramerMetadata__ = {\"exports\":{\"getCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isDefaultLocaleId\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cachedIndex.map", "// Fake example data used for when the search component is in preview mode.\n// Note that the `url` value is used as a key in React, so it needs to be unique.\nexport const fakeResults={\"/\":{version:1,title:\"Example Search Result\",description:\"Description of search result.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/\",codeblock:[]},\"/example-1\":{version:1,title:\"Publish your Site to Search\",description:\"Try Site Search to instantly search your Framer site content.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/1/\",codeblock:[]},\"/example-2\":{version:1,title:\"Customise your Site Search\",description:\"Personalize everything from corner radius, to icon weight.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/2/\",codeblock:[]}};\nexport const __FramerMetadata__ = {\"exports\":{\"fakeResults\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fakeResults.map", "// This file is based on the Levenshtein algorithm. Originally from Koen but maybe he\n// got it from somewhere else.\nconst peq=new Uint32Array(65536);const myers_32=(a,b)=>{const n=a.length;const m=b.length;const lst=1<<n-1;let pv=-1;let mv=0;let sc=n;let i=n;while(i--){peq[a.charCodeAt(i)]|=1<<i;}for(i=0;i<m;i++){let eq=peq[b.charCodeAt(i)];const xv=eq|mv;eq|=(eq&pv)+pv^pv;mv|=~(eq|pv);pv&=eq;if(mv&lst){sc++;}if(pv&lst){sc--;}mv=mv<<1|1;pv=pv<<1|~(xv|mv);mv&=xv;}i=n;while(i--){peq[a.charCodeAt(i)]=0;}return sc;};const myers_x=(b,a)=>{const n=a.length;const m=b.length;const mhc=[];const phc=[];const hsize=Math.ceil(n/32);const vsize=Math.ceil(m/32);for(let i=0;i<hsize;i++){phc[i]=-1;mhc[i]=0;}let j=0;for(;j<vsize-1;j++){let mv=0;let pv=-1;const start=j*32;const vlen=Math.min(32,m)+start;for(let k=start;k<vlen;k++){peq[b.charCodeAt(k)]|=1<<k;}for(let i1=0;i1<n;i1++){const eq=peq[a.charCodeAt(i1)];const pb=phc[i1/32|0]>>>i1&1;const mb=mhc[i1/32|0]>>>i1&1;const xv=eq|mv;const xh=((eq|mb)&pv)+pv^pv|eq|mb;let ph=mv|~(xh|pv);let mh=pv&xh;if(ph>>>31^pb){phc[i1/32|0]^=1<<i1;}if(mh>>>31^mb){mhc[i1/32|0]^=1<<i1;}ph=ph<<1|pb;mh=mh<<1|mb;pv=mh|~(xv|ph);mv=ph&xv;}for(let k1=start;k1<vlen;k1++){peq[b.charCodeAt(k1)]=0;}}let mv1=0;let pv1=-1;const start1=j*32;const vlen1=Math.min(32,m-start1)+start1;for(let k2=start1;k2<vlen1;k2++){peq[b.charCodeAt(k2)]|=1<<k2;}let score=m;for(let i2=0;i2<n;i2++){const eq1=peq[a.charCodeAt(i2)];const pb1=phc[i2/32|0]>>>i2&1;const mb1=mhc[i2/32|0]>>>i2&1;const xv1=eq1|mv1;const xh1=((eq1|mb1)&pv1)+pv1^pv1|eq1|mb1;let ph1=mv1|~(xh1|pv1);let mh1=pv1&xh1;score+=ph1>>>m-1&1;score-=mh1>>>m-1&1;if(ph1>>>31^pb1){phc[i2/32|0]^=1<<i2;}if(mh1>>>31^mb1){mhc[i2/32|0]^=1<<i2;}ph1=ph1<<1|pb1;mh1=mh1<<1|mb1;pv1=mh1|~(xv1|ph1);mv1=ph1&xv1;}for(let k3=start1;k3<vlen1;k3++){peq[b.charCodeAt(k3)]=0;}return score;};const distance=(a,b)=>{if(a.length<b.length){const tmp=b;b=a;a=tmp;}if(b.length===0){return a.length;}if(a.length<=32){return myers_32(a,b);}return myers_x(a,b);};const closest=(str,arr)=>{let min_distance=Infinity;let min_index=0;for(let i=0;i<arr.length;i++){const dist=distance(str,arr[i]);if(dist<min_distance){min_distance=dist;min_index=i;}}return arr[min_index];};export{closest,distance};\nexport const __FramerMetadata__ = {\"exports\":{\"closest\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"distance\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fuzzySearch.map", "export const localStorageDebugFlag=typeof window!==\"undefined\"&&window.localStorage.getItem(\"__framerDebugSearch\")===\"true\";const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]\\d*|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}export function clampText(text,maxLength){const textLength=text.length;if(textLength<=maxLength){return text;}const slicedText=text.slice(0,maxLength);if(textLength>maxLength){return slicedText+\"\u2026\";}return slicedText;}export function isEmptyObject(object){return Object.keys(object).length===0;}export function createLogger(showOutput){function log(...data){console.log(Date.now(),...data);}function time(label){console.time(label);}function timeEnd(label){console.timeEnd(label);}function noop(){}if(!showOutput){return{log:noop,time:noop,timeEnd:noop};}return{log,time,timeEnd};}export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFontFamily(theme){var _theme_inputFont,_theme_titleFont,_theme_subtitleFont;if((_theme_inputFont=theme.inputFont)===null||_theme_inputFont===void 0?void 0:_theme_inputFont.fontFamily)return theme.inputFont.fontFamily;if((_theme_titleFont=theme.titleFont)===null||_theme_titleFont===void 0?void 0:_theme_titleFont.fontFamily)return theme.titleFont.fontFamily;if((_theme_subtitleFont=theme.subtitleFont)===null||_theme_subtitleFont===void 0?void 0:_theme_subtitleFont.fontFamily)return theme.subtitleFont.fontFamily;return DEFAULT_FONT_FAMILY;}export function animationKeyFromLayout(layout){return`${layout}Animation`;}export const safeDocument=typeof document!==\"undefined\"?document:null;export const safeWindow=typeof window!==\"undefined\"?window:null;const metaTagSelector='meta[name=\"framer-search-index\"]';export function getMetaTagContent(){const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector(metaTagSelector);if(!metaTag)return undefined;const metaTagContent=metaTag.getAttribute(\"content\");return metaTagContent;}export const checkIfOverLimit=()=>{return getMetaTagContent()===\"limit-reached\";};export function stripLocaleSlugFromPath(url,localeSlug){if(!localeSlug)return url;const localeSlugWithSlash=`/${localeSlug}`;if(url.startsWith(localeSlugWithSlash)){return url.slice(localeSlugWithSlash.length);}}\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkIfOverLimit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createLogger\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeDocument\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"animationKeyFromLayout\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeWindow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"clampText\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stripLocaleSlugFromPath\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMetaTagContent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFontFamily\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localStorageDebugFlag\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isEmptyObject\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "// @ts-ignore\nimport{useLocaleInfo}from\"framer\";import{clamp}from\"framer-motion\";import{useEffect,useMemo,useState}from\"react\";import{SearchResultTitleType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{getCachedIndex,setCachedIndex,isDefaultLocaleId}from\"https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js\";import{fakeResults}from\"https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js\";import{distance}from\"https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js\";import{createLogger,localStorageDebugFlag,safeDocument,safeWindow,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";const{log,time,timeEnd}=createLogger(localStorageDebugFlag);function isValidUrl(url){try{new URL(url);return true;}catch(_error){return false;}}function splitWords(text){try{// Regex lookbehind is used to ignore ampersands when splitting\n// words. For example \"H&M\" will not be split and is considered as\n// one word, but \"H & M\" will be split.\n// However, some browsers (like Safari iOS 15) don't support\n// lookbehind and will crash. When it's not supported, fallback to\n// a safer regex that always splits ampersands.\nreturn text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+(?<!\\\\p{L}&)(?!&\\\\p{L})\",\"u\"));}catch{log(\"Falling back to regex without lookbehind\");return text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+\",\"u\"));}}function getUniqueWords(str){const words=splitWords(str).filter(word=>word.trim()&&word.length>0);return new Set(words);}/**\n * Replace accented characters with equivilant non-accented versions and\n * make everything lowercase.\n */function getNormalizedString(text){if(Array.isArray(text)){return text.map(getNormalizedString);}return text.normalize(\"NFD\")// From: https://stackoverflow.com/a/37511463\n.replace(/[\\u0300-\\u036f]/g,\"\").toLowerCase();}function getNormalizedItem(item){const normalizedItem={};for(const[key,value]of Object.entries(item)){if(typeof value===\"string\"){normalizedItem[key]=getNormalizedString(value);continue;}if(Array.isArray(value)){normalizedItem[key]=getNormalizedString(value);continue;}normalizedItem[key]=value;}return normalizedItem;}function getMatchRange(currentRange,start,end){const result={...currentRange};if(start<result.start){result.start=start;}if(end>result.end){result.end=end;}return result;}/**\n * Score index item based on the contents of it's fields such as title, description, headings etc.\n *\n * Note that this does not normalize the item or query. Normalization is expected to happen\n * before passing the data into this.\n */function getScoreForSearchIndexItem(item,query,words,fullQuery){let score=0;const match={title:{start:Infinity,end:0},description:{start:Infinity,end:0}};const urlWords=getUniqueWords(item.url);// Match query based on words in the URL so that random strings inside\n// other strings are not matched.\nif(urlWords.has(query)){score+=10;}// Really boost single word queries that match single word URLs.\nif(words.size===1&&urlWords.size===1&&urlWords.values().next().value===query){score+=score*5;}// Score shorter URLs higher so `/pricing` is before `/lala/pricing`.\nif(score>0){const splitLength=item.url.split(\"/\").length;score+=clamp(10-splitLength,0,splitLength);}const titleWords=getUniqueWords(item.title);// Prefer full word matches in the title.\nif(titleWords.has(query)){score+=10;}const titleIndex=item.title.indexOf(query);if(titleIndex!==-1){score+=10;// TODO: Matches are currently not used, but they can be used in the\n// future to add text highlighting.\nmatch.title=getMatchRange(match.title,titleIndex,titleIndex+query.length);}// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(item.title,fullQuery)<=2){score+=score*10;}// Fuzzy match full words in the title.\nfor(const titleWord of titleWords){const distanceScore=distance(query,titleWord);// Small distance score helps with small typos.\nif(distanceScore<=2){score+=10;}}const headings=[...item.h1,...item.h2,...item.h3,...item.h4,...item.h5,...item.h6];for(const heading of headings){const headingWords=getUniqueWords(heading);// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(heading,fullQuery)<=2){score+=score*10;}// Bias headings that start with the query as this helps when\n// you know the title you are searching for.\nif(heading.startsWith(query)){score+=10;}if(headingWords.has(query)){score+=10;}if(heading.includes(query)){score+=1;}// Fuzzy match full words in headings.\nfor(const headingWord of headingWords){const distanceScore=distance(query,headingWord);if(distanceScore<=2){score+=1;}}}const descriptionIndex=item.description.indexOf(query);if(descriptionIndex!==-1){score+=10;match.description=getMatchRange(match.description,descriptionIndex,descriptionIndex+query.length);}for(const p of item.p){if(p.includes(query)){score+=.5;}}for(const codeblock of item.codeblock){// If the full query is close to being the codeblock, score this highly as\n// the user is most likely looking for that exact code.\nif(distance(codeblock,fullQuery)<=2){score*=10;}if(codeblock.includes(fullQuery)){score+=10;}if(codeblock.includes(query)){score+=.5;}}return{score,match};}function getSearchIndexItemScore(item,query){const normalizedItem=getNormalizedItem(item);const normalizedQuery=getNormalizedString(query);const queryWords=getUniqueWords(normalizedQuery);let total=0;for(const queryWord of queryWords){const{score}=getScoreForSearchIndexItem(normalizedItem,queryWord,queryWords,normalizedQuery);total+=score;}return total;}function useRawSearch(index,query,settings){const results=useMemo(()=>{if(!query||!index){return[];}const path=safeWindow===null||safeWindow===void 0?void 0:safeWindow.location.pathname;time(\"query\");// Filter the results.\nconst results=Object.values(index).map(item=>{const score=getSearchIndexItemScore(item,query);const heading=item.h1.length&&item.h1[0];const title=(settings===null||settings===void 0?void 0:settings.titleType)===SearchResultTitleType.Title?item.title:heading?heading:item.title;// Convert index item to result item.\nconst result={url:item.url,title,description:item.description,body:[...item.p,item.codeblock].join(\" \"),score};return result;}).filter(item=>item.score>settings.minimumScore||0).filter(item=>{if(!path)return true;return item.url!==path;}).sort((itemA,itemB)=>itemB.score-itemA.score);timeEnd(\"query\");return results;},[index,query]);return results;}function getIndexedScopedToUrl(index,rawUrlScope,localeSlug){const scopedIndex={};const baseScopeUrlHasVariable=rawUrlScope.includes(\":\");const urlUpToPathVariable=rawUrlScope.split(\":\")[0];const urlScope=urlUpToPathVariable.length>1?urlUpToPathVariable:\"\";for(const url in index){const strippedURL=stripLocaleSlugFromPath(url,localeSlug);if(!strippedURL.startsWith(urlScope)){continue;}if(baseScopeUrlHasVariable&&url.length<=urlScope.length){continue;}scopedIndex[url]=index[url];}return scopedIndex;}export function useSearch(query,settings){const[searchIndex,_setSearchIndex]=useState({});const[status,setStatus]=useState(\"loading\");const results=useRawSearch(searchIndex,query,settings);const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;// Seperate setter function so that the URL scope is always applied\n// to indexes loaded from either the cache or network.\nfunction setSearchIndex(index,options={ignoreScope:false}){let scopedIndex=index;if(settings.urlScope&&!options.ignoreScope){scopedIndex=getIndexedScopedToUrl(index,settings.urlScope,activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug);log(\"Using URL scope\",settings.urlScope);}_setSearchIndex(scopedIndex);}useEffect(()=>{async function loadSearchIndex(){setStatus(\"loading\");const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector('meta[name=\"framer-search-index\"]');if(!metaTag){setStatus(\"no-meta-tag-found\");setSearchIndex(fakeResults,{ignoreScope:true});log(\"No meta tag found\");return;}const cachedIndex=await getCachedIndex(localeId);const metaTagContent=metaTag.getAttribute(\"content\");const isOverLimit=metaTagContent===\"limit-reached\";if(isOverLimit){log(\"Page limit for plan exceeded\");}// If a cached index exists, use the cached version until latest one\n// from the network loads.\nif(cachedIndex&&!isOverLimit){setSearchIndex(cachedIndex);setStatus(\"loading-with-cache\");log(\"Using cached index\");}// Return early and do not make a fetch request if the URL is not valid.\nif(!metaTagContent||!isValidUrl(metaTagContent)){log(\"Meta tag exists but URL is not valid yet\");// If there is no cached index, show the pending index message.\n// Otherwise use the cache to as the index to search.\nif(!cachedIndex){setStatus(\"pending-index-generation\");log(\"No cache to use, page reload required to check for meta tag\");}else{log(\"Continue using cache\");}return;}const searchIndexURL=getSearchIndexURL(metaTagContent,localeId);const response=await fetch(searchIndexURL);if(!response.ok){throw new Error(response.statusText);}const downloadedIndex=await response.json();setSearchIndex(downloadedIndex);setCachedIndex(localeId,downloadedIndex);setStatus(\"success\");log(\"Using downloaded index\");}loadSearchIndex().catch(error=>{// TODO: Check for error type here. If it's a network error,\n// we could do a few retries.\nsetStatus(\"error\");log(\"Failed to load search index\",error);});},[localeId]);log({status,results});return{results,status};}function getSearchIndexURL(baseURL,localeId){if(isDefaultLocaleId(localeId))return baseURL;return baseURL.replace(\".json\",`-${localeId}.json`);}\nexport const __FramerMetadata__ = {\"exports\":{\"useSearch\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIndex\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useSearch.map", "export var Browser;(function(Browser){var isTouch=Browser.isTouch=()=>\"ontouchstart\"in window||navigator.maxTouchPoints>0;var isChrome=Browser.isChrome=()=>navigator.userAgent.toLowerCase().includes(\"chrome/\");var isWebKit=Browser.isWebKit=()=>navigator.userAgent.toLowerCase().includes(\"applewebkit/\");var isSafari=Browser.isSafari=()=>isWebKit()&&!isChrome();var isSafariDesktop=Browser.isSafariDesktop=()=>isSafari()&&!isTouch();var isWindows=Browser.isWindows=()=>/Win/.test(navigator.platform);var isMacOS=Browser.isMacOS=()=>/Mac/.test(navigator.platform);})(Browser||(Browser={}));\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./browser.map", "// From: @framerjs/fresco/src/components/utils/useCallbackOnMouseMove.ts\nimport{useRef,useCallback}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";/**\n * Webkit fires mousemove events if the pointer's coordination changes relative\n * to its container (e.g. if the container scrolls), or when a modifier key is\n * pressed, mousemove would fire even if the cursor did not actually move.\n * This helper compares the cursor position between mouse events, and fire the\n * callback only when its position changes.\n */ export const useCallbackOnMouseMove=(callback,mousePositionRef)=>{const prevPositionRef=useRef(null);return useCallback(event=>{if(!Browser.isSafari())return callback(event);const ref=mousePositionRef?mousePositionRef:prevPositionRef;const{clientX,clientY}=event;const prevCursorPosition=ref.current;ref.current={x:clientX,y:clientY};// Ignore mouse moves unless we have a position. Else it might be an\n// element that appears behind the mouse without the mouse moving.\nif(!prevCursorPosition){return;}if(prevCursorPosition.x!==clientX||prevCursorPosition.y!==clientY){return callback(event);}},[mousePositionRef,callback]);};\nexport const __FramerMetadata__ = {\"exports\":{\"useCallbackOnMouseMove\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Point\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useCallbackOnMouseMove.map", "// Safari does not support `element.scrollIntoView({ block: \"nearest\" })`, so this\n// is a workaround for that.\nexport function scrollIntoView(targetElement,scrollElement,/** Additional spacing to add from the top or bottom of the scroll element viewport. */ {offsetTop,offsetBottom}){const targetElementBounds=targetElement.getBoundingClientRect();const scrollElementBounds=scrollElement.getBoundingClientRect();if(targetElementBounds.top<scrollElementBounds.top){const difference=scrollElementBounds.top-targetElementBounds.top;scrollElement.scrollTop=scrollElement.scrollTop-difference-offsetTop;}else if(targetElementBounds.bottom>scrollElementBounds.bottom){const topAligned=scrollElementBounds.top-targetElementBounds.top;const minOffset=scrollElement.scrollTop-topAligned-offsetTop;const bottomAligned=targetElementBounds.bottom-scrollElementBounds.bottom;const offset=scrollElement.scrollTop+bottomAligned+offsetBottom;scrollElement.scrollTop=Math.min(minOffset,offset);}}\nexport const __FramerMetadata__ = {\"exports\":{\"scrollIntoView\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./scrollIntoView.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useSearch}from\"https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js\";import React,{useEffect,useState,useMemo,forwardRef,useRef,useDeferredValue,useLayoutEffect,useCallback,useImperativeHandle}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";import{motion,clamp,useAnimate}from\"framer-motion\";import{SearchIcon,ClearIcon,SpinnerIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{clampText,getFontFamily,localStorageDebugFlag,animationKeyFromLayout,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{useCallbackOnMouseMove}from\"https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js\";import{scrollIntoView}from\"https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js\";import{// @ts-expect-error Internal API\nuseLocaleInfo,useRouter,inferInitialRouteFromPath}from\"framer\";const MAX_DESCRIPTION_LENGTH=120;const MODAL_MAX_HEIGHT=496;const VERTICAL_SPACING_MULTIPLIER=.6;function ClearButton({theme,type,onClick,text}){const shouldDisplayIcon=type===\"icon\";const iconOrText=shouldDisplayIcon?/*#__PURE__*/_jsx(ClearIcon,{style:{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize}}):text;return /*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,fontSize:theme&&theme.titleFont&&theme.titleFont.fontSize?theme.titleFont.fontSize:15},children:/*#__PURE__*/_jsx(\"button\",{className:\"__framer-search-clear-button\",onClick:onClick,style:{fontFamily:\"inherit\",border:\"none\",background:\"none\",cursor:\"pointer\",display:\"flex\",textTransform:\"uppercase\",color:theme.inputIconColor,fontSize:\"0.75em\",padding:0},children:iconOrText})});}function Divider({theme,type}){const styles={background:theme.foregroundColor,height:1,flexShrink:0,opacity:.05};if(type===\"contained\"&&theme){styles.marginLeft=theme.horizontalSpacing;styles.marginRight=theme.horizontalSpacing;}return /*#__PURE__*/_jsx(\"div\",{style:styles});}export const Input=/*#__PURE__*/forwardRef(function Input(props,ref){const{value=\"\",status,autofocus,theme,placeholder,iconType,clearButtonType,onChange}=props;const[inputValue,setInputValue]=useState(value);const[isFocused,setIsFocused]=useState(false);const inputRef=useRef();useImperativeHandle(ref,()=>inputRef.current);React.useLayoutEffect(()=>{// Runs on unmount, fixes a bug in Safari that scrolls to the bottom\n// of the page when the input unmounts.\nreturn()=>{const inputElement=inputRef.current;if(!inputElement||inputElement!==document.activeElement)return;inputElement.blur();};},[]);const handleInputClick=()=>{if(inputRef.current){inputRef.current.focus();}};const handleClearClick=()=>{setInputValue(\"\");};useEffect(()=>{onChange(inputValue);},[inputValue]);const hasInputText=inputValue.length>0;const showClearButton=inputValue.length>0&&clearButtonType&&clearButtonType!==\"none\";const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const searchIcon=iconType===\"custom\"&&theme.inputIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon alongside the Site Search input\",src:theme.inputIconImage.src,width:theme.inputIconSize,height:theme.inputIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize});return /*#__PURE__*/_jsxs(\"div\",{role:\"search\",style:{...inputContainerStyle,fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,gap:12,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,touchAction:\"none\"},onClick:handleInputClick,children:[/*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,display:\"flex\"},children:status===\"loading\"&&inputValue?/*#__PURE__*/_jsx(SpinnerIcon,{color:theme.inputIconColor,backgroundColor:theme.backgroundColor,style:{height:theme&&theme.inputIconSize,width:theme&&theme.inputIconSize}}):searchIcon}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,spellCheck:false,autoFocus:autofocus,style:{...inputStyle,WebkitTapHighlightColor:\"rgba(0,0,0,0)\",color:theme.foregroundColor,lineHeight:\"2em\",verticalAlign:\"baseline\",...theme.titleFont,...theme.inputFont,fontSize:theme.inputFontSize,// @ts-ignore\n\"--framer-search-placeholder-color\":theme.placeholderColor},onFocus:()=>{const scrollOffset=document.documentElement.scrollTop;document.documentElement.scrollTop=scrollOffset;},placeholder:placeholder,value:inputValue,onChange:()=>setInputValue(inputRef.current.value)}),showClearButton&&/*#__PURE__*/_jsx(ClearButton,{theme:theme,type:props.clearButtonType,text:props.clearButtonText,onClick:handleClearClick})]});});const inputContainerStyle={display:\"inline-flex\",alignItems:\"center\",flexShrink:0};const inputStyle={outline:\"none\",border:\"none\",background:\"transparent\",fontWeight:500,height:\"2em\",padding:0,width:\"100%\"};export const ResultRow=/*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(function ResultRow(props,ref){const{index,result,prevMousePositionRef,type=\"contained\",subtitleType=\"path\",selected=false,theme,localeSlug,style,onMouseMove,onPointerDown,onNavigateTo}=props;const{url,title,score}=result;const urlPath=useMemo(()=>{return stripLocaleSlugFromPath(url,localeSlug);},[url,localeSlug]);const handleMouseMove=useCallbackOnMouseMove(event=>onMouseMove(event,index),prevMousePositionRef);const isContained=type===\"contained\";const borderRadius=isContained?clamp(0,Infinity,theme.borderRadius-theme.spacing):0;const subtitleText=subtitleType===\"path\"?urlPath:clampText(result.description,MAX_DESCRIPTION_LENGTH);const handleClick=event=>{event.preventDefault();onNavigateTo(result.url);};const focusTrap=event=>{event.preventDefault();};return /*#__PURE__*/_jsx(\"a\",{ref:ref,style:{textDecoration:\"none\"},href:result.url,onClick:handleClick,onMouseMove:handleMouseMove,onMouseDown:focusTrap,onPointerDown:event=>onPointerDown(event,index),children:/*#__PURE__*/_jsxs(\"li\",{style:{...resultContainer,...style,paddingTop:isContained?12:16,paddingBottom:isContained?12:16,color:theme.foregroundColor,position:\"relative\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing},children:[/*#__PURE__*/_jsx(\"div\",{style:{backgroundColor:theme.foregroundColor,position:\"absolute\",opacity:selected?.06:0,borderRadius,left:theme&&isContained?theme.spacing:0,right:theme&&isContained?theme.spacing:0,top:0,bottom:0}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",gap:4},children:[/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,...theme.titleFont,lineHeight:\"1.4em\"},children:title}),/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,color:theme.subtitleColor,...theme.subtitleFont,whiteSpace:\"nowrap\",overflow:\"hidden\",textOverflow:\"ellipsis\",lineHeight:\"1.4em\"},children:[localStorageDebugFlag?score:\"\",\" \",subtitleText]})]})]},result.url)});}));/**\n * Flexible gap used inside a flexbox layout to push down the quick menu\n * by 20% of the screen height, but also allow it to collapse to zero if\n * there is not enough vertical room.\n */function QuickMenuSpacer({onClick}){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flexBasis:\"20vh\"},onClick:onClick});}const layoutContainerStyle={display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"flex-start\",gap:15,overflow:\"visible\"};function LayoutContainer({layoutType,theme,onKeyDown,onDismiss,children,modalOptions}){const layoutStyles=getLayoutBaseStyles(layoutType,theme);const style={...layoutContainerStyle,...layoutStyles,willChange:\"transform\",marginTop:layoutType===\"FixedTop\"?theme.offsetTop:0,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\"};const innerStyle={...layoutContainerStyle,...layoutStyles,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",gap:layoutType===\"Sidebar\"?0:theme.gapBetweenStatusAndSearch,backgroundColor:layoutType===\"Sidebar\"?theme.backgroundColor:\"transparent\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\",originX:.5,originY:.5};function getContainerAnimation(){switch(layoutType){case\"FixedTop\":{const key=animationKeyFromLayout(\"FixedTop\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{y:-10,opacity:.2,transition:{duration:Browser.isTouch()?0:.15}};}break;}case\"QuickMenu\":{const key=animationKeyFromLayout(\"QuickMenu\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{scale:.95,opacity:0,y:0,x:0,rotate:0,transition:{type:\"spring\",stiffness:600,damping:40}};}break;}case\"Sidebar\":{const key=animationKeyFromLayout(\"Sidebar\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{x:-10,opacity:0,transition:{duration:.15}};}break;}}}const containerAnimation=getContainerAnimation();return /*#__PURE__*/_jsxs(\"div\",{style:style,onKeyDown:onKeyDown,onClick:event=>event.stopPropagation(),children:[layoutType===\"QuickMenu\"&&/*#__PURE__*/_jsx(QuickMenuSpacer,{onClick:onDismiss}),/*#__PURE__*/_jsx(motion.div,{initial:containerAnimation,animate:{opacity:1,scale:1,x:0,y:0,rotate:0},transition:containerAnimation?containerAnimation.transition:undefined,exit:{opacity:0,transition:{duration:0}},style:innerStyle,children:children})]});}function ModalContainer({layoutType,theme,children,heightIsStatic,heightTransition,heightDeps}){const style={// This `willChange` is required to avoid weird rendering issues where\n// parts of the search window won't redraw, which we observed in Safari 16.4.\nwillChange:\"transform\",backgroundColor:theme.backgroundColor,color:theme.foregroundColor,borderRadius:layoutType===\"QuickMenu\"?theme.borderRadius:0,width:\"100%\",display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",boxShadow:layoutType!==\"Sidebar\"?theme.shadow:undefined,maxHeight:layoutType===\"QuickMenu\"?`min(${MODAL_MAX_HEIGHT}px, calc(100vh - 30px))`:undefined};// Opt-in Height Animations for the Search Quick Actions menu.\n// These are disabled by default, but can be enabled via props.\nconst[scope,animate]=useAnimate();useLayoutEffect(()=>{if(layoutType!==\"QuickMenu\"||heightIsStatic)return;const prevHeight=scope.current.offsetHeight;scope.current.style.height=\"auto\";const height=scope.current.offsetHeight;scope.current.style.height=prevHeight+\"px\";animate(scope.current,{height:[prevHeight,height]},heightTransition);},heightDeps);return /*#__PURE__*/_jsx(\"div\",{ref:scope,role:\"dialog\",className:layoutType===\"FixedTop\"?\"__framer-max-height-80dvh\":undefined,style:style,children:children});}const ScrollView=/*#__PURE__*/React.forwardRef(function ScrollView({theme,children},ref){const isTouch=Browser.isTouch();const[canScroll,setCanScroll]=React.useState(true);React.useEffect(()=>{if(!isTouch)return;const element=ref.current;if(!element)return;setCanScroll(element.scrollHeight>element.clientHeight);});return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{width:`calc(100% + ${theme.scrollBarWidth}px)`,overflowY:\"scroll\",overflowX:\"hidden\",overscrollBehavior:\"contain\",touchAction:canScroll?undefined:\"none\",// Make the list appear slightly under the divider\n// so that the divider is still visible when the first\n// item is selected.\nmarginTop:-1},children:children});});const statusStyle={backgroundColor:\"#B5B5B5\",color:\"#FFF\",boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.25)\",fontFamily:\"inherit\",textAlign:\"center\",fontSize:13,padding:\"8px 0\"};function StatusMessage({status,layoutType,theme}){const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const style={...statusStyle,userSelect:\"none\",fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,fontWeight:500,lineHeight:`calc(${theme.inputFontSize} * 2)`,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,...theme.titleFont,zIndex:theme.zIndex+1,maxWidth:layoutType===\"FixedTop\"?\"none\":theme.width,width:layoutType===\"FixedTop\"?`calc(100% - ${verticalSpacing*2}px`:\"100%\",boxShadow:layoutType!==\"Sidebar\"&&statusStyle.boxShadow,borderRadius:layoutType!==\"Sidebar\"&&theme.borderRadius};// Show less text on fixed text to look nicer on mobile\nconst previewInfoText=layoutType===\"FixedTop\"?\"Preview Mode\":\"Preview Mode. Publish your Site to Search.\";if(status===\"no-meta-tag-found\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:previewInfoText});}if(status===\"pending-index-generation\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:\"Site is being indexed\"});}return null;}const resultTitle={textOverflow:\"ellipsis\",maxWidth:\"100%\",overflow:\"hidden\",fontWeight:500,whiteSpace:\"nowrap\",flex:1,margin:0};const resultContainer={padding:\"16px 20px\",listStyle:\"none\",fontWeight:500};const sidebarStyles={left:0,width:500};const fixedTopStyles={top:0,width:\"100%\"};const quickMenuStyles={width:500};function getLayoutBaseStyles(layoutOption,theme){switch(layoutOption){case\"Sidebar\":return{...sidebarStyles,width:theme.width};case\"FixedTop\":return fixedTopStyles;case\"QuickMenu\":return{...quickMenuStyles,width:theme.width};}}export var SearchInputClearButtonType;(function(SearchInputClearButtonType){SearchInputClearButtonType[\"Icon\"]=\"icon\";SearchInputClearButtonType[\"Text\"]=\"text\";SearchInputClearButtonType[\"None\"]=\"none\";})(SearchInputClearButtonType||(SearchInputClearButtonType={}));export var SearchInputDividerType;(function(SearchInputDividerType){SearchInputDividerType[\"None\"]=\"none\";SearchInputDividerType[\"FullWidth\"]=\"fullWidth\";SearchInputDividerType[\"Contained\"]=\"contained\";})(SearchInputDividerType||(SearchInputDividerType={}));export var SearchResultTitleType;(function(SearchResultTitleType){SearchResultTitleType[\"H1\"]=\"h1\";SearchResultTitleType[\"Title\"]=\"title\";})(SearchResultTitleType||(SearchResultTitleType={}));export var SearchResultSubtitleType;(function(SearchResultSubtitleType){SearchResultSubtitleType[\"Description\"]=\"description\";SearchResultSubtitleType[\"Path\"]=\"path\";})(SearchResultSubtitleType||(SearchResultSubtitleType={}));export var SearchResultItemType;(function(SearchResultItemType){SearchResultItemType[\"FullWidth\"]=\"fullWidth\";SearchResultItemType[\"Contained\"]=\"contained\";})(SearchResultItemType||(SearchResultItemType={}));export var SearchLayoutType;(function(SearchLayoutType){SearchLayoutType[\"Sidebar\"]=\"Sidebar\";SearchLayoutType[\"FixedTop\"]=\"FixedTop\";SearchLayoutType[\"QuickMenu\"]=\"QuickMenu\";})(SearchLayoutType||(SearchLayoutType={}));export var SearchEntryType;(function(SearchEntryType){SearchEntryType[\"Icon\"]=\"icon\";SearchEntryType[\"Text\"]=\"text\";})(SearchEntryType||(SearchEntryType={}));export var SearchIconType;(function(SearchIconType){SearchIconType[\"Default\"]=\"default\";SearchIconType[\"Custom\"]=\"custom\";})(SearchIconType||(SearchIconType={}));/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function SearchModal(props){const{layoutType,theme,urlScope,inputOptions,backdropOptions,modalOptions,resultOptions,onDismiss}=props;const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;const localeSlug=activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug;const input=useRef();const selectedResultRow=useRef();const scrollView=useRef();const[selected,setSelected]=useState({index:0,scroll:true});const prevMousePositionRef=useRef(null);const[isKeyboardNavigationDisabled,setIsKeyboardNavigationDisabled]=useState(Browser.isTouch);const[query,setQuery]=useState(\"\");const deferredQuery=useDeferredValue(query);const{results,status}=useSearch(deferredQuery,{minimumScore:0,urlScope,titleType:resultOptions.titleType});const selectedResult=results[selected.index];const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);useEffect(()=>{// Reset the selection to the top if the query changes.\nsetSelected({index:0,scroll:true});},[deferredQuery]);const handleResultRowPointerDown=useCallback((event,index)=>{if(event.pointerType!==\"touch\")return;setIsKeyboardNavigationDisabled(true);setSelected({index,scroll:false});},[]);const handleResultRowMouseMove=useCallback((event,index)=>{setSelected(previousSelected=>{if(previousSelected.index===index){return previousSelected;}return{index,scroll:false};});},[]);const router=useRouter();const navigateTo=useCallback(async url=>{if(status===\"no-meta-tag-found\"){return;}try{var _router_getRoute,_route_page_preload,_route_page,_router_navigate;// Ideally, we would directly expose `routeId` in the search index so that\n// we don't need to infer it from the URL.\nconst{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,url);const route=(_router_getRoute=router.getRoute)===null||_router_getRoute===void 0?void 0:_router_getRoute.call(router,routeId);onDismiss();await (route===null||route===void 0?void 0:(_route_page=route.page)===null||_route_page===void 0?void 0:(_route_page_preload=_route_page.preload)===null||_route_page_preload===void 0?void 0:_route_page_preload.call(_route_page));(_router_navigate=router.navigate)===null||_router_navigate===void 0?void 0:_router_navigate.call(router,routeId,null,pathVariables,false);}catch(error){window.location.href=url;}},[status]);const handleKeyDown=event=>{const maxIndex=results.length-1;switch(event.code){case\"ArrowUp\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index-1),scroll:true}));break;case\"ArrowDown\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index+1),scroll:true}));break;case\"Escape\":break;case\"Enter\":if(selectedResult){navigateTo(selectedResult.url);}break;default:event.stopPropagation();}};const showNoResults=results.length===0&&deferredQuery.length>1&&status!==\"loading\";const showDivider=Boolean((deferredQuery.length>0&&results.length>0||showNoResults)&&status!==\"loading\"&&props.inputOptions&&props.inputOptions.dividerType!==\"none\");const isItemContained=Boolean(props.resultOptions&&props.resultOptions.itemType===\"contained\");const spacing=isItemContained?theme.spacing:10;const listPaddingTop=showDivider&&isItemContained?spacing+theme.gapBetweenResults*2:0;useEffect(()=>{if(!selected.scroll)return;const element=selectedResultRow.current;if(!element)return;scrollIntoView(element,scrollView.current,{offsetTop:showDivider&&isItemContained?listPaddingTop:0,offsetBottom:isItemContained?spacing:0});// `showDivider` and `isItemContained` are not dependencies because\n// they will be the latest values when `selected` changes. And including\n// them will cause unnecessary scrolling into view.\n},[selected]);return /*#__PURE__*/_jsxs(LayoutContainer,{layoutType:layoutType,modalOptions:modalOptions,theme:theme,onKeyDown:handleKeyDown,onDismiss:onDismiss,children:[/*#__PURE__*/_jsxs(ModalContainer,{layoutType:layoutType,theme:theme,heightIsStatic:modalOptions.heightIsStatic,heightTransition:modalOptions.heightTransition,heightDeps:[results.length,showNoResults],children:[/*#__PURE__*/_jsx(Input,{autofocus:true,ref:input,onChange:setQuery,value:query,theme:theme,status:status,iconType:inputOptions.iconOptions.iconType,placeholder:inputOptions.placeholderOptions.placeholderText,clearButtonType:inputOptions?inputOptions.clearButtonType:undefined,clearButtonText:inputOptions.clearButtonText}),showDivider&&/*#__PURE__*/_jsx(Divider,{theme:theme,type:inputOptions.dividerType}),/*#__PURE__*/_jsx(ScrollView,{ref:scrollView,theme:theme,children:/*#__PURE__*/_jsxs(\"ul\",{\"aria-live\":\"polite\",style:{display:\"flex\",flexDirection:\"column\",width:`calc(100% - ${theme.scrollBarWidth}px)`,padding:0,paddingTop:listPaddingTop,paddingBottom:results.length&&isItemContained?spacing:0,gap:theme.gapBetweenResults,margin:0},children:[results.map((result,index)=>{const isSelected=index===selected.index;return /*#__PURE__*/_jsx(ResultRow,{ref:isSelected?selectedResultRow:null,index:index,result:result,prevMousePositionRef:prevMousePositionRef,selected:!isKeyboardNavigationDisabled&&isSelected,type:props.resultOptions.itemType,subtitleType:props.resultOptions.subtitleOptions.subtitleType,theme:theme,localeSlug:localeSlug,onMouseMove:handleResultRowMouseMove,onPointerDown:handleResultRowPointerDown,onNavigateTo:navigateTo},result.url);}),showNoResults&&/*#__PURE__*/_jsx(\"li\",{style:{paddingTop:verticalSpacing-listPaddingTop,paddingBottom:verticalSpacing,lineHeight:\"2em\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,height:\"Sidebar\"?\"100%\":\"auto\"},children:/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,textAlign:\"center\",lineHeight:`calc(${theme.inputFontSize} * 2)`,color:theme.subtitleColor,...theme.titleFont},children:\"No results\"})})]})})]}),/*#__PURE__*/_jsx(StatusMessage,{status:status,layoutType:layoutType,theme:theme})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"SearchIconType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchEntryType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchModal\":{\"type\":\"reactComponent\",\"name\":\"SearchModal\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"SearchTheme\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultTitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultSubtitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ResultRow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputDividerType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchLayoutType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultItemType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputClearButtonType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useEffect,useState}from\"react\";function getViewportSize(){if(typeof window===\"undefined\"){return{width:0,height:0};}return{width:window.innerWidth,height:window.innerHeight};}export function useViewportSizeState(getState){const[state,setState]=useState(()=>getState(getViewportSize()));useEffect(()=>{const handleWindowResize=()=>setState(getState(getViewportSize()));window.addEventListener(\"resize\",handleWindowResize);return()=>{window.removeEventListener(\"resize\",handleWindowResize);};},[]);return state;}\nexport const __FramerMetadata__ = {\"exports\":{\"useViewportSizeState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useViewportSizeState.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{createPortal}from\"react-dom\";import{useRef,useState,useEffect,forwardRef}from\"react\";import{AnimatePresence,motion}from\"framer-motion\";import{SearchIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{SearchModal,SearchResultItemType,SearchResultTitleType,SearchResultSubtitleType,SearchInputDividerType,SearchInputClearButtonType,SearchLayoutType,SearchIconType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{useViewportSizeState}from\"https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js\";import{titleCase,DEFAULT_FONT_FAMILY,isEmptyObject,animationKeyFromLayout,checkIfOverLimit}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";var EntryPointOptions;// SITE SEARCH\n// By Anthony and Hunter\n(function(EntryPointOptions){EntryPointOptions[\"icon\"]=\"Icon\";EntryPointOptions[\"input\"]=\"Input\";})(EntryPointOptions||(EntryPointOptions={}));function buildShadow(shadowProperty,fallback=\"none\"){if(!shadowProperty)return fallback;const{x,y,blur,color,spread}=shadowProperty;return`${x}px ${y}px ${blur}px ${spread}px ${color}`;}const Overlay=/*#__PURE__*/forwardRef(function Overlay(props,ref){const{layoutType,theme,onDismiss}=props;useEffect(()=>{const handleKeyDown=event=>{if(event.code===\"Escape\"){event.stopPropagation();onDismiss();}};const handlePointerDown=event=>{if(event.pointerType!==\"touch\")return;const isWithinSearchHeader=Boolean(event.target instanceof Element&&event.target.closest(\"[role=search]\"));if(isWithinSearchHeader)return;if(document.activeElement instanceof HTMLInputElement){document.activeElement.blur();}};// Event listener added to window so that pressing escape key to dimiss\n// can be invoked from anywhere on the page.\nwindow.addEventListener(\"keydown\",handleKeyDown);window.addEventListener(\"pointerdown\",handlePointerDown,{capture:true});// Disable page scrolling when overlay is shown.\ndocument.body.classList.add(bodyOverflowHidden);return()=>{window.removeEventListener(\"keydown\",handleKeyDown);window.removeEventListener(\"pointerdown\",handlePointerDown,{capture:true});document.body.classList.remove(bodyOverflowHidden);};},[]);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(\"div\",{ref:ref,className:\"__framer-search-modal-container\",role:\"presentation\",style:{...backdropStyles,zIndex:props.backdropOptions.zIndex,justifyContent:layoutType===SearchLayoutType.Sidebar?\"flex-start\":\"center\"},onClick:onDismiss,children:[/*#__PURE__*/_jsx(motion.div,{role:\"presentation\",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0,transition:{duration:0}},transition:theme.overlayTransition,style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"absolute\",touchAction:\"none\",backgroundColor:props.backdropOptions.backgroundColor}}),/*#__PURE__*/_jsx(SearchModal,{urlScope:props.urlScope,layoutType:layoutType,inputOptions:props.inputOptions,resultOptions:props.resultOptions,modalOptions:props.modalOptions,backdropOptions:props.backdropOptions,theme:props.theme,onDismiss:onDismiss})]}),document.body);});const backdropStyles={width:\"100%\",boxSizing:\"border-box\",willChange:\"transform\",position:\"fixed\",display:\"flex\",alignItems:\"flex-start\",top:0,left:0,right:0,bottom:0};const containerStyle={height:\"100%\",display:\"flex\",borderRadius:10,cursor:\"inherit\",overflow:\"hidden\"};const bodyOverflowHidden=\"__framer-overflow-hidden\";/**\n *\n * SEARCH\n * By Anthony and Hunter\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */const EntryPoint=withCSS(function EntryPoint(props){var _props_inputOptions_inputFont,_props_inputOptions,_props_resultOptions,_props_resultOptions_subtitleOptions,_props_inputOptions1;const overlay=useRef(null);const[isOpen,setIsOpen]=useState(false);const[isOverLimit,setIsOverLimit]=useState(false);const[isSafariTouchDevice,setIsSafariTouchDevice]=useState(false);const[isOnCanvas]=useState(()=>RenderTarget.current()===RenderTarget.canvas);useEffect(()=>{setIsOverLimit(checkIfOverLimit());setIsSafariTouchDevice(Browser.isSafari()&&Browser.isTouch());},[]);const baseInputFontSize=((_props_inputOptions=props.inputOptions)===null||_props_inputOptions===void 0?void 0:(_props_inputOptions_inputFont=_props_inputOptions.inputFont)===null||_props_inputOptions_inputFont===void 0?void 0:_props_inputOptions_inputFont.fontSize)?props.inputOptions.inputFont.fontSize:\"16px\";// The font size is set to a minimum of `16px` on Safari with touch screens\n// because otherwise Safari will zoom in slightly if the type size is smaller.\nconst inputFontSize=isSafariTouchDevice?`max(16px, ${baseInputFontSize})`:baseInputFontSize;const layoutType=useViewportSizeState(size=>{if(size.width<props.modalOptions.width+10){return SearchLayoutType.FixedTop;}// @ts-ignore \u2013 Fallback\nreturn props.modalOptions.layoutType||props.layoutType;});const theme={subtitleColor:props.resultOptions.subtitleOptions.subtitleColor,backgroundColor:props.modalOptions.backgroundColor,foregroundColor:props.resultOptions.titleColor,placeholderColor:props.inputOptions.placeholderOptions.placeholderColor,titleFont:((_props_resultOptions=props.resultOptions)===null||_props_resultOptions===void 0?void 0:_props_resultOptions.titleFont)&&!isEmptyObject(props.resultOptions.titleFont)?props.resultOptions.titleFont:{fontSize:14,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},subtitleFont:((_props_resultOptions_subtitleOptions=props.resultOptions.subtitleOptions)===null||_props_resultOptions_subtitleOptions===void 0?void 0:_props_resultOptions_subtitleOptions.subtitleFont)&&!isEmptyObject(props.resultOptions.subtitleOptions.subtitleFont)?props.resultOptions.subtitleOptions.subtitleFont:{fontSize:12,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},inputFont:((_props_inputOptions1=props.inputOptions)===null||_props_inputOptions1===void 0?void 0:_props_inputOptions1.inputFont)&&!isEmptyObject(props.inputOptions.inputFont)?props.inputOptions.inputFont:{fontSize:16,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},// Keep separate so we can more easily override\ninputFontSize:inputFontSize,width:props.modalOptions.width,offsetTop:props.modalOptions.top,borderRadius:props.modalOptions.borderRadius,shadow:buildShadow(props.modalOptions.shadow),entryIconColor:props.iconColor,entryIconSize:props.iconSize,entryIconImage:props.iconImage,inputIconSize:props.inputOptions.iconOptions.iconSize,inputIconColor:props.inputOptions.iconOptions.iconColor,inputIconImage:props.inputOptions.iconOptions.iconImage,gapBetweenStatusAndSearch:16,gapBetweenResults:1,scrollBarWidth:20,margin:10,spacing:8,zIndex:props.backdropOptions.zIndex,horizontalSpacing:20,overlayTransition:props.backdropOptions.transition};const handleClick=event=>{// Both need to keep `autofocus` working on the search input.\nevent.preventDefault();event.stopPropagation();if(isOverLimit)return;setIsOpen(true);};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,...props.style,pointerEvents:isOverLimit?\"none\":\"auto\",opacity:isOverLimit?.4:1},children:[/*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Search Icon\",style:{width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",background:\"none\",cursor:\"inherit\",color:\"inherit\",border:\"none\",outline:\"inherit\",padding:0},onClick:handleClick,children:props.iconType===SearchIconType.Custom&&theme.entryIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:theme.entryIconImage.src,width:theme.entryIconSize,height:theme.entryIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.entryIconColor,width:theme.entryIconSize,height:theme.entryIconSize})}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&!isOnCanvas&&/*#__PURE__*/_jsx(Overlay,{ref:overlay,layoutType:layoutType,urlScope:props.urlScope,inputOptions:props.inputOptions,resultOptions:props.resultOptions,backdropOptions:props.backdropOptions,modalOptions:props.modalOptions,theme:theme,onDismiss:()=>setIsOpen(false)})})]});},[// Prevent scrolling on iOS Safari when Input is focused.\n// From: https://gist.github.com/kiding/72721a0553fa93198ae2bb6eefaa3299\n`\n        @keyframes __framer-blink-input {\n            0% { opacity: 0; }\n            100% { opacity: 1; }\n        }\n\n        .__framer-search-modal-container input:focus {\n            animation: __framer-blink-input 0.01s;\n        }\n        `,// Allow styling of input placeholder\n`\n         .__framer-search-modal-container input::placeholder, \n         .__framer-search-modal-container input::-webkit-input-placeholder { \n            color: var(--framer-search-placeholder-color, #999999);\n            opacity: 1;\n        }\n        `,// Allow fallback to 100vh when dvh unit is not supported.\n`\n        .__framer-search-modal-container {\n            height: 100vh;\n            height: 100dvh;\n        }\n        .__framer-search-modal-container .__framer-max-height-80dvh {\n            max-height: 80vh;\n            max-height: 80dvh;\n        }\n        `,`\n        body.${bodyOverflowHidden} {\n            overflow: hidden;\n        }`,// Increase hit target\n`\n        button.__framer-search-clear-button {\n            position: relative;\n        }\n        button.__framer-search-clear-button::after {\n            content: \"\";\n            position: absolute;\n            top: -10px;\n            right: -10px;\n            bottom: -10px;\n            left: -10px;\n        }`]);export default EntryPoint;addPropertyControls(EntryPoint,{urlScope:{title:\"Scope\",// @ts-ignore - Internal\ntype:ControlType.PageScope},// entryType: {\n//     title: \"Type\",\n//     type: ControlType.Enum,\n//     options: Object.values(SearchEntryType),\n//     optionTitles: Object.values(SearchEntryType).map(titleCase),\n//     displaySegmentedControl: true,\n// },\niconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.iconType===SearchIconType.Custom},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===SearchIconType.Default},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24},inputOptions:{title:\"Input\",type:ControlType.Object,buttonTitle:\"Icon, Styles\",controls:{iconOptions:{title:\"Icon\",type:ControlType.Object,buttonTitle:\"Color, Size\",controls:{iconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.45)\",hidden:({iconType})=>{return iconType===SearchIconType.Custom;}},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:({iconType})=>iconType===SearchIconType.Default},iconSize:{title:\"Icon Size\",type:ControlType.Number,displayStepper:true,defaultValue:18,min:0,max:100}}},inputFont:{title:\"Font\",// @ts-ignore \u2013\u00A0Internal\ntype:ControlType.Font,displayFontSize:true},textColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},placeholderOptions:{title:\"Placeholder\",type:ControlType.Object,buttonTitle:\"Color, Text\",controls:{placeholderText:{title:\"Text\",type:ControlType.String,defaultValue:\"Search...\"},placeholderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.4)\"}}},dividerType:{title:\"Divider\",type:ControlType.Enum,options:Object.values(SearchInputDividerType),optionTitles:Object.keys(SearchInputDividerType).map(titleCase),defaultValue:SearchInputDividerType.FullWidth},clearButtonType:{title:\"Clear Type\",type:ControlType.Enum,options:Object.values(SearchInputClearButtonType),optionTitles:Object.keys(SearchInputClearButtonType).map(titleCase),defaultValue:SearchInputClearButtonType.Icon},clearButtonText:{title:\"Clear Text\",type:ControlType.String,defaultValue:\"Clear\",hidden:props=>props.clearButtonType!==SearchInputClearButtonType.Text}}},modalOptions:{title:\"Modal\",buttonTitle:\"Layout, Width\",type:ControlType.Object,controls:{layoutType:{title:\"Layout\",type:ControlType.Enum,options:Object.keys(SearchLayoutType),optionTitles:Object.values(SearchLayoutType).map(titleCase),defaultValue:SearchLayoutType.QuickMenu},width:{title:\"Width\",type:ControlType.Number,defaultValue:500,min:200,max:1e3,displayStepper:true,step:5,hidden:props=>props.layoutType===SearchLayoutType.FixedTop},top:{title:\"Top\",type:ControlType.Number,defaultValue:0,min:0,max:1e3,displayStepper:true,hidden:props=>props.layoutType!==SearchLayoutType.FixedTop},heightIsStatic:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Instant\",disabledTitle:\"Animate\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},heightTransition:{title:\"Type\",type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:800,damping:60},hidden:({heightIsStatic,layoutType})=>layoutType!==SearchLayoutType.QuickMenu||heightIsStatic},borderRadius:{title:\"Radius\",type:ControlType.Number,defaultValue:16,displayStepper:true,min:0,hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},shadow:{buttonTitle:\"Options\",type:ControlType.Object,defaultValue:{x:0,y:20,blur:40,spread:0,color:\"rgba(0,0,0,0.2)\"},controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.2)\"},x:{type:ControlType.Number,defaultValue:0},y:{type:ControlType.Number,defaultValue:20},blur:{type:ControlType.Number,defaultValue:40},spread:{type:ControlType.Number,defaultValue:0}}},backgroundColor:{title:\"Background\",type:ControlType.Color,defaultValue:\"#FFF\"},[animationKeyFromLayout(SearchLayoutType.QuickMenu)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu,optional:true,buttonTitle:\"Options\",controls:{opacity:{type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},scale:{type:ControlType.Number,defaultValue:.75,step:.1,min:0,max:2},// rotate: {\n//     type: ControlType.Number,\n//     defaultValue: 0,\n//     min: -360,\n//     max: 360,\n// },\nx:{type:ControlType.Number,defaultValue:0,min:-500,max:500},y:{type:ControlType.Number,defaultValue:0,min:-500,max:500},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.FixedTop)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.FixedTop,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},y:{type:ControlType.Number,defaultValue:0,min:-100,max:100},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.Sidebar)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.Sidebar,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},x:{type:ControlType.Number,defaultValue:0,min:-1e3,max:1e3},transition:{type:ControlType.Transition}}}}},resultOptions:{title:\"Results\",buttonTitle:\"Fonts, Style\",type:ControlType.Object,defaultValue:{},// description:\n//     \"Learn more about how to use Site Search [here](https://framer.com/learn/site-search)\",\ncontrols:{itemType:{title:\"Style\",type:ControlType.Enum,options:Object.values(SearchResultItemType),optionTitles:Object.keys(SearchResultItemType).map(titleCase),defaultValue:SearchResultItemType.FullWidth},titleFont:{title:\"Title\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:15},displayFontSize:true},titleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},titleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultTitleType),optionTitles:Object.keys(SearchResultTitleType).map(titleCase),defaultValue:SearchResultTitleType.H1,displaySegmentedControl:true},subtitleOptions:{type:ControlType.Object,title:\"Subtitle\",buttonTitle:\"Font, Content\",controls:{subtitleFont:{title:\"Font\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:13},displayFontSize:true},subtitleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.4)\"},subtitleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultSubtitleType),optionTitles:Object.keys(SearchResultSubtitleType).map(titleCase),defaultValue:SearchResultSubtitleType.Path}}}}},backdropOptions:{title:\"Backdrop\",type:ControlType.Object,buttonTitle:\"Color, Z Index\",controls:{backgroundColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.8)\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},transition:{type:ControlType.Transition}}}});EntryPoint.displayName=\"Search\";\nexport const __FramerMetadata__ = {\"exports\":{\"ResponsiveImage\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Shadow\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"EntryPoint\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"40\"}},\"EntryPointProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"WindowAnimation\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getPropertyControls,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import ThemeSwitcher from\"https://framerusercontent.com/modules/1PjmdWp1KUPGJ6MSXZSG/gpspD4sYk1dKrEHDcTYM/ThemeSwitch.js\";import Button from\"https://framerusercontent.com/modules/3iQDjfbW1oaef7YtmZmn/tmiVI0rAo5br3k7Z5QUE/LNCJ8JrMb.js\";import MenuHamburgerMenu from\"https://framerusercontent.com/modules/YCkPIPvjxczD08WBZpJY/8tQIfnwApnu4NTR3WoSd/sDquhqjHT.js\";import Logo from\"https://framerusercontent.com/modules/n8hJ6x9v9zpOs1SYAnaQ/PnoQQ0TtymPvTCNG5J4j/W4JrbG6G8.js\";import MenuMenu from\"https://framerusercontent.com/modules/tBtywotwmTXT9IkPTsy7/pKhf8lo7Itbxin6x1JMo/x6PfALCgy.js\";import MenuItem from\"https://framerusercontent.com/modules/49YprPtrqGIq96ZDySMJ/u9USk79Iosg6BpoxasEH/Z5aW2k3RB.js\";const LogoFonts=getFonts(Logo);const MenuMenuFonts=getFonts(MenuMenu);const ThemeSwitcherFonts=getFonts(ThemeSwitcher);const SearchFonts=getFonts(Search);const ButtonFonts=getFonts(Button);const MenuHamburgerMenuFonts=getFonts(MenuHamburgerMenu);const MenuItemFonts=getFonts(MenuItem);const MotionDivWithFX=withFX(motion.div);const LogoControls=getPropertyControls(Logo);const MenuMenuControls=getPropertyControls(MenuMenu);const cycleOrder=[\"BGu0Mgwf_\",\"kWA7tr2eA\",\"OEkGhi0ka\",\"GEMmITSAJ\",\"g7fLVO5ml\",\"qLlnLn20q\"];const serializationHash=\"framer-B9Sf8\";const variantClassNames={BGu0Mgwf_:\"framer-v-wkp83w\",g7fLVO5ml:\"framer-v-4gxnd7\",GEMmITSAJ:\"framer-v-1aczhvd\",kWA7tr2eA:\"framer-v-yhrlyd\",OEkGhi0ka:\"framer-v-6snq6t\",qLlnLn20q:\"framer-v-1069zb2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:.1,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};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 humanReadableEnumMap={\"Logo [Image + Text]\":\"XgBIHPUqi\",\"Logo [Image]\":\"k53kEg_LU\",\"Logo [Text]\":\"WcDnzt3zw\",Custom:\"sbTfL03X9\"};const humanReadableEnumMap1={Dark:\"Dv1wC8FMY\",Dynamic:\"lk7ooqA4_\",Light:\"ld4psBuuS\"};const humanReadableEnumMap2={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Desktop [Boxed Mini]\":\"GEMmITSAJ\",\"Desktop [Boxed]\":\"OEkGhi0ka\",\"Desktop [Default]\":\"BGu0Mgwf_\",\"Desktop [Full Width]\":\"kWA7tr2eA\",\"Mobile [Menu Opend]\":\"qLlnLn20q\",Mobile:\"g7fLVO5ml\"};const getProps=({alignMenu,bGBlur,bgBorder,buttonColor,buttonLink,buttonText,buttonTextColor,desktopBG,height,id,logoColor,logoVariant,mobileBG,newTab,showButton,showMenu,showSearch,showThemeSwitcher,textColor,width,...props})=>{return{...props,BeZsA273t:showMenu??props.BeZsA273t??true,Cof0RMUzO:textColor??props.Cof0RMUzO??\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",dbTkB554q:buttonLink??props.dbTkB554q,EdKYuwXXP:mobileBG??props.EdKYuwXXP??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",eGOhp_OqC:buttonText??props.eGOhp_OqC??\"Purchase\",ewfFJItNT:humanReadableEnumMap[logoVariant]??logoVariant??props.ewfFJItNT??\"XgBIHPUqi\",FFcnuU4Ek:desktopBG??props.FFcnuU4Ek??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95))\",fjP7WXjeu:showThemeSwitcher??props.fjP7WXjeu??true,ixSSNMsgd:humanReadableEnumMap1[logoColor]??logoColor??props.ixSSNMsgd??\"lk7ooqA4_\",KDPaGeBIL:buttonTextColor??props.KDPaGeBIL??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",oqjnlG1pR:showSearch??props.oqjnlG1pR??true,ORnOR2pUN:bgBorder??props.ORnOR2pUN??{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},sGHTFWZo5:showButton??props.sGHTFWZo5??true,t4qtipNl7:bGBlur??props.t4qtipNl7??10,UTTJR9foI:newTab??props.UTTJR9foI,v06jigF6i:humanReadableEnumMap2[alignMenu]??alignMenu??props.v06jigF6i??\"flex-start\",variant:humanReadableVariantMap[props.variant]??props.variant??\"BGu0Mgwf_\",zzroHIlLa:buttonColor??props.zzroHIlLa??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"};};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,ewfFJItNT,ixSSNMsgd,Cof0RMUzO,ORnOR2pUN,fjP7WXjeu,oqjnlG1pR,BeZsA273t,v06jigF6i,sGHTFWZo5,eGOhp_OqC,zzroHIlLa,KDPaGeBIL,UTTJR9foI,dbTkB554q,FFcnuU4Ek,EdKYuwXXP,t4qtipNl7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BGu0Mgwf_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const f2qu17KRbtv5rva=activeVariantCallback(async(...args)=>{setVariant(\"g7fLVO5ml\");});const E6NV4Gf2fquv5vp=activeVariantCallback(async(...args)=>{setVariant(\"qLlnLn20q\");});const E6NV4Gf2ftv5rva=activeVariantCallback(async(...args)=>{setVariant(\"g7fLVO5ml\");});const i6eMpMhzetxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const i6eMpMhze1skfcin=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"g7fLVO5ml\"),100);});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=value=>{if([\"g7fLVO5ml\",\"qLlnLn20q\"].includes(baseVariant))return false;return value;};const isDisplayed1=()=>{if(baseVariant===\"OEkGhi0ka\")return true;return false;};const isDisplayed2=value=>{if(baseVariant===\"g7fLVO5ml\")return value;if(baseVariant===\"qLlnLn20q\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"qLlnLn20q\")return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed4=()=>{if(baseVariant===\"qLlnLn20q\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({g7fLVO5ml:{value:transition2},qLlnLn20q:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wkp83w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop [Default]\",layoutDependency:layoutDependency,layoutId:\"BGu0Mgwf_\",ref:refBinding,style:{\"--border-bottom-width\":(ORnOR2pUN.borderBottomWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-color\":ORnOR2pUN.borderColor,\"--border-left-width\":(ORnOR2pUN.borderLeftWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-right-width\":(ORnOR2pUN.borderRightWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-style\":ORnOR2pUN.borderStyle,\"--border-top-width\":(ORnOR2pUN.borderTopWidth??ORnOR2pUN.borderWidth)+\"px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,...style},variants:{g7fLVO5ml:{backgroundColor:EdKYuwXXP},GEMmITSAJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},OEkGhi0ka:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},qLlnLn20q:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:EdKYuwXXP}},...addPropertyOverrides({g7fLVO5ml:{\"data-framer-name\":\"Mobile\"},GEMmITSAJ:{\"data-framer-name\":\"Desktop [Boxed Mini]\"},kWA7tr2eA:{\"data-framer-name\":\"Desktop [Full Width]\"},OEkGhi0ka:{\"data-framer-name\":\"Desktop [Boxed]\"},qLlnLn20q:{\"data-framer-name\":\"Mobile [Menu Opend]\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k0mvlx\",\"data-framer-name\":\"Main Area\",layoutDependency:layoutDependency,layoutId:\"xZNePz6BP\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},variants:{g7fLVO5ml:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},GEMmITSAJ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopLeftRadius:46,borderTopRightRadius:46,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.03)\"},OEkGhi0ka:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.03)\"},qLlnLn20q:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({GEMmITSAJ:{\"data-border\":true},OEkGhi0ka:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined},{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined},{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||60)-20-50)/2)+7,...addPropertyOverrides({g7fLVO5ml:{y:(componentViewport?.y||0)+0+0+12},GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+22},OEkGhi0ka:{height:32,y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+24},qLlnLn20q:{y:(componentViewport?.y||0)+0+0+12}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fa3x8m-container\",layoutDependency:layoutDependency,layoutId:\"L3AW7zokX-container\",nodeId:\"L3AW7zokX\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"L3AW7zokX\",layoutId:\"L3AW7zokX\",qj6tn2Ux3:resolvedLinks[0],style:{height:\"100%\"},variant:ewfFJItNT,width:\"100%\",wJOYtHzul:false,yBg5svSnw:ixSSNMsgd,ZzpJSRgMV:\"pixkit\",...addPropertyOverrides({g7fLVO5ml:{qj6tn2Ux3:resolvedLinks[4]},GEMmITSAJ:{qj6tn2Ux3:resolvedLinks[3],variant:\"k53kEg_LU\"},kWA7tr2eA:{qj6tn2Ux3:resolvedLinks[1]},OEkGhi0ka:{qj6tn2Ux3:resolvedLinks[2]},qLlnLn20q:{f2qu17KRb:f2qu17KRbtv5rva,qj6tn2Ux3:resolvedLinks[5]}},baseVariant,gestureVariant)})})})}),isDisplayed(BeZsA273t)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(10+((componentViewport?.height||60)-20-50)/2)+10,...addPropertyOverrides({GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+25},OEkGhi0ka:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+25}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6zkne-container\",\"data-framer-name\":\"Menu [Desktop]\",layoutDependency:layoutDependency,layoutId:\"TPCEs2Im5-container\",name:\"Menu [Desktop]\",nodeId:\"TPCEs2Im5\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuMenu,{height:\"100%\",id:\"TPCEs2Im5\",ILT7xcLmk:FFcnuU4Ek,layoutId:\"TPCEs2Im5\",name:\"Menu [Desktop]\",odLrH8wIa:Cof0RMUzO,style:{height:\"100%\",width:\"100%\"},width:\"100%\",XWxsdOvDJ:t4qtipNl7,ZmT46usVX:v06jigF6i,...addPropertyOverrides({GEMmITSAJ:{style:{height:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gael6y\",layoutDependency:layoutDependency,layoutId:\"gzzExDpTx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sl0xsi\",layoutDependency:layoutDependency,layoutId:\"aqRkbnsW9\",children:[fjP7WXjeu&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ha7gt9-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"btJ50WeRy-container\",nodeId:\"btJ50WeRy\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(ThemeSwitcher,{color:Cof0RMUzO,defaultTheme:\"Dark\",height:\"100%\",id:\"btJ50WeRy\",layoutId:\"btJ50WeRy\",size:30,strokeWidth:2,style:{height:\"100%\"},width:\"100%\"})})}),oqjnlG1pR&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dmyapf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uhMK_3Vhi-container\",nodeId:\"uhMK_3Vhi\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(9, 9, 11, 0.4)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:Cof0RMUzO,iconSize:26,iconType:\"default\",id:\"uhMK_3Vhi\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"uhMK_3Vhi\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:false,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:600},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},width:\"100%\"})})}),isDisplayed(sGHTFWZo5)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(10+((componentViewport?.height||60)-20-50)/2)+0+0+0,...addPropertyOverrides({GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+15+0+0},OEkGhi0ka:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+15+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bncuxq-container\",layoutDependency:layoutDependency,layoutId:\"vCdf7a16A-container\",nodeId:\"vCdf7a16A\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:UTTJR9foI,G77f5Yx_v:eGOhp_OqC,height:\"100%\",HFfTjmBlq:KDPaGeBIL,id:\"vCdf7a16A\",layoutId:\"vCdf7a16A\",n9WP3fBIv:true,oV7zrnzuy:zzroHIlLa,SZQpZ3lk2:10,U1Kbkgydv:dbTkB554q,variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({GEMmITSAJ:{SZQpZ3lk2:30}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({OEkGhi0ka:{height:50,y:(componentViewport?.y||0)+(20+((componentViewport?.height||90)-20-80)/2)+15+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f1s3r4-container\",layoutDependency:layoutDependency,layoutId:\"FPXO7em8Q-container\",nodeId:\"FPXO7em8Q\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:true,G77f5Yx_v:\"LOGIN\",height:\"100%\",HFfTjmBlq:KDPaGeBIL,id:\"FPXO7em8Q\",layoutId:\"FPXO7em8Q\",n9WP3fBIv:true,oV7zrnzuy:zzroHIlLa,SZQpZ3lk2:10,U1Kbkgydv:\"https://home.marketchatter.io/\",variant:\"aBUlg9IvM\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})]}),isDisplayed2(BeZsA273t)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({g7fLVO5ml:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6+0},qLlnLn20q:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tiny8t-container\",layoutDependency:layoutDependency,layoutId:\"cUX92OO8H-container\",nodeId:\"cUX92OO8H\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuHamburgerMenu,{E6NV4Gf2f:E6NV4Gf2fquv5vp,height:\"100%\",id:\"cUX92OO8H\",layoutId:\"cUX92OO8H\",lYvpkC7IW:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",style:{height:\"100%\",width:\"100%\"},variant:\"jes3YGVf7\",width:\"100%\",...addPropertyOverrides({g7fLVO5ml:{lYvpkC7IW:Cof0RMUzO},qLlnLn20q:{E6NV4Gf2f:E6NV4Gf2ftv5rva,lYvpkC7IW:Cof0RMUzO,variant:\"EiPw8AZS4\"}},baseVariant,gestureVariant)})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t87v2a\",\"data-framer-name\":\"Mobile Dropdown\",layoutDependency:layoutDependency,layoutId:\"Qo0kpX5ez\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined},{href:{webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9o2zij-container\",layoutDependency:layoutDependency,layoutId:\"IMalsj8cG-container\",nodeId:\"IMalsj8cG\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"IMalsj8cG\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Home\",layoutId:\"IMalsj8cG\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks1[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Yi3Lvqs1X\",webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined},{href:{hash:\":Yi3Lvqs1X\",webPageId:\"FTkX6qPhr\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+46}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13dzqz8-container\",layoutDependency:layoutDependency,layoutId:\"OA8R9WcML-container\",nodeId:\"OA8R9WcML\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"OA8R9WcML\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Reviews\",layoutId:\"OA8R9WcML\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks2[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FWy99tzOg\"},implicitPathVariables:undefined},{href:{webPageId:\"FWy99tzOg\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vvnvgl-container\",layoutDependency:layoutDependency,layoutId:\"ftS9D8V46-container\",nodeId:\"ftS9D8V46\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"ftS9D8V46\",kf3NktHXk:\"Badge\",ku0K5iab7:\"About Us\",layoutId:\"ftS9D8V46\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks3[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fPFCSKcR5\"},implicitPathVariables:undefined},{href:{webPageId:\"fPFCSKcR5\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+138}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1atnw7q-container\",layoutDependency:layoutDependency,layoutId:\"WbSbcfvRZ-container\",nodeId:\"WbSbcfvRZ\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"WbSbcfvRZ\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Pricing\",layoutId:\"WbSbcfvRZ\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks4[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u7677l\",layoutDependency:layoutDependency,layoutId:\"BRgz_1V_F\",children:[sGHTFWZo5&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bRMNjt4IY\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+276+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19y5fjk-container\",layoutDependency:layoutDependency,layoutId:\"WV_KMD5tj-container\",nodeId:\"WV_KMD5tj\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:UTTJR9foI,G77f5Yx_v:eGOhp_OqC,height:\"100%\",HFfTjmBlq:KDPaGeBIL,id:\"WV_KMD5tj\",layoutId:\"WV_KMD5tj\",n9WP3fBIv:true,oV7zrnzuy:zzroHIlLa,SZQpZ3lk2:10,U1Kbkgydv:dbTkB554q,variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({qLlnLn20q:{ey7w8muFX:false,G77f5Yx_v:\"APPLY NOW\",nSQvgmbyz:undefined,style:{width:\"100%\"},U1Kbkgydv:resolvedLinks5[0]}},baseVariant,gestureVariant)})})})}),sGHTFWZo5&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bRMNjt4IY\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+276+10+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-187l3lj-container\",layoutDependency:layoutDependency,layoutId:\"geceYFYWM-container\",nodeId:\"geceYFYWM\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"TAKE THE SURVEY\",height:\"100%\",HFfTjmBlq:KDPaGeBIL,id:\"geceYFYWM\",layoutId:\"geceYFYWM\",n9WP3fBIv:true,oV7zrnzuy:zzroHIlLa,style:{width:\"100%\"},SZQpZ3lk2:10,U1Kbkgydv:resolvedLinks6[0],variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({qLlnLn20q:{G77f5Yx_v:\"LOGIN\",U1Kbkgydv:\"https://home.marketchatter.io/\",variant:\"aBUlg9IvM\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"REGRA7hoM\"},implicitPathVariables:undefined},{href:{webPageId:\"REGRA7hoM\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+184}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1447zzz-container\",layoutDependency:layoutDependency,layoutId:\"SxTzrMv5X-container\",nodeId:\"SxTzrMv5X\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"SxTzrMv5X\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Alpha M3+ Mentorship\",layoutId:\"SxTzrMv5X\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks7[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+230}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1wl8luy-container\",id:`${layoutId}-1wl8luy`,layoutDependency:layoutDependency,layoutId:\"tahTfndMS-container\",nodeId:\"tahTfndMS\",ref:ref1,rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:[/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i6eMpMhze:i6eMpMhzetxyyif({overlay}),i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"tahTfndMS\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Free Trading Lessons\",layoutId:\"tahTfndMS\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:overlay.visible?\"LQXjyoW02\":\"HhwQ1hV0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1wl8luy`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-fhwlzz\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"fnVjz6_Ea\",ref:ref2,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.3010936508871964px 0.18065619053231788px -1.5px rgba(0, 0, 0, 0.04), 0px 1.1442666516217286px 0.6865599909730372px -3px rgba(0, 0, 0, 0.04), 0px 5px 3.0000000000000004px -4.5px rgba(0, 0, 0, 0), 0px 0.6021873017743928px 1.5656869846134214px -1px rgba(0, 0, 0, 0.06), 0px 2.288533303243457px 5.950186588432988px -2px rgba(0, 0, 0, 0.06), 0px 10px 26px -3px rgba(0, 0, 0, 0.04)\",WebkitBackdropFilter:\"blur(5px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8i26xp\",layoutDependency:layoutDependency,layoutId:\"g0Z28G7wD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uklpku\",layoutDependency:layoutDependency,layoutId:\"s2qzTrKyi\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3groyt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AF_5vhIzw-container\",nodeId:\"AF_5vhIzw\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"AF_5vhIzw\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Layouts\",layoutId:\"AF_5vhIzw\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{a3Cfhx3Kw:\"starting-a-career-in-web-design\"},unresolvedPathSlugs:{a3Cfhx3Kw:{collectionId:\"ewhHuyXZI\",collectionItemId:\"IGnj5HHLH\"}},webPageId:\"aWjFgBj9c\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-547jyw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hgoyQ2KmA-container\",nodeId:\"hgoyQ2KmA\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i6eMpMhze:i6eMpMhze1skfcin,i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"hgoyQ2KmA\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Post Page\",layoutId:\"hgoyQ2KmA\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks8[0]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pTsSZXomk\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1db5xw7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"AOnbYTfvM-container\",nodeId:\"AOnbYTfvM\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i6eMpMhze:i6eMpMhze1skfcin,i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"AOnbYTfvM\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Blog (Stack)\",layoutId:\"AOnbYTfvM\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks9[0]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zTCuAWAUo\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7gdpxm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"b3P0POC_x-container\",nodeId:\"b3P0POC_x\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i6eMpMhze:i6eMpMhze1skfcin,i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"b3P0POC_x\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Blog (2 Columns)\",layoutId:\"b3P0POC_x\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks10[0]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F_5otM6ZU\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11gcyez-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"STJo6K1_K-container\",nodeId:\"STJo6K1_K\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i6eMpMhze:i6eMpMhze1skfcin,i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"STJo6K1_K\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Blog (3 Columns)\",layoutId:\"STJo6K1_K\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks11[0]})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k4rdox\",layoutDependency:layoutDependency,layoutId:\"KzOCTLHKK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-61ex5u-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MlMKP808M-container\",nodeId:\"MlMKP808M\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"MlMKP808M\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Trading Basics\",layoutId:\"MlMKP808M\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lxtolo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VhdxTOqgG-container\",nodeId:\"VhdxTOqgG\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"VhdxTOqgG\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Waiting For The Market\",layoutId:\"VhdxTOqgG\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jpw5kp-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zRhSi4rzN-container\",nodeId:\"zRhSi4rzN\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"zRhSi4rzN\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Confluences\",layoutId:\"zRhSi4rzN\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R9zDAbwff\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qqap02-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"B5_rNW3km-container\",nodeId:\"B5_rNW3km\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"B5_rNW3km\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Morning Prep Process\",layoutId:\"B5_rNW3km\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",...addPropertyOverrides({qLlnLn20q:{kf3NktHXk:\"New\",ku0K5iab7:\"Trade Planning\",qfg9TUc_S:true,ZpWw94nXT:resolvedLinks12[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A4NNwe5zb\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hxzqkt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FfaDAEJ9h-container\",nodeId:\"FfaDAEJ9h\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"FfaDAEJ9h\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Account Structure\",layoutId:\"FfaDAEJ9h\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",...addPropertyOverrides({qLlnLn20q:{kf3NktHXk:\"New\",qfg9TUc_S:true,ZpWw94nXT:resolvedLinks13[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aUXVZ1CxS\"},implicitPathVariables:undefined},{href:{webPageId:\"oTXfu56eJ\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wcsj3i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"umVErLjKI-container\",nodeId:\"umVErLjKI\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"umVErLjKI\",kf3NktHXk:\"New\",ku0K5iab7:\"Futures Trading Guide\",layoutId:\"umVErLjKI\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks14[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aidzpu\",layoutDependency:layoutDependency,layoutId:\"IWdnXq8bK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rz4zqi-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rL6S6kW0I-container\",nodeId:\"rL6S6kW0I\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"rL6S6kW0I\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Technical Skills\",layoutId:\"rL6S6kW0I\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DWnxacTIi\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b26dxt-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wGMO30ZcM-container\",nodeId:\"wGMO30ZcM\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"wGMO30ZcM\",kf3NktHXk:\"Badge\",ku0K5iab7:\"HTF Zoning\",layoutId:\"wGMO30ZcM\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",...addPropertyOverrides({qLlnLn20q:{kf3NktHXk:\"New\",qfg9TUc_S:true,ZpWw94nXT:resolvedLinks15[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NNvxa4yHV\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-npj6ts-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"it6rq76nC-container\",nodeId:\"it6rq76nC\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"it6rq76nC\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Options Risk Analysis\",layoutId:\"it6rq76nC\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",...addPropertyOverrides({qLlnLn20q:{kf3NktHXk:\"New\",qfg9TUc_S:true,ZpWw94nXT:resolvedLinks16[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mR1BF78gh\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"182px\",...addPropertyOverrides({qLlnLn20q:{width:\"197px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y54xrj-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"prAl28aTO-container\",nodeId:\"prAl28aTO\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"prAl28aTO\",kf3NktHXk:\"New\",ku0K5iab7:\"Price Action\",layoutId:\"prAl28aTO\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\",...addPropertyOverrides({qLlnLn20q:{ku0K5iab7:\"Supply & Demand Concepts\",style:{height:\"100%\",width:\"100%\"},ZpWw94nXT:resolvedLinks17[0]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"182px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3pg09b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fz9KOl3S_-container\",nodeId:\"fz9KOl3S_\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"fz9KOl3S_\",kf3NktHXk:\"New\",ku0K5iab7:\"Trading Like A Pro\",layoutId:\"fz9KOl3S_\",qfg9TUc_S:true,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1azpz9p\",layoutDependency:layoutDependency,layoutId:\"EDOt05Bzq\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11xo5ms-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PA7pu4ebX-container\",nodeId:\"PA7pu4ebX\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"PA7pu4ebX\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Options Trading\",layoutId:\"PA7pu4ebX\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"kc88LMeYu\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",width:\"100%\",ycFa86gVJ:\"center\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hgasr6-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"UlnawpThC-container\",nodeId:\"UlnawpThC\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"UlnawpThC\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Trading Options Pt 1\",layoutId:\"UlnawpThC\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xaqgay-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"sAYUE6DN9-container\",nodeId:\"sAYUE6DN9\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"sAYUE6DN9\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Trading Options Pt 2\",layoutId:\"sAYUE6DN9\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tz0vqf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"u6tD83IF5-container\",nodeId:\"u6tD83IF5\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"u6tD83IF5\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Options Risk Analysis\",layoutId:\"u6tD83IF5\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"270px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1clrld0-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"geOGPZDdi-container\",nodeId:\"geOGPZDdi\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.1)\",id:\"geOGPZDdi\",kf3NktHXk:\"Badge\",ku0K5iab7:\"Options Planning\",layoutId:\"geOGPZDdi\",qfg9TUc_S:false,style:{width:\"100%\"},stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",width:\"100%\",ycFa86gVJ:\"flex-start\"})})})]})]})]})]})})})})})]})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B9Sf8.framer-ltaqx7, .framer-B9Sf8 .framer-ltaqx7 { display: block; }\",\".framer-B9Sf8.framer-wkp83w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 40px 10px 40px; position: relative; width: 1200px; }\",\".framer-B9Sf8 .framer-k0mvlx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-B9Sf8 .framer-1fa3x8m-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-B9Sf8 .framer-6zkne-container { flex: 1 0 0px; height: 30px; position: relative; width: 1px; z-index: 1; }\",\".framer-B9Sf8 .framer-1gael6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B9Sf8 .framer-sl0xsi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-B9Sf8 .framer-ha7gt9-container { flex: none; height: 30px; position: relative; width: auto; }\",\".framer-B9Sf8 .framer-dmyapf-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-B9Sf8 .framer-bncuxq-container, .framer-B9Sf8 .framer-1f1s3r4-container, .framer-B9Sf8 .framer-19y5fjk-container, .framer-B9Sf8 .framer-61ex5u-container, .framer-B9Sf8 .framer-1rz4zqi-container, .framer-B9Sf8 .framer-11xo5ms-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-B9Sf8 .framer-tiny8t-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-B9Sf8 .framer-1t87v2a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 1px; }\",\".framer-B9Sf8 .framer-9o2zij-container, .framer-B9Sf8 .framer-13dzqz8-container, .framer-B9Sf8 .framer-1vvnvgl-container, .framer-B9Sf8 .framer-1atnw7q-container { flex: none; height: 36px; position: relative; width: 100%; }\",\".framer-B9Sf8 .framer-u7677l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-B9Sf8 .framer-187l3lj-container, .framer-B9Sf8 .framer-3groyt-container, .framer-B9Sf8 .framer-547jyw-container, .framer-B9Sf8 .framer-1db5xw7-container, .framer-B9Sf8 .framer-7gdpxm-container, .framer-B9Sf8 .framer-11gcyez-container, .framer-B9Sf8 .framer-1lxtolo-container, .framer-B9Sf8 .framer-1jpw5kp-container, .framer-B9Sf8 .framer-qqap02-container, .framer-B9Sf8 .framer-hxzqkt-container, .framer-B9Sf8 .framer-wcsj3i-container, .framer-B9Sf8 .framer-1b26dxt-container, .framer-B9Sf8 .framer-npj6ts-container, .framer-B9Sf8 .framer-hgasr6-container, .framer-B9Sf8 .framer-xaqgay-container, .framer-B9Sf8 .framer-tz0vqf-container, .framer-B9Sf8 .framer-1clrld0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-B9Sf8 .framer-1447zzz-container, .framer-B9Sf8 .framer-1wl8luy-container { cursor: pointer; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-B9Sf8 .framer-fhwlzz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-B9Sf8 .framer-8i26xp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 300px; }\",\".framer-B9Sf8 .framer-uklpku { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-B9Sf8 .framer-k4rdox, .framer-B9Sf8 .framer-1aidzpu, .framer-B9Sf8 .framer-1azpz9p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-B9Sf8 .framer-y54xrj-container, .framer-B9Sf8 .framer-3pg09b-container { flex: none; height: auto; position: relative; width: 182px; }\",\".framer-B9Sf8.framer-v-yhrlyd .framer-k0mvlx { max-width: unset; }\",\".framer-B9Sf8.framer-v-6snq6t.framer-wkp83w { padding: 20px 15px 0px 15px; }\",\".framer-B9Sf8.framer-v-6snq6t .framer-k0mvlx { padding: 15px 20px 15px 20px; z-index: 10; }\",\".framer-B9Sf8.framer-v-6snq6t .framer-1fa3x8m-container { height: 32px; }\",\".framer-B9Sf8.framer-v-1aczhvd.framer-wkp83w { padding: 20px 15px 0px 15px; width: min-content; }\",\".framer-B9Sf8.framer-v-1aczhvd .framer-k0mvlx { flex: none; max-width: unset; padding: 15px 15px 15px 25px; width: min-content; z-index: 10; }\",\".framer-B9Sf8.framer-v-1aczhvd .framer-6zkne-container { flex: none; width: auto; }\",\".framer-B9Sf8.framer-v-4gxnd7.framer-wkp83w { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-B9Sf8.framer-v-4gxnd7 .framer-k0mvlx { flex: none; height: 60px; padding: 15px 10px 15px 15px; width: 100%; z-index: 1; }\",\".framer-B9Sf8.framer-v-4gxnd7 .framer-1gael6y { gap: 0px; justify-content: flex-end; }\",\".framer-B9Sf8.framer-v-4gxnd7 .framer-sl0xsi { order: 0; padding: 0px 10px 0px 15px; }\",\".framer-B9Sf8.framer-v-4gxnd7 .framer-tiny8t-container, .framer-B9Sf8.framer-v-1069zb2 .framer-13dzqz8-container, .framer-B9Sf8.framer-v-1069zb2 .framer-qqap02-container, .framer-B9Sf8.framer-v-1069zb2 .framer-1b26dxt-container { order: 1; }\",\".framer-B9Sf8.framer-v-1069zb2.framer-wkp83w { flex-direction: column; gap: 0px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; padding: 0px; width: 390px; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-k0mvlx { flex: none; height: 60px; padding: 15px 10px 15px 15px; width: 100%; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1fa3x8m-container, .framer-B9Sf8.framer-v-1069zb2 .framer-9o2zij-container, .framer-B9Sf8.framer-v-1069zb2 .framer-61ex5u-container, .framer-B9Sf8.framer-v-1069zb2 .framer-1rz4zqi-container { order: 0; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1gael6y { gap: 10px; order: 2; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1t87v2a { flex: none; width: 100%; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1vvnvgl-container, .framer-B9Sf8.framer-v-1069zb2 .framer-hxzqkt-container, .framer-B9Sf8.framer-v-1069zb2 .framer-npj6ts-container { order: 2; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1atnw7q-container { order: 3; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-u7677l, .framer-B9Sf8.framer-v-1069zb2 .framer-1aidzpu { order: 6; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-19y5fjk-container { width: 100%; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1447zzz-container { order: 4; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1wl8luy-container, .framer-B9Sf8.framer-v-1069zb2 .framer-wcsj3i-container { order: 5; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-y54xrj-container { height: 36px; order: 3; width: 197px; }\",\".framer-B9Sf8.framer-v-1069zb2 .framer-1azpz9p { min-height: 171px; order: 5; }\",'.framer-B9Sf8[data-border=\"true\"]::after, .framer-B9Sf8 [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 60\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kWA7tr2eA\":{\"layout\":[\"fixed\",\"auto\"]},\"OEkGhi0ka\":{\"layout\":[\"fixed\",\"auto\"]},\"GEMmITSAJ\":{\"layout\":[\"auto\",\"auto\"]},\"g7fLVO5ml\":{\"layout\":[\"fixed\",\"auto\"]},\"qLlnLn20q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]}}}\n * @framerVariables {\"ewfFJItNT\":\"logoVariant\",\"ixSSNMsgd\":\"logoColor\",\"Cof0RMUzO\":\"textColor\",\"ORnOR2pUN\":\"bgBorder\",\"fjP7WXjeu\":\"showThemeSwitcher\",\"oqjnlG1pR\":\"showSearch\",\"BeZsA273t\":\"showMenu\",\"v06jigF6i\":\"alignMenu\",\"sGHTFWZo5\":\"showButton\",\"eGOhp_OqC\":\"buttonText\",\"zzroHIlLa\":\"buttonColor\",\"KDPaGeBIL\":\"buttonTextColor\",\"UTTJR9foI\":\"newTab\",\"dbTkB554q\":\"buttonLink\",\"FFcnuU4Ek\":\"desktopBG\",\"EdKYuwXXP\":\"mobileBG\",\"t4qtipNl7\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerR59UUiNVK=withCSS(Component,css,\"framer-B9Sf8\");export default FramerR59UUiNVK;FramerR59UUiNVK.displayName=\"Header\";FramerR59UUiNVK.defaultProps={height:60,width:1200};addPropertyControls(FramerR59UUiNVK,{variant:{options:[\"BGu0Mgwf_\",\"kWA7tr2eA\",\"OEkGhi0ka\",\"GEMmITSAJ\",\"g7fLVO5ml\",\"qLlnLn20q\"],optionTitles:[\"Desktop [Default]\",\"Desktop [Full Width]\",\"Desktop [Boxed]\",\"Desktop [Boxed Mini]\",\"Mobile\",\"Mobile [Menu Opend]\"],title:\"Variant\",type:ControlType.Enum},ewfFJItNT:LogoControls?.[\"variant\"]&&{...LogoControls[\"variant\"],defaultValue:\"XgBIHPUqi\",description:undefined,hidden:undefined,title:\"Logo Variant\"},ixSSNMsgd:LogoControls?.[\"yBg5svSnw\"]&&{...LogoControls[\"yBg5svSnw\"],defaultValue:\"lk7ooqA4_\",description:undefined,hidden:undefined,title:\"Logo Color\"},Cof0RMUzO:{defaultValue:'var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)) /* {\"name\":\"Gray 600 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},ORnOR2pUN:{defaultValue:{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},title:\"Bg Border\",type:ControlType.Border},fjP7WXjeu:{defaultValue:true,title:\"Show Theme Switcher\",type:ControlType.Boolean},oqjnlG1pR:{defaultValue:true,title:\"Show Search\",type:ControlType.Boolean},BeZsA273t:{defaultValue:true,title:\"Show Menu\",type:ControlType.Boolean},v06jigF6i:MenuMenuControls?.[\"ZmT46usVX\"]&&{...MenuMenuControls[\"ZmT46usVX\"],defaultValue:\"flex-start\",description:undefined,hidden:undefined,title:\"Align Menu\"},sGHTFWZo5:{defaultValue:true,title:\"Show Button\",type:ControlType.Boolean},eGOhp_OqC:{defaultValue:\"Purchase\",displayTextArea:false,placeholder:\"\",title:\"Button Text\",type:ControlType.String},zzroHIlLa:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Button Color\",type:ControlType.Color},KDPaGeBIL:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White/Gray 950 [Dynamic]\"} */',title:\"Button Text Color\",type:ControlType.Color},UTTJR9foI:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},dbTkB554q:{title:\"Button Link\",type:ControlType.Link},FFcnuU4Ek:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95)) /* {\"name\":\"Header Background [Dynamic]\"} */',title:\"Desktop BG\",type:ControlType.Color},EdKYuwXXP:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9)) /* {\"name\":\"Header Background\"} */',title:\"Mobile BG\",type:ControlType.Color},t4qtipNl7:{defaultValue:10,step:1,title:\"BG Blur\",type:ControlType.Number}});addFonts(FramerR59UUiNVK,[{explicitInter:true,fonts:[]},...LogoFonts,...MenuMenuFonts,...ThemeSwitcherFonts,...SearchFonts,...ButtonFonts,...MenuHamburgerMenuFonts,...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR59UUiNVK\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ewfFJItNT\\\":\\\"logoVariant\\\",\\\"ixSSNMsgd\\\":\\\"logoColor\\\",\\\"Cof0RMUzO\\\":\\\"textColor\\\",\\\"ORnOR2pUN\\\":\\\"bgBorder\\\",\\\"fjP7WXjeu\\\":\\\"showThemeSwitcher\\\",\\\"oqjnlG1pR\\\":\\\"showSearch\\\",\\\"BeZsA273t\\\":\\\"showMenu\\\",\\\"v06jigF6i\\\":\\\"alignMenu\\\",\\\"sGHTFWZo5\\\":\\\"showButton\\\",\\\"eGOhp_OqC\\\":\\\"buttonText\\\",\\\"zzroHIlLa\\\":\\\"buttonColor\\\",\\\"KDPaGeBIL\\\":\\\"buttonTextColor\\\",\\\"UTTJR9foI\\\":\\\"newTab\\\",\\\"dbTkB554q\\\":\\\"buttonLink\\\",\\\"FFcnuU4Ek\\\":\\\"desktopBG\\\",\\\"EdKYuwXXP\\\":\\\"mobileBG\\\",\\\"t4qtipNl7\\\":\\\"bGBlur\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kWA7tr2eA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OEkGhi0ka\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GEMmITSAJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g7fLVO5ml\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qLlnLn20q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./R59UUiNVK.map"],
  "mappings": "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",
  "names": ["_define_property", "obj", "key", "value", "extractDarkModeCSSVariables", "css", "regex", "matches", "extractLightModeCSSVariables", "bodyRegex", "mediaRegex", "bodyMatches", "mediaMatches", "bodyContent", "mediaMatch", "cssVarRegex", "cssVars", "setDarkThemeCode", "code", "styleId", "style", "cssString", "setLightThemeCode", "EventEmitter", "event", "listener", "data", "listenerToRemove", "_define_property", "eventEmitter", "ThemeCheck", "savedTheme", "themeChecker", "ThemeSwitcher", "props", "defaultTheme", "color", "size", "strokeWidth", "getInitialTheme", "window", "theme", "setTheme", "ye", "ue", "lightIcon", "p", "moonIcon", "themeStyleTag", "tag", "darkModeCSS", "lightModeCSS", "handleReload", "switchTheme", "e", "newTheme", "prevTheme", "motion", "containerStyle", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "iconColor", "id", "tap", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E6NV4Gf2f", "lYvpkC7IW", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapey0dds", "args", "onTap108nq5d", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramersDquhqjHT", "withCSS", "sDquhqjHT_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundColor", "bGBlur", "border", "height", "id", "radius", "text", "textColor", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XGtDHEUvE", "Lsu1xrgI3", "iXsfVjsEM", "JPO2n74ig", "C_fTzd5lR", "p4KdNyw2A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_C_fTzd5lR_borderBottomWidth", "_C_fTzd5lR_borderLeftWidth", "_C_fTzd5lR_borderRightWidth", "_C_fTzd5lR_borderTopWidth", "LayoutGroup", "cx", "RichText2", "css", "FramerZC6oaTVqt", "withCSS", "ZC6oaTVqt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeFonts", "getFonts", "ZC6oaTVqt_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "align", "badgeBGColor", "badgeBorder", "badgeText", "badgeTextColor", "bGColor", "bGHover", "enableBadge", "height", "hover", "id", "link", "name1", "openInNewTab", "radius", "tap", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ku0K5iab7", "ZpWw94nXT", "T3ktnO2nz", "wGRcFK04x", "stziIHmv7", "i8hVK17KP", "ycFa86gVJ", "i6eMpMhze", "PnQ813Qxg", "dqMpST25y", "qfg9TUc_S", "kf3NktHXk", "VdwkoqfEz", "bxYeoQnmJ", "CKLn4URch", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17wrld9", "args", "onMouseEnter1x7u0ml", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "css", "FramerZ5aW2k3RB", "withCSS", "Z5aW2k3RB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuItemFonts", "getFonts", "Z5aW2k3RB_default", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "align", "bGBlur", "dropdownBG", "height", "id", "textColor", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ZmT46usVX", "odLrH8wIa", "ILT7xcLmk", "XWxsdOvDJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "PnQ813Qxgtxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "ref1", "ref2", "ref3", "ref4", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "Z5aW2k3RB_default", "resolvedLinks1", "resolvedLinks2", "l", "AnimatePresence", "Floating", "MotionDivWithFX", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "overlay1", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "css", "Framerx6PfALCgy", "withCSS", "x6PfALCgy_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemFonts", "SearchIcon", "props", "p", "ClearIcon", "u", "SpinnerIcon", "motion", "Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "setCachedData", "url", "dataToCache", "cache", "Storage", "cacheKey", "data", "checkForCachedData", "VERSION", "isDefaultLocaleId", "localeId", "INDEX_KEY", "getIndexKey", "METADATA_KEY", "getMetadataKey", "getCachedIndex", "indexKey", "cachedIndex", "checkForCachedData", "setCachedIndex", "index", "setCachedData", "metadata", "VERSION", "metadataKey", "fakeResults", "peq", "myers_32", "a", "b", "n", "m", "lst", "pv", "mv", "sc", "i", "eq", "xv", "myers_x", "mhc", "phc", "hsize", "vsize", "j", "start", "vlen", "k", "i1", "pb", "mb", "xh", "ph", "mh", "k1", "mv1", "pv1", "start1", "vlen1", "k2", "score", "i2", "eq1", "pb1", "mb1", "xv1", "xh1", "ph1", "mh1", "k3", "distance", "tmp", "localStorageDebugFlag", "window", "groupsRegex", "capitalizeFirstLetter", "value", "titleCase", "clampText", "text", "maxLength", "textLength", "slicedText", "isEmptyObject", "object", "createLogger", "showOutput", "log", "data", "time", "label", "timeEnd", "noop", "DEFAULT_FONT_FAMILY", "getFontFamily", "theme", "_theme_inputFont", "_theme_titleFont", "_theme_subtitleFont", "animationKeyFromLayout", "layout", "safeDocument", "safeWindow", "metaTagSelector", "getMetaTagContent", "metaTag", "checkIfOverLimit", "stripLocaleSlugFromPath", "url", "localeSlug", "localeSlugWithSlash", "log", "time", "timeEnd", "createLogger", "localStorageDebugFlag", "isValidUrl", "url", "splitWords", "text", "getUniqueWords", "str", "words", "word", "getNormalizedString", "getNormalizedItem", "item", "normalizedItem", "key", "value", "getMatchRange", "currentRange", "start", "end", "result", "getScoreForSearchIndexItem", "query", "fullQuery", "score", "match", "urlWords", "splitLength", "clamp", "titleWords", "titleIndex", "distance", "titleWord", "headings", "heading", "headingWords", "headingWord", "descriptionIndex", "codeblock", "getSearchIndexItemScore", "normalizedQuery", "queryWords", "total", "queryWord", "useRawSearch", "index", "settings", "se", "path", "safeWindow", "results", "title", "SearchResultTitleType", "itemA", "itemB", "getIndexedScopedToUrl", "rawUrlScope", "localeSlug", "scopedIndex", "baseScopeUrlHasVariable", "urlUpToPathVariable", "urlScope", "stripLocaleSlugFromPath", "useSearch", "searchIndex", "_setSearchIndex", "ye", "status", "setStatus", "activeLocale", "useLocaleInfo", "localeId", "setSearchIndex", "options", "ue", "loadSearchIndex", "metaTag", "safeDocument", "fakeResults", "cachedIndex", "getCachedIndex", "metaTagContent", "isOverLimit", "searchIndexURL", "getSearchIndexURL", "response", "downloadedIndex", "setCachedIndex", "error", "baseURL", "isDefaultLocaleId", "Browser", "isTouch", "window", "navigator", "isChrome", "isWebKit", "isSafari", "isSafariDesktop", "isWindows", "isMacOS", "useCallbackOnMouseMove", "callback", "mousePositionRef", "prevPositionRef", "pe", "te", "event", "Browser", "ref", "clientX", "clientY", "prevCursorPosition", "scrollIntoView", "targetElement", "scrollElement", "offsetTop", "offsetBottom", "targetElementBounds", "scrollElementBounds", "difference", "topAligned", "minOffset", "bottomAligned", "offset", "MAX_DESCRIPTION_LENGTH", "MODAL_MAX_HEIGHT", "VERTICAL_SPACING_MULTIPLIER", "ClearButton", "theme", "type", "onClick", "text", "iconOrText", "p", "ClearIcon", "Divider", "styles", "Input", "Y", "props", "ref", "value", "status", "autofocus", "placeholder", "iconType", "clearButtonType", "onChange", "inputValue", "setInputValue", "ye", "isFocused", "setIsFocused", "inputRef", "pe", "ce", "e", "inputElement", "handleInputClick", "handleClearClick", "ue", "hasInputText", "showClearButton", "verticalSpacing", "searchIcon", "SearchIcon", "u", "inputContainerStyle", "getFontFamily", "SpinnerIcon", "inputStyle", "scrollOffset", "ResultRow", "index", "result", "prevMousePositionRef", "subtitleType", "selected", "localeSlug", "style", "onMouseMove", "onPointerDown", "onNavigateTo", "url", "title", "score", "urlPath", "se", "stripLocaleSlugFromPath", "handleMouseMove", "useCallbackOnMouseMove", "event", "isContained", "borderRadius", "clamp", "subtitleText", "clampText", "handleClick", "focusTrap", "resultContainer", "resultTitle", "localStorageDebugFlag", "QuickMenuSpacer", "layoutContainerStyle", "LayoutContainer", "layoutType", "onKeyDown", "onDismiss", "children", "modalOptions", "layoutStyles", "getLayoutBaseStyles", "innerStyle", "getContainerAnimation", "key", "animationKeyFromLayout", "prop", "Browser", "containerAnimation", "motion", "ModalContainer", "heightIsStatic", "heightTransition", "heightDeps", "scope", "animate", "useAnimate", "fe", "prevHeight", "height", "ScrollView", "isTouch", "canScroll", "setCanScroll", "element", "statusStyle", "StatusMessage", "previewInfoText", "sidebarStyles", "fixedTopStyles", "quickMenuStyles", "layoutOption", "SearchInputClearButtonType", "SearchInputDividerType", "SearchResultTitleType", "SearchResultSubtitleType", "SearchResultItemType", "SearchLayoutType", "SearchEntryType", "SearchIconType", "SearchModal", "urlScope", "inputOptions", "backdropOptions", "resultOptions", "activeLocale", "useLocaleInfo", "localeId", "input", "selectedResultRow", "scrollView", "setSelected", "isKeyboardNavigationDisabled", "setIsKeyboardNavigationDisabled", "query", "setQuery", "deferredQuery", "oe", "results", "useSearch", "selectedResult", "handleResultRowPointerDown", "te", "handleResultRowMouseMove", "previousSelected", "router", "useRouter", "navigateTo", "_router_getRoute", "_route_page_preload", "_route_page", "_router_navigate", "routeId", "pathVariables", "inferInitialRouteFromPath", "route", "window", "handleKeyDown", "maxIndex", "showNoResults", "showDivider", "isItemContained", "spacing", "listPaddingTop", "scrollIntoView", "isSelected", "getViewportSize", "window", "useViewportSizeState", "getState", "state", "setState", "ye", "ue", "handleWindowResize", "EntryPointOptions", "buildShadow", "shadowProperty", "fallback", "x", "y", "blur", "color", "spread", "Overlay", "Y", "props", "ref", "layoutType", "theme", "onDismiss", "ue", "handleKeyDown", "event", "handlePointerDown", "window", "bodyOverflowHidden", "Ga", "u", "backdropStyles", "SearchLayoutType", "p", "motion", "SearchModal", "containerStyle", "EntryPoint", "withCSS", "_props_inputOptions_inputFont", "_props_inputOptions", "_props_resultOptions", "_props_resultOptions_subtitleOptions", "_props_inputOptions1", "overlay", "pe", "isOpen", "setIsOpen", "ye", "isOverLimit", "setIsOverLimit", "isSafariTouchDevice", "setIsSafariTouchDevice", "isOnCanvas", "RenderTarget", "checkIfOverLimit", "Browser", "baseInputFontSize", "inputFontSize", "useViewportSizeState", "size", "isEmptyObject", "DEFAULT_FONT_FAMILY", "handleClick", "SearchIconType", "SearchIcon", "AnimatePresence", "Search_default", "addPropertyControls", "ControlType", "titleCase", "iconType", "SearchInputDividerType", "SearchInputClearButtonType", "heightIsStatic", "animationKeyFromLayout", "SearchResultItemType", "SearchResultTitleType", "SearchResultSubtitleType", "LogoFonts", "getFonts", "W4JrbG6G8_default", "MenuMenuFonts", "x6PfALCgy_default", "ThemeSwitcherFonts", "ThemeSwitcher", "SearchFonts", "Search_default", "ButtonFonts", "LNCJ8JrMb_default", "MenuHamburgerMenuFonts", "sDquhqjHT_default", "MenuItemFonts", "Z5aW2k3RB_default", "MotionDivWithFX", "withFX", "motion", "LogoControls", "getPropertyControls", "MenuMenuControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableEnumMap2", "humanReadableVariantMap", "getProps", "alignMenu", "bGBlur", "bgBorder", "buttonColor", "buttonLink", "buttonText", "buttonTextColor", "desktopBG", "height", "id", "logoColor", "logoVariant", "mobileBG", "newTab", "showButton", "showMenu", "showSearch", "showThemeSwitcher", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ewfFJItNT", "ixSSNMsgd", "Cof0RMUzO", "ORnOR2pUN", "fjP7WXjeu", "oqjnlG1pR", "BeZsA273t", "v06jigF6i", "sGHTFWZo5", "eGOhp_OqC", "zzroHIlLa", "KDPaGeBIL", "UTTJR9foI", "dbTkB554q", "FFcnuU4Ek", "EdKYuwXXP", "t4qtipNl7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "f2qu17KRbtv5rva", "args", "E6NV4Gf2fquv5vp", "E6NV4Gf2ftv5rva", "i6eMpMhzetxyyif", "overlay", "loadMore", "i6eMpMhze1skfcin", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "ref1", "ref2", "isDisplayed4", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "l", "AnimatePresence", "Floating", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "css", "FramerR59UUiNVK", "withCSS", "R59UUiNVK_default", "addPropertyControls", "ControlType", "addFonts"]
}
