{"version":3,"file":"kaoExxBc2.CJSROVdL.mjs","names":["useStore","withSingleToggle","Component","useStore","changeTheme","Component","React","addPropertyOverrides","Phosphor","cycleOrder","variantClassNames","transitions","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","__FramerMetadata__","Single","SingleInfo","cycleOrder","variantClassNames","transitions","Transition","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","SVG","enabledGestures","cycleOrder","serializationHash","variantClassNames","transformTemplate1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","Component","fonts","css","className","addPropertyOverrides","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","LinkFooter","HeartAnim","SingleToggle","SingleToggleInfo","className","css"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/qI1autnce1ngcX7nJQbN/0GVQhVdC8lONnAjjGDYb/SingleToggle.js","https:/framer.com/m/phosphor-icons/House.js@0.0.53","https:/framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js","https:/framerusercontent.com/modules/cBF15lBi7RiyI8q4CFpd/HCmFLo76G51WSP2Fde9R/Zbmf7W7C5.js","https:/framerusercontent.com/modules/cmTtXrGIgvlXurH1sYiX/ZgwhEqhQeYK7PemoMOZB/Vuw93iw32.js","https:/framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js","https:/framerusercontent.com/modules/EqNN5EwUEFcLraNJTTQo/2TGjxe1ulCoAmlIGAOIN/bTTVTNcvw.js","https:/framerusercontent.com/modules/SwyayK9yUqN1gT8dtDLj/L7MIBywa2bLwxtzP2Uma/SingleToggle.js","https:/framerusercontent.com/modules/V3OE1acyVrbVfcDLcolP/TgfF6hb929LlpixvWwVL/EyWYUBx5A.js","https:/framerusercontent.com/modules/AnE6WpwSDSjDt69dPGrA/ovaaUYwwZiTUJzG4AssT/YWgiTmHW1.js","https:/framerusercontent.com/modules/q4DuspYFXLjU1xQIt72l/8v9ayzl1DHEAFJparDg1/kaoExxBc2.js"],"sourcesContent":["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({// See here => Set the starting theme below\ntheme:\"light\"});const changeTheme=theme=>{console.log(theme);const htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement.setAttribute(\"toggle-theme\",`${theme}`);bodyElement.setAttribute(\"toggle-theme\",`${theme}`);localStorage.setItem(\"currentToggleState\",`${theme}`);// Trigger event that is compatible with Framestack Theme Image Component\nconst event=new Event(\"themeChange\");window.dispatchEvent(event);return;};export function withSingleToggle(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{// Set the starting theme based on store\nlocalStorage.setItem(\"currentToggleState\",`${store.theme}`);// Create attributes on html and body so that theme will be applied based on store\nconst htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement&&htmlElement.setAttribute(\"toggle-theme\",`${store.theme}`);bodyElement&&bodyElement.setAttribute(\"toggle-theme\",`${store.theme}`);// Create sets of light and dark mode tokens\nlet lightThemeTokens=[];let darkThemeTokens=[];for(let i=0;i<document.styleSheets.length;i++){const sheet=document.styleSheets[i];try{for(let rule of sheet.cssRules){// Get light and dark mode tokens\nif(rule.selectorText===\"body\"){const style=rule.style;for(let j=0;j<style.length;j++){const propertyName=style[j];if(propertyName.includes(\"--token\")){const value=style.getPropertyValue(propertyName);// Check for specific tokens or list all\nconst combinedCssRule=`${propertyName}: ${value};`;lightThemeTokens.push(combinedCssRule);}}lightThemeTokens=lightThemeTokens.join(\" \");}else if(rule.conditionText===\"(prefers-color-scheme: dark)\"){const mediaRulesString=rule.cssRules[0].cssText.replace(\"body\",\"\").replace(/\\s*{\\s*/,\"\").replace(/\\s*}\\s*$/,\"\");darkThemeTokens=mediaRulesString;}}}catch(e){console.warn(\"Cannot access stylesheet:\",sheet.href);}}// Create styleSheet with id and populate with correct CSS text\nlet styleElement=document.createElement(\"style\");styleElement.id=\"toggle-theme\";const customCssRule=`body[toggle-theme=\"light\"] {${lightThemeTokens}} body[toggle-theme=\"dark\"]{${darkThemeTokens}} html[toggle-theme=\"light\"] { color-scheme: light; } html[toggle-theme=\"dark\"] { color-scheme: dark; }`;styleElement.textContent=customCssRule;document.head.appendChild(styleElement);// Cleanup function\nreturn()=>{// Check if the style element exists and remove it\nconst existingStyleElement=document.getElementById(\"toggle-theme\");if(existingStyleElement){document.head.removeChild(existingStyleElement);}};},[]);const handleClick=()=>{let newTheme=store.theme===\"light\"?\"dark\":\"light\";setStore({theme:newTheme});changeTheme(newTheme);};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"light\"?\"Light\":\"Dark\",whileHover:{scale:1.1},onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSingleToggle\":{\"type\":\"reactHoc\",\"name\":\"withSingleToggle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SingleToggle.map","let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box…\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map","// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,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/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"KZIK7rfVg\",\"udnmimFYL\"];const serializationHash=\"framer-V3yUc\";const variantClassNames={KZIK7rfVg:\"framer-v-1eogpue\",udnmimFYL:\"framer-v-17ka4qg\"};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 transitions={default:{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 humanReadableVariantMap={Dark:\"KZIK7rfVg\",Light:\"udnmimFYL\"};const getProps=({height,iconColor,iconDark,iconLight,id,weight,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,AeO5PLd9q:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.AeO5PLd9q)!==null&&_ref!==void 0?_ref:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',fle84VlOx:(_ref1=iconLight!==null&&iconLight!==void 0?iconLight:props.fle84VlOx)!==null&&_ref1!==void 0?_ref1:\"Sun\",njtQOvFbC:(_ref2=weight!==null&&weight!==void 0?weight:props.njtQOvFbC)!==null&&_ref2!==void 0?_ref2:\"bold\",pdO6Nm4lI:(_ref3=iconDark!==null&&iconDark!==void 0?iconDark:props.pdO6Nm4lI)!==null&&_ref3!==void 0?_ref3:\"Moon\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"KZIK7rfVg\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,AeO5PLd9q,pdO6Nm4lI,fle84VlOx,njtQOvFbC,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"KZIK7rfVg\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-V3yUc\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-1eogpue\",className),\"data-framer-name\":\"Dark\",layoutDependency:layoutDependency,layoutId:\"KZIK7rfVg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({udnmimFYL:{\"data-framer-name\":\"Light\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x0dyzq-container\",layoutDependency:layoutDependency,layoutId:\"WEHUrU2bE-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:AeO5PLd9q,height:\"100%\",iconSearch:\"House\",iconSelection:pdO6Nm4lI,id:\"WEHUrU2bE\",layoutId:\"WEHUrU2bE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:njtQOvFbC,width:\"100%\",...addPropertyOverrides({udnmimFYL:{iconSelection:fle84VlOx}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-V3yUc [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V3yUc .framer-n0rqea { display: block; }\",\".framer-V3yUc .framer-1eogpue { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 40px; }\",\".framer-V3yUc .framer-x0dyzq-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-V3yUc .framer-1eogpue { gap: 0px; } .framer-V3yUc .framer-1eogpue > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-V3yUc .framer-1eogpue > :first-child { margin-left: 0px; } .framer-V3yUc .framer-1eogpue > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"udnmimFYL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AeO5PLd9q\":\"iconColor\",\"pdO6Nm4lI\":\"iconDark\",\"fle84VlOx\":\"iconLight\",\"njtQOvFbC\":\"weight\"}\n * @framerImmutableVariables true\n */const FramerZbmf7W7C5=withCSS(Component,css,\"framer-V3yUc\");export default FramerZbmf7W7C5;FramerZbmf7W7C5.displayName=\"Single\";FramerZbmf7W7C5.defaultProps={height:40,width:40};addPropertyControls(FramerZbmf7W7C5,{variant:{options:[\"KZIK7rfVg\",\"udnmimFYL\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:ControlType.Enum},AeO5PLd9q:{defaultValue:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',title:\"IconColor\",type:ControlType.Color},pdO6Nm4lI:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Moon\",hidden:undefined,title:\"IconDark\"},fle84VlOx:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Sun\",hidden:undefined,title:\"IconLight\"},njtQOvFbC:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"weight\"])&&{...PhosphorControls[\"weight\"],defaultValue:\"bold\",hidden:undefined,title:\"Weight\"}});addFonts(FramerZbmf7W7C5,[...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZbmf7W7C5\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"AeO5PLd9q\\\":\\\"iconColor\\\",\\\"pdO6Nm4lI\\\":\\\"iconDark\\\",\\\"fle84VlOx\\\":\\\"iconLight\\\",\\\"njtQOvFbC\\\":\\\"weight\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"udnmimFYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"40\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zbmf7W7C5.map","// Generated by Framer (1c1e241)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withSingleToggle}from\"https://framerusercontent.com/modules/qI1autnce1ngcX7nJQbN/0GVQhVdC8lONnAjjGDYb/SingleToggle.js\";import Single,*as SingleInfo from\"https://framerusercontent.com/modules/cBF15lBi7RiyI8q4CFpd/HCmFLo76G51WSP2Fde9R/Zbmf7W7C5.js\";const SingleFonts=getFonts(Single);const SingleWithSingleToggleWithMappedReactPropsg424ez=withMappedReactProps(withSingleToggle(Single),SingleInfo);const SingleControls=getPropertyControls(Single);const cycleOrder=[\"fmPFgJdpx\"];const serializationHash=\"framer-5G3e3\";const variantClassNames={fmPFgJdpx:\"framer-v-dbcror\"};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 transitions={default:{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 getProps=({height,iconColor,iconDark,iconLight,id,weight,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,d0DRJtbRf:(_ref=iconDark!==null&&iconDark!==void 0?iconDark:props.d0DRJtbRf)!==null&&_ref!==void 0?_ref:\"Moon\",ixZIJysro:(_ref1=weight!==null&&weight!==void 0?weight:props.ixZIJysro)!==null&&_ref1!==void 0?_ref1:\"bold\",LTl4MmErQ:(_ref2=iconLight!==null&&iconLight!==void 0?iconLight:props.LTl4MmErQ)!==null&&_ref2!==void 0?_ref2:\"Sun\",Tib6Q7ZnQ:(_ref3=iconColor!==null&&iconColor!==void 0?iconColor:props.Tib6Q7ZnQ)!==null&&_ref3!==void 0?_ref3:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */'};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,Tib6Q7ZnQ,ixZIJysro,d0DRJtbRf,LTl4MmErQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fmPFgJdpx\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-5G3e3\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-dbcror\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fmPFgJdpx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-57g8d5-container\",layoutDependency:layoutDependency,layoutId:\"JElwo0G4_-container\",children:/*#__PURE__*/_jsx(SingleWithSingleToggleWithMappedReactPropsg424ez,{AeO5PLd9q:Tib6Q7ZnQ,fle84VlOx:LTl4MmErQ,height:\"100%\",id:\"JElwo0G4_\",layoutId:\"JElwo0G4_\",njtQOvFbC:ixZIJysro,pdO6Nm4lI:d0DRJtbRf,style:{height:\"100%\",width:\"100%\"},variant:\"udnmimFYL\",width:\"100%\"})})})})})});});const css=['.framer-5G3e3 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5G3e3 .framer-17sullt { display: block; }\",\".framer-5G3e3 .framer-dbcror { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-5G3e3 .framer-57g8d5-container { flex: none; height: 40px; position: relative; width: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5G3e3 .framer-dbcror { gap: 0px; } .framer-5G3e3 .framer-dbcror > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5G3e3 .framer-dbcror > :first-child { margin-left: 0px; } .framer-5G3e3 .framer-dbcror > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Tib6Q7ZnQ\":\"iconColor\",\"ixZIJysro\":\"weight\",\"d0DRJtbRf\":\"iconDark\",\"LTl4MmErQ\":\"iconLight\"}\n * @framerImmutableVariables true\n */const FramerVuw93iw32=withCSS(Component,css,\"framer-5G3e3\");export default FramerVuw93iw32;FramerVuw93iw32.displayName=\"SingleToggle\";FramerVuw93iw32.defaultProps={height:40,width:40};addPropertyControls(FramerVuw93iw32,{Tib6Q7ZnQ:{defaultValue:'var(--token-fa6255fa-1747-4bc3-894a-8375bc25f0bd, rgb(28, 28, 28)) /* {\"name\":\"font/active\"} */',title:\"IconColor\",type:ControlType.Color},ixZIJysro:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"njtQOvFbC\"])&&{...SingleControls[\"njtQOvFbC\"],defaultValue:\"bold\",hidden:undefined,title:\"Weight\"},d0DRJtbRf:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"pdO6Nm4lI\"])&&{...SingleControls[\"pdO6Nm4lI\"],defaultValue:\"Moon\",hidden:undefined,title:\"IconDark\"},LTl4MmErQ:(SingleControls===null||SingleControls===void 0?void 0:SingleControls[\"fle84VlOx\"])&&{...SingleControls[\"fle84VlOx\"],defaultValue:\"Sun\",hidden:undefined,title:\"IconLight\"}});addFonts(FramerVuw93iw32,[...SingleFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVuw93iw32\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Tib6Q7ZnQ\\\":\\\"iconColor\\\",\\\"ixZIJysro\\\":\\\"weight\\\",\\\"d0DRJtbRf\\\":\\\"iconDark\\\",\\\"LTl4MmErQ\\\":\\\"iconLight\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vuw93iw32.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const currentYear=new Date().getFullYear();/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function AutoCopyright(props){const{name,statement,dateRange,startYear,font,color,fontSize}=props;const yearDisplay=dateRange?`${startYear}-${currentYear}`:currentYear;let displayText=`\\xa9 ${yearDisplay} ${name.trim()}`;if(statement.trim()){displayText+=` ${statement.trim()}`;}const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText});}AutoCopyright.defaultProps={name:\"Your Name\",statement:\"All rights reserved.\",dateRange:false,startYear:currentYear-1,color:\"#999999\",fontSize:14,font:{family:\"Inter\"}};AutoCopyright.displayName=\"Auto Copyright\";addPropertyControls(AutoCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#999999\"},dateRange:{type:ControlType.Boolean,title:\"Date Range\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},startYear:{type:ControlType.Number,title:\"Start Year\",min:1e3,max:currentYear-1,defaultValue:currentYear-2,displayStepper:true,hidden:({dateRange})=>!dateRange},name:{type:ControlType.String,title:\"Name\",defaultValue:\"Your Name\"},statement:{type:ControlType.String,title:\"Statement\",defaultValue:\"All rights reserved.\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoCopyright_Prod.map","// Generated by Framer (25411b0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={bkgpU2CMc:{pressed:true},p15XVs5m7:{pressed:true}};const cycleOrder=[\"p15XVs5m7\",\"okhrm8Qec\",\"VqjMhUYgh\",\"bkgpU2CMc\"];const serializationHash=\"framer-f1R0X\";const variantClassNames={bkgpU2CMc:\"framer-v-ni4f20\",okhrm8Qec:\"framer-v-lv5wkb\",p15XVs5m7:\"framer-v-7dp7o8\",VqjMhUYgh:\"framer-v-1l3wtqo\"};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 transitions={bkgpU2CMc:{delay:0,duration:.3,ease:[.12,.23,.35,1.69],type:\"tween\"},default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},okhrm8Qec:{duration:0,type:\"tween\"},VqjMhUYgh:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Anim 1\":\"okhrm8Qec\",\"Anim 2\":\"VqjMhUYgh\",\"Anim 3\":\"bkgpU2CMc\",Default:\"p15XVs5m7\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"p15XVs5m7\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"p15XVs5m7\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16ocitz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"okhrm8Qec\");});const onAppearhae3uw=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VqjMhUYgh\"),50);});const onAppeari2p98q=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bkgpU2CMc\"),310);});const onTap12st2yz=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"p15XVs5m7\");});useOnVariantChange(baseVariant,{okhrm8Qec:onAppearhae3uw,VqjMhUYgh:onAppeari2p98q});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"bkgpU2CMc-pressed\")return true;if([\"okhrm8Qec\",\"VqjMhUYgh\",\"bkgpU2CMc\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7dp7o8\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p15XVs5m7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap16ocitz,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"bkgpU2CMc-pressed\":{\"data-framer-name\":undefined},\"p15XVs5m7-pressed\":{\"data-framer-name\":undefined},bkgpU2CMc:{\"data-framer-name\":\"Anim 3\",onTap:onTap12st2yz},okhrm8Qec:{\"data-framer-name\":\"Anim 1\",onTap:()=>setGestureState({isPressed:false})},VqjMhUYgh:{\"data-framer-name\":\"Anim 2\",onTap:()=>setGestureState({isPressed:false})}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b46m7b\",\"data-framer-name\":\"Heart\",layoutDependency:layoutDependency,layoutId:\"USjN8sILh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5rcbr0-container\",layoutDependency:layoutDependency,layoutId:\"CbJLlqSvS-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:'var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)) /* {\"name\":\"11\"} */',customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M12.4884 21.3725C21.0163 16.5927 23.1144 10.9028 21.5102 6.90294C20.7314 4.96087 19.0967 3.56916 17.1686 3.13926C15.4711 2.76077 13.616 3.14222 11.9994 4.42553C10.3828 3.14222 8.52778 2.76077 6.83026 3.13927C4.9022 3.56917 3.26747 4.96089 2.48861 6.90295C0.884467 10.9029 2.98263 16.5927 11.5105 21.3725C11.8143 21.5428 12.1847 21.5428 12.4884 21.3725Z\" fill=\"black\"/> </svg>',height:\"100%\",id:\"CbJLlqSvS\",layoutId:\"CbJLlqSvS\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({bkgpU2CMc:{customColor:\"rgb(247, 21, 77)\"},okhrm8Qec:{customColor:\"rgb(247, 21, 77)\"},VqjMhUYgh:{customColor:\"rgb(247, 21, 77)\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10z9x66\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"XWrWba4lD\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cbakjj\",\"data-border\":true,\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"sRRRDGI0C\",style:{\"--border-bottom-width\":\"8px\",\"--border-color\":'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(32, 96, 223)) /* {\"name\":\"Accent\"} */',\"--border-left-width\":\"8px\",\"--border-right-width\":\"8px\",\"--border-style\":\"solid\",\"--border-top-width\":\"8px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate1,variants:{bkgpU2CMc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},VqjMhUYgh:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({\"bkgpU2CMc-pressed\":{transformTemplate:undefined},bkgpU2CMc:{transformTemplate:undefined},VqjMhUYgh:{transformTemplate:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6crvv\",\"data-framer-name\":\"Dots\",layoutDependency:layoutDependency,layoutId:\"lzHc_hl10\",style:{opacity:0},variants:{VqjMhUYgh:{opacity:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxgnph\",\"data-framer-name\":\"Dot 1\",layoutDependency:layoutDependency,layoutId:\"lXjZCHq06\",style:{backgroundColor:\"rgb(47, 125, 254)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate2,...addPropertyOverrides({\"bkgpU2CMc-pressed\":{transformTemplate:undefined},bkgpU2CMc:{transformTemplate:undefined},VqjMhUYgh:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ian67w\",\"data-framer-name\":\"Dot 2\",layoutDependency:layoutDependency,layoutId:\"yl0ThF0HH\",style:{backgroundColor:\"rgb(233, 61, 196)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-os64q2\",\"data-framer-name\":\"Dot 3\",layoutDependency:layoutDependency,layoutId:\"Sry_PkmZJ\",style:{backgroundColor:\"rgb(3, 199, 119)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snf8c7\",\"data-framer-name\":\"Dot 4\",layoutDependency:layoutDependency,layoutId:\"G4xA5oO72\",style:{backgroundColor:\"rgb(249, 201, 10)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iiqfwk\",\"data-framer-name\":\"Dot 5\",layoutDependency:layoutDependency,layoutId:\"s7UycuIY2\",style:{backgroundColor:\"rgb(236, 52, 128)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate3,...addPropertyOverrides({\"bkgpU2CMc-pressed\":{transformTemplate:undefined},bkgpU2CMc:{transformTemplate:undefined},VqjMhUYgh:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qq7ytt\",\"data-framer-name\":\"Dot 6\",layoutDependency:layoutDependency,layoutId:\"TdGRRm6fw\",style:{backgroundColor:\"rgb(74, 155, 183)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4bash7\",\"data-framer-name\":\"Dot 7\",layoutDependency:layoutDependency,layoutId:\"rbWNCcM_R\",style:{backgroundColor:\"rgb(126, 78, 255)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w7g5i4\",\"data-framer-name\":\"Dot 8\",layoutDependency:layoutDependency,layoutId:\"gA0qCJq9T\",style:{backgroundColor:\"rgb(233, 61, 196)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},transformTemplate:transformTemplate3,...addPropertyOverrides({\"bkgpU2CMc-pressed\":{transformTemplate:undefined},bkgpU2CMc:{transformTemplate:undefined},VqjMhUYgh:{transformTemplate:undefined}},baseVariant,gestureVariant)})]})]})})})});});const css=['.framer-f1R0X[data-border=\"true\"]::after, .framer-f1R0X [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f1R0X.framer-1e6q8g9, .framer-f1R0X .framer-1e6q8g9 { display: block; }\",\".framer-f1R0X.framer-7dp7o8 { cursor: pointer; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-f1R0X .framer-b46m7b { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-f1R0X .framer-5rcbr0-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-f1R0X .framer-10z9x66 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-f1R0X .framer-1cbakjj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-i6crvv { bottom: 0px; flex: none; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; }\",\".framer-f1R0X .framer-sxgnph { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 54%; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-1ian67w { aspect-ratio: 1 / 1; bottom: 7px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 9px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-os64q2 { aspect-ratio: 1 / 1; bottom: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 7px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-1snf8c7 { aspect-ratio: 1 / 1; bottom: 9px; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 14px; overflow: hidden; position: absolute; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-1iiqfwk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 15px; overflow: hidden; position: absolute; top: 46%; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-qq7ytt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 13px; overflow: hidden; position: absolute; top: 7px; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-4bash7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 9px; overflow: hidden; position: absolute; top: 7px; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X .framer-1w7g5i4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 7px; overflow: hidden; position: absolute; top: 46%; width: 3px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1R0X.framer-v-lv5wkb.framer-7dp7o8, .framer-f1R0X.framer-v-1l3wtqo.framer-7dp7o8 { cursor: unset; }\",\".framer-f1R0X.framer-v-lv5wkb .framer-b46m7b { bottom: unset; height: 2px; left: calc(50.00000000000002% - 2px / 2); right: unset; top: calc(50.00000000000002% - 2px / 2); width: 2px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-b46m7b { bottom: -2px; left: -2px; right: -2px; top: -2px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-10z9x66, .framer-f1R0X.framer-v-ni4f20 .framer-10z9x66 { bottom: -10px; left: -10px; right: -10px; top: -10px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-1cbakjj, .framer-f1R0X.framer-v-ni4f20 .framer-1cbakjj { height: var(--framer-aspect-ratio-supported, 47px); left: -1px; right: -1px; top: -1px; width: unset; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-sxgnph { bottom: -10px; left: unset; right: -8px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-1ian67w { bottom: -8px; left: -12px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-os64q2 { bottom: -1px; left: -13px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-1snf8c7 { bottom: -4px; left: unset; right: -12px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-1iiqfwk { left: unset; right: -11px; top: -8px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-qq7ytt { left: unset; right: -6px; top: -13px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-4bash7 { left: -6px; top: -13px; }\",\".framer-f1R0X.framer-v-1l3wtqo .framer-1w7g5i4 { left: -11px; top: -9px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-sxgnph { bottom: -5px; height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -4px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-1ian67w { bottom: -6px; height: var(--framer-aspect-ratio-supported, 1px); left: -10px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-os64q2 { bottom: 1px; height: var(--framer-aspect-ratio-supported, 1px); left: -11px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-1snf8c7 { bottom: 1px; height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -9px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-1iiqfwk { height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -10px; top: -7px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-qq7ytt { height: var(--framer-aspect-ratio-supported, 1px); left: unset; right: -4px; top: -13px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-4bash7 { height: var(--framer-aspect-ratio-supported, 1px); left: -7px; top: -14px; width: 1px; }\",\".framer-f1R0X.framer-v-ni4f20 .framer-1w7g5i4 { height: var(--framer-aspect-ratio-supported, 1px); left: -12px; top: -9px; width: 1px; }\",\".framer-f1R0X.framer-v-7dp7o8.pressed .framer-b46m7b, .framer-f1R0X.framer-v-ni4f20.pressed .framer-b46m7b { bottom: unset; height: 20px; left: calc(50.00000000000002% - 20px / 2); right: unset; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-f1R0X.framer-v-ni4f20.pressed .framer-1cbakjj { width: unset; }\",\".framer-f1R0X.framer-v-ni4f20.pressed .framer-sxgnph, .framer-f1R0X.framer-v-ni4f20.pressed .framer-1snf8c7, .framer-f1R0X.framer-v-ni4f20.pressed .framer-1iiqfwk, .framer-f1R0X.framer-v-ni4f20.pressed .framer-qq7ytt { left: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"okhrm8Qec\":{\"layout\":[\"fixed\",\"fixed\"]},\"VqjMhUYgh\":{\"layout\":[\"fixed\",\"fixed\"]},\"bkgpU2CMc\":{\"layout\":[\"fixed\",\"fixed\"]},\"BuZ8vJ014\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yn2Nz8fG5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerbTTVTNcvw=withCSS(Component,css,\"framer-f1R0X\");export default FramerbTTVTNcvw;FramerbTTVTNcvw.displayName=\"Heart Anim\";FramerbTTVTNcvw.defaultProps={height:24,width:24};addPropertyControls(FramerbTTVTNcvw,{variant:{options:[\"p15XVs5m7\",\"okhrm8Qec\",\"VqjMhUYgh\",\"bkgpU2CMc\"],optionTitles:[\"Default\",\"Anim 1\",\"Anim 2\",\"Anim 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbTTVTNcvw,[...SVGFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbTTVTNcvw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"okhrm8Qec\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VqjMhUYgh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bkgpU2CMc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BuZ8vJ014\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yn2Nz8fG5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bTTVTNcvw.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({// Set the starting theme below, otherwise default to system.\ntheme:\"light\"});const changeTheme=theme=>{const htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement.setAttribute(\"toggle-theme\",`${theme}`);bodyElement.setAttribute(\"toggle-theme\",`${theme}`);localStorage.setItem(\"theme\",`${theme}`);// Trigger event that is compatible with Framestack Theme Image Component\nconst event=new Event(\"themeChange\");window.dispatchEvent(event);return;};export function withSingleToggle(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{// If starting theme is other than light/dark then match device theme.\nif(store.theme!==\"dark\"&&store.theme!==\"light\"){// Detect system theme\nconst mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");let newTheme=mediaQuery.matches?\"dark\":\"light\";// Set store theme\nsetStore({theme:newTheme});localStorage.setItem(\"theme\",`${newTheme}`);}else{// Set the starting theme based on store\nlocalStorage.setItem(\"theme\",`${store.theme}`);}// Create attributes on html and body so that theme will be applied based on store\nconst htmlElement=document.getElementsByTagName(\"html\")[0];const bodyElement=document.getElementsByTagName(\"body\")[0];htmlElement&&htmlElement.setAttribute(\"toggle-theme\",`${store.theme}`);bodyElement&&bodyElement.setAttribute(\"toggle-theme\",`${store.theme}`);// Create sets of light and dark mode tokens\nlet lightThemeTokens=[];let darkThemeTokens=[];for(let i=0;i<document.styleSheets.length;i++){const sheet=document.styleSheets[i];try{for(let rule of sheet.cssRules){// Get light and dark mode tokens\nif(rule.selectorText===\"body\"){const style=rule.style;for(let j=0;j<style.length;j++){const propertyName=style[j];if(propertyName.includes(\"--token\")){const value=style.getPropertyValue(propertyName);// Check for specific tokens or list all\nconst combinedCssRule=`${propertyName}: ${value};`;lightThemeTokens.push(combinedCssRule);}}lightThemeTokens=lightThemeTokens.join(\" \");}else if(rule.conditionText===\"(prefers-color-scheme: dark)\"){const cssTextIgnore=\"body:not([data-framer-theme])\";if(!rule.cssText.includes(cssTextIgnore)){const mediaRulesString=rule.cssRules[0].cssText.replace(\"body\",\"\").replace(/\\s*{\\s*/,\"\").replace(/\\s*}\\s*$/,\"\");darkThemeTokens=mediaRulesString;}}}}catch(e){console.warn(\"Cannot access stylesheet:\",sheet.href);}}// Create styleSheet with id and populate with correct CSS text\nlet styleElement=document.createElement(\"style\");styleElement.id=\"toggle-theme\";const customCssRule=`body[toggle-theme=\"light\"] {${lightThemeTokens}} body[toggle-theme=\"dark\"]{${darkThemeTokens}} html[toggle-theme=\"light\"] { color-scheme: light; } html[toggle-theme=\"dark\"] { color-scheme: dark; }`;styleElement.textContent=customCssRule;document.head.appendChild(styleElement);// Cleanup function\nreturn()=>{// Check if the style element exists and remove it\nconst existingStyleElement=document.getElementById(\"toggle-theme\");if(existingStyleElement){document.head.removeChild(existingStyleElement);}htmlElement&&htmlElement.setAttribute(\"toggle-theme\",\"system\");bodyElement&&bodyElement.setAttribute(\"toggle-theme\",\"system\");};},[]);const handleClick=()=>{let newTheme=store.theme===\"light\"?\"dark\":\"light\";setStore({theme:newTheme});changeTheme(newTheme);};return /*#__PURE__*/_jsx(Component,{...props,variant:store.theme===\"light\"?\"Light\":\"Dark\",whileHover:{scale:1.1},onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSingleToggle\":{\"type\":\"reactHoc\",\"name\":\"withSingleToggle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SingleToggle.map","// Generated by Framer (e010222)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.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://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.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://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.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://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.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://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.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://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.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://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.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://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.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://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.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://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.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://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.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://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.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://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.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://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.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://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-ovTWA .framer-styles-preset-1cdw0u0:not(.rich-text-wrapper), .framer-ovTWA .framer-styles-preset-1cdw0u0.rich-text-wrapper p { --framer-font-family: \"Inter\", 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-open-type-features: normal; --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-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, #070404); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ovTWA\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (af04cc1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,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/nBZSyqQhONlzATGbpd4i/0kzPbLku2YYYQyweb2lA/pATT6Meag.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hYKMBKRZS5xoLHijwyKB/6VMjTg4gNtIwCw9ylOJd/wOBa6LvGh.js\";const enabledGestures={RUAHFYuM9:{hover:true}};const serializationHash=\"framer-D1L0o\";const variantClassNames={RUAHFYuM9:\"framer-v-gksxb4\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,linkLabel,width,...props})=>{var _ref;return{...props,aimNZc40k:(_ref=linkLabel!==null&&linkLabel!==void 0?linkLabel:props.aimNZc40k)!==null&&_ref!==void 0?_ref:\"Kodo Pay\",RYrfp4l5j:link!==null&&link!==void 0?link:props.RYrfp4l5j};};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,RYrfp4l5j,aimNZc40k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"RUAHFYuM9\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gksxb4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RUAHFYuM9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"RUAHFYuM9-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wi4f5r\",\"data-styles-preset\":\"wOBa6LvGh\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-da8dcfa0-1d84-49f3-8977-d5ac7fc14ea8, rgba(39, 22, 22, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:RYrfp4l5j,nodeId:\"I1174:35285;1021:8232\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1icpfff\",\"data-styles-preset\":\"pATT6Meag\",children:\"Kodo Pay\"})})})}),className:\"framer-15h9sgq\",\"data-framer-name\":\"Link One\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1174:35285;1021:8232\",style:{\"--extracted-r6o4lv\":\"var(--token-da8dcfa0-1d84-49f3-8977-d5ac7fc14ea8, rgba(39, 22, 22, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},text:aimNZc40k,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1L0o.framer-q8fdtp, .framer-D1L0o .framer-q8fdtp { display: block; }\",\".framer-D1L0o.framer-gksxb4 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 231px; }\",\".framer-D1L0o .framer-15h9sgq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 230px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D1L0o.framer-gksxb4 { gap: 0px; } .framer-D1L0o.framer-gksxb4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-D1L0o.framer-gksxb4 > :first-child { margin-left: 0px; } .framer-D1L0o.framer-gksxb4 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 231\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Z5tTkAqy8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RYrfp4l5j\":\"link\",\"aimNZc40k\":\"linkLabel\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYWgiTmHW1=withCSS(Component,css,\"framer-D1L0o\");export default FramerYWgiTmHW1;FramerYWgiTmHW1.displayName=\"Link - footer\";FramerYWgiTmHW1.defaultProps={height:40,width:231};addPropertyControls(FramerYWgiTmHW1,{RYrfp4l5j:{title:\"Link\",type:ControlType.Link},aimNZc40k:{defaultValue:\"Kodo Pay\",displayTextArea:false,title:\"Link Label\",type:ControlType.String}});addFonts(FramerYWgiTmHW1,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYWgiTmHW1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"RYrfp4l5j\\\":\\\"link\\\",\\\"aimNZc40k\\\":\\\"linkLabel\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"231\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z5tTkAqy8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SingleToggle,*as SingleToggleInfo from\"https://framerusercontent.com/modules/cmTtXrGIgvlXurH1sYiX/ZgwhEqhQeYK7PemoMOZB/Vuw93iw32.js\";import AutoCopyright from\"https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js\";import HeartAnim from\"https://framerusercontent.com/modules/EqNN5EwUEFcLraNJTTQo/2TGjxe1ulCoAmlIGAOIN/bTTVTNcvw.js\";import{withSingleToggle}from\"https://framerusercontent.com/modules/SwyayK9yUqN1gT8dtDLj/L7MIBywa2bLwxtzP2Uma/SingleToggle.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/V3OE1acyVrbVfcDLcolP/TgfF6hb929LlpixvWwVL/EyWYUBx5A.js\";import LinkFooter from\"https://framerusercontent.com/modules/AnE6WpwSDSjDt69dPGrA/ovaaUYwwZiTUJzG4AssT/YWgiTmHW1.js\";const LinkFooterFonts=getFonts(LinkFooter);const AutoCopyrightFonts=getFonts(AutoCopyright);const HeartAnimFonts=getFonts(HeartAnim);const SingleToggleFonts=getFonts(SingleToggle);const SingleToggleWithSingleTogglewopc24WithMappedReactProps1l6x1qr=withMappedReactProps(withCodeBoundaryForOverrides(SingleToggle,{nodeId:\"dcv7oQOSg\",override:withSingleToggle,scopeId:\"kaoExxBc2\"}),SingleToggleInfo);const cycleOrder=[\"kNoxTB_hi\",\"ipjOffzC7\",\"EfwT1Eom6\",\"LEDTmXYCG\",\"p_gwedqZF\",\"OmMgNEFE9\"];const serializationHash=\"framer-Kme9H\";const variantClassNames={EfwT1Eom6:\"framer-v-1cy3jfg\",ipjOffzC7:\"framer-v-1va5ee1\",kNoxTB_hi:\"framer-v-eagr3k\",LEDTmXYCG:\"framer-v-81jo0s\",OmMgNEFE9:\"framer-v-13poqg9\",p_gwedqZF:\"framer-v-12vfgw4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Dark - Desktop\":\"LEDTmXYCG\",\"Dark - Mobile \":\"OmMgNEFE9\",\"Dark - Tablet\":\"p_gwedqZF\",DESKTOP:\"kNoxTB_hi\",Mobile:\"ipjOffzC7\",TABLET:\"EfwT1Eom6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kNoxTB_hi\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kNoxTB_hi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-eagr3k\",className,classNames),\"data-border\":true,\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"kNoxTB_hi\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8057fc3e-d78b-4a7e-a9e4-67074b9f1960, rgb(242, 235, 226))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8025bb0e-6f24-41c1-b5cc-51a229282bea, rgb(255, 255, 255))\",...style},variants:{LEDTmXYCG:{backgroundColor:\"var(--token-282eaf92-809e-47a0-be81-f2b4d5b7fe19, rgb(0, 0, 0))\"},OmMgNEFE9:{backgroundColor:\"var(--token-282eaf92-809e-47a0-be81-f2b4d5b7fe19, rgb(0, 0, 0))\"},p_gwedqZF:{backgroundColor:\"var(--token-282eaf92-809e-47a0-be81-f2b4d5b7fe19, rgb(0, 0, 0))\"}},...addPropertyOverrides({EfwT1Eom6:{\"data-framer-name\":\"TABLET\"},ipjOffzC7:{\"data-framer-name\":\"Mobile\"},LEDTmXYCG:{\"data-framer-name\":\"Dark - Desktop\"},OmMgNEFE9:{\"data-framer-name\":\"Dark - Mobile \"},p_gwedqZF:{\"data-framer-name\":\"Dark - Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wevzjx\",\"data-framer-name\":\"Container-XL\",layoutDependency:layoutDependency,layoutId:\"WZhEXwrB2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15g1xui\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"nFYJblUY4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ji3vfp\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"Mx971TFa1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a5bm1h\",\"data-framer-name\":\"Kodo logo\",layoutDependency:layoutDependency,layoutId:\"vafUmCXEQ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1weh1mv\",\"data-framer-name\":\"path12\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HkK0DnLPf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 27 32\"><path d=\"M 14.444 17.282 C 20.329 14.056 24.302 6.714 24.657 0.847 C 24.656 0.347 24.311 0.004 23.811 0.004 L 19.049 0.004 C 18.593 0.004 18.267 0.289 18.212 0.717 L 18.203 0.838 L 18.203 0.849 L 18.203 0.848 C 17.725 6.697 12.454 14.216 6.353 15.088 L 6.353 7.838 L 6.353 0.849 C 6.353 0.348 6.009 0.004 5.508 0.004 L 0.846 0.004 C 0.345 0.004 0 0.348 0 0.849 L 0 7.838 L 0 24.166 L 0 31.154 C 0 31.655 0.345 32 0.846 32 L 5.508 32 C 6.009 32 6.353 31.655 6.353 31.154 L 6.353 24.166 L 6.353 17.19 L 18.649 32 L 26.374 32 L 26.374 31.36 Z\" fill=\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\"></path></svg>',svgContentId:12453325207,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w2rdav\",\"data-framer-name\":\"path14\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cFolJVdNL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><path d=\"M 16.796 8.555 C 15.605 7.364 14.181 6.773 12.496 6.773 C 10.812 6.773 9.387 7.364 8.196 8.555 C 7.004 9.746 6.422 11.171 6.422 12.855 C 6.422 14.539 7.004 15.963 8.196 17.155 C 9.387 18.346 10.812 18.936 12.496 18.936 C 14.181 18.936 15.605 18.346 16.796 17.155 C 17.988 15.964 18.578 14.539 18.578 12.855 C 18.578 11.17 17.988 9.745 16.796 8.555 Z M 12.496 0.71 C 15.842 0.71 18.718 1.901 21.082 4.269 C 23.448 6.638 24.641 9.506 24.641 12.855 C 24.641 16.203 23.447 19.071 21.082 21.44 C 18.718 23.808 15.842 25 12.496 25 C 9.147 25 6.278 23.808 3.91 21.441 C 1.542 19.073 0.358 16.203 0.358 12.855 C 0.358 9.507 1.542 6.637 3.91 4.269 C 6.277 1.901 9.148 0.71 12.496 0.71 Z\" fill=\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\"></path></svg>',svgContentId:10300240696,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oq8xce\",\"data-framer-name\":\"path16\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"n0qt56C0u\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 32\"><path d=\"M 17.033 15.555 C 15.841 14.364 14.417 13.773 12.733 13.773 C 11.048 13.773 9.623 14.363 8.432 15.555 C 7.241 16.746 6.658 18.171 6.658 19.855 C 6.658 21.539 7.24 22.963 8.432 24.155 C 9.623 25.346 11.048 25.936 12.733 25.936 C 14.417 25.936 15.841 25.346 17.033 24.155 C 18.224 22.964 18.814 21.539 18.814 19.855 C 18.814 18.17 18.224 16.745 17.033 15.555 Z M 18.33 9.246 L 18.33 0.845 C 18.33 0.35 18.67 0 19.168 0 L 23.548 0 C 24.049 0 24.394 0.345 24.394 0.845 L 24.394 30.611 C 24.394 31.114 24.054 31.464 23.548 31.464 L 22.378 31.464 C 21.038 31.464 19.94 30.944 19.166 29.887 C 17.283 31.328 15.114 32 12.732 32 C 9.384 32 6.514 30.808 4.146 28.441 C 1.778 26.073 0.595 23.203 0.595 19.855 C 0.595 16.507 1.778 13.636 4.146 11.269 C 6.514 8.901 9.384 7.71 12.732 7.71 C 14.747 7.71 16.632 8.194 18.33 9.246 Z\" fill=\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\"></path></svg>',svgContentId:10182875399,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oiz16m\",\"data-framer-name\":\"path18\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rylqP80kx\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 25\"><path d=\"M 16.792 8.555 C 15.601 7.364 14.176 6.773 12.492 6.773 C 10.807 6.773 9.383 7.364 8.192 8.555 C 7 9.746 6.418 11.171 6.418 12.855 C 6.418 14.539 7 15.963 8.192 17.155 C 9.383 18.346 10.807 18.936 12.492 18.936 C 14.176 18.936 15.601 18.346 16.792 17.155 C 17.984 15.964 18.574 14.539 18.574 12.855 C 18.574 11.17 17.984 9.745 16.792 8.555 Z M 12.492 0.71 C 15.838 0.71 18.715 1.901 21.078 4.269 C 23.443 6.638 24.637 9.506 24.637 12.855 C 24.637 16.203 23.443 19.072 21.078 21.44 C 18.715 23.808 15.838 25 12.492 25 C 9.143 25 6.274 23.808 3.906 21.441 C 1.538 19.073 0.354 16.203 0.354 12.855 C 0.354 9.507 1.538 6.637 3.906 4.269 C 6.274 1.901 9.143 0.71 12.492 0.71 Z\" fill=\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\"></path></svg>',svgContentId:10549836090,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vn25gs\",layoutDependency:layoutDependency,layoutId:\"Xq84iBT3X\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-189uugg\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"jeozg0x94\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4)))\"},children:\"Products\"})}),className:\"framer-ows1lh\",\"data-framer-name\":\"Column One\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"G8baGhch2\",style:{\"--extracted-r6o4lv\":\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x7zdwe\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"ropZQ5kpz\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined},{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined},{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined},{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined},{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined},{href:{webPageId:\"O4NNEB4su\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+0},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rlldue-container\",layoutDependency:layoutDependency,layoutId:\"YhG5SK_pa-container\",nodeId:\"YhG5SK_pa\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Purchase Request\",height:\"100%\",id:\"YhG5SK_pa\",layoutId:\"YhG5SK_pa\",RYrfp4l5j:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined},{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined},{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined},{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined},{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined},{href:{webPageId:\"MBP0Wln4W\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+40},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vzzpvb-container\",layoutDependency:layoutDependency,layoutId:\"UhLOt7Kd2-container\",nodeId:\"UhLOt7Kd2\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Purchase Order\",height:\"100%\",id:\"UhLOt7Kd2\",layoutId:\"UhLOt7Kd2\",RYrfp4l5j:resolvedLinks1[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks1[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks1[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks1[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks1[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined},{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined},{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined},{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined},{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined},{href:{webPageId:\"uRnPuszW1\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+80},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-171v2ed-container\",layoutDependency:layoutDependency,layoutId:\"G6Q9W1AAx-container\",nodeId:\"G6Q9W1AAx\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Invoices (AP)\",height:\"100%\",id:\"G6Q9W1AAx\",layoutId:\"G6Q9W1AAx\",RYrfp4l5j:resolvedLinks2[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks2[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks2[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks2[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks2[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks2[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined},{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined},{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined},{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined},{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined},{href:{webPageId:\"R85KFYXGT\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+120},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1joycyo-container\",layoutDependency:layoutDependency,layoutId:\"O3VtPfdTT-container\",nodeId:\"O3VtPfdTT\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Vendor Payments\",height:\"100%\",id:\"O3VtPfdTT\",layoutId:\"O3VtPfdTT\",RYrfp4l5j:resolvedLinks3[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks3[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks3[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks3[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks3[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks3[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined},{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined},{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined},{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined},{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined},{href:{webPageId:\"MMDpXxUpG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+160},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i9misx-container\",layoutDependency:layoutDependency,layoutId:\"AG9BRtdig-container\",nodeId:\"AG9BRtdig\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Corporate Cards\",height:\"100%\",id:\"AG9BRtdig\",layoutId:\"AG9BRtdig\",RYrfp4l5j:resolvedLinks4[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks4[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks4[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks4[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks4[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks4[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined},{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined},{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined},{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined},{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined},{href:{webPageId:\"jZTH_aKEk\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px)`,...addPropertyOverrides({EfwT1Eom6:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},ipjOffzC7:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+0+0+124+0+200},OmMgNEFE9:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px)`},p_gwedqZF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+0+0+124+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15y1bf5-container\",layoutDependency:layoutDependency,layoutId:\"THoZRZI5q-container\",nodeId:\"THoZRZI5q\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Reimbursements\",height:\"100%\",id:\"THoZRZI5q\",layoutId:\"THoZRZI5q\",RYrfp4l5j:resolvedLinks5[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks5[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks5[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks5[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks5[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks5[4]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-31qp09\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"ZYltISqHj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4)))\"},children:\"Platform\"})}),className:\"framer-mjd13v\",\"data-framer-name\":\"Column One\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"X1QTNoLng\",style:{\"--extracted-r6o4lv\":\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nqxdx7\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"xD7TZEcdl\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined},{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined},{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined},{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined},{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined},{href:{webPageId:\"r1tui3jNL\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+396+0+124+0+0},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+396+0+124+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19dqfmt-container\",layoutDependency:layoutDependency,layoutId:\"dJIG77vQl-container\",nodeId:\"dJIG77vQl\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Intergrations\",height:\"100%\",id:\"dJIG77vQl\",layoutId:\"dJIG77vQl\",RYrfp4l5j:resolvedLinks6[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks6[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks6[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks6[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks6[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks6[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined},{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined},{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined},{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined},{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined},{href:{webPageId:\"M0UH5xIWF\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+396+0+124+0+40},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+396+0+124+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k81lzs-container\",layoutDependency:layoutDependency,layoutId:\"F1lmijUoG-container\",nodeId:\"F1lmijUoG\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Workflows\",height:\"100%\",id:\"F1lmijUoG\",layoutId:\"F1lmijUoG\",RYrfp4l5j:resolvedLinks7[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks7[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks7[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks7[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks7[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks7[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined},{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined},{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined},{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined},{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined},{href:{webPageId:\"XGULtJP1Z\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+396+0+124+0+80},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+396+0+124+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9g0qae-container\",layoutDependency:layoutDependency,layoutId:\"lFn7oBfOb-container\",nodeId:\"lFn7oBfOb\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Collaboration\",height:\"100%\",id:\"lFn7oBfOb\",layoutId:\"lFn7oBfOb\",RYrfp4l5j:resolvedLinks8[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks8[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks8[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks8[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks8[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks8[4]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-23mf7h\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"DoIvbzmyR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4)))\"},children:\"Company\"})}),className:\"framer-1cfqt6m\",\"data-framer-name\":\"Column One\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"FtorzlGCW\",style:{\"--extracted-r6o4lv\":\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1anp5ys\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"kG3Q3apoU\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined},{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined},{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined},{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined},{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined},{href:{webPageId:\"RrWayzNiT\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+672+0+124+0+0},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+672+0+124+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17za9f-container\",layoutDependency:layoutDependency,layoutId:\"kaO0t7wlt-container\",nodeId:\"kaO0t7wlt\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"About Us\",height:\"100%\",id:\"kaO0t7wlt\",layoutId:\"kaO0t7wlt\",RYrfp4l5j:resolvedLinks9[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks9[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks9[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks9[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks9[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks9[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined},{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined},{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined},{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined},{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined},{href:{webPageId:\"il1bNaQCp\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+672+0+124+0+40},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+672+0+124+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9yuzvo-container\",layoutDependency:layoutDependency,layoutId:\"o9ji5eYId-container\",nodeId:\"o9ji5eYId\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Blog\",height:\"100%\",id:\"o9ji5eYId\",layoutId:\"o9ji5eYId\",RYrfp4l5j:resolvedLinks10[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks10[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks10[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks10[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks10[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks10[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined},{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined},{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined},{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined},{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined},{href:{webPageId:\"SWyUEruZb\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+672+0+124+0+80},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+672+0+124+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pqgf6s-container\",layoutDependency:layoutDependency,layoutId:\"qBFLw9GCX-container\",nodeId:\"qBFLw9GCX\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Careers\",height:\"100%\",id:\"qBFLw9GCX\",layoutId:\"qBFLw9GCX\",RYrfp4l5j:resolvedLinks11[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks11[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks11[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks11[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks11[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks11[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined},{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined},{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined},{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined},{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined},{href:{webPageId:\"MGYqyYbdq\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+672+0+124+0+120},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+672+0+124+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a6sv2u-container\",layoutDependency:layoutDependency,layoutId:\"H2q0pGnae-container\",nodeId:\"H2q0pGnae\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Contact Us\",height:\"100%\",id:\"H2q0pGnae\",layoutId:\"H2q0pGnae\",RYrfp4l5j:resolvedLinks12[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks12[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks12[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks12[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks12[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks12[4]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uk14r8\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"kaCzjXXML\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4)))\"},children:\"Legal\"})}),className:\"framer-1jzqn0v\",\"data-framer-name\":\"Column One\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"kDVm3ANpB\",style:{\"--extracted-r6o4lv\":\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5vxls1\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"QU76fBXat\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"livquik-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"b1XsLbTSN\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+988+0+124+0+0},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+988+0+124+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1upqy6f-container\",layoutDependency:layoutDependency,layoutId:\"nd5z6GN55-container\",nodeId:\"nd5z6GN55\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"LivQuik T&C\",height:\"100%\",id:\"nd5z6GN55\",layoutId:\"nd5z6GN55\",RYrfp4l5j:resolvedLinks13[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks13[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks13[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks13[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks13[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks13[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"eight-finance-t-c\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"vFe26_Peu\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+988+0+124+0+40},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+988+0+124+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xch7jo-container\",layoutDependency:layoutDependency,layoutId:\"Sm5agNNMg-container\",nodeId:\"Sm5agNNMg\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Eight Finance T&C\",height:\"100%\",id:\"Sm5agNNMg\",layoutId:\"Sm5agNNMg\",RYrfp4l5j:resolvedLinks14[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks14[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks14[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks14[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks14[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks14[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"privacy-policy\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"KfTObiUiG\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+988+0+124+0+80},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+988+0+124+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u9ie3e-container\",layoutDependency:layoutDependency,layoutId:\"iupEg09xi-container\",nodeId:\"iupEg09xi\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Privacy Policy\",height:\"100%\",id:\"iupEg09xi\",layoutId:\"iupEg09xi\",RYrfp4l5j:resolvedLinks15[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks15[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks15[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks15[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks15[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks15[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined},{href:{pathVariables:{ostZj_eGk:\"terms-of-service\"},unresolvedPathSlugs:{ostZj_eGk:{collectionId:\"cFh1jvIjQ\",collectionItemId:\"ilV9pPVfl\"}},webPageId:\"GAAHu1DFF\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1440px) - 30px) / 4, 1px), 144px) * 1.0043)`,...addPropertyOverrides({EfwT1Eom6:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},ipjOffzC7:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||1163)-48-1685)/2+0+0)+0+0+0+72+0+988+0+124+0+120},OmMgNEFE9:{width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 32px) / 2, 50px), 144px) * 1.0043)`},p_gwedqZF:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1440px), 144px) * 1.0043)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-1669)/2+0+0)+0+0+0+72+0+988+0+124+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c830c2-container\",layoutDependency:layoutDependency,layoutId:\"hq_BiO6Ig-container\",nodeId:\"hq_BiO6Ig\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(LinkFooter,{aimNZc40k:\"Terms of Service\",height:\"100%\",id:\"hq_BiO6Ig\",layoutId:\"hq_BiO6Ig\",RYrfp4l5j:resolvedLinks16[0],style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({EfwT1Eom6:{RYrfp4l5j:resolvedLinks16[2]},ipjOffzC7:{RYrfp4l5j:resolvedLinks16[1]},LEDTmXYCG:{RYrfp4l5j:resolvedLinks16[3]},OmMgNEFE9:{RYrfp4l5j:resolvedLinks16[5]},p_gwedqZF:{RYrfp4l5j:resolvedLinks16[4]}},baseVariant,gestureVariant)})})})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-es0ovk\",\"data-framer-name\":\"Credits\",layoutDependency:layoutDependency,layoutId:\"ITkarn3Ux\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gcl3r\",\"data-border\":true,\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"jojoAB_20\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8057fc3e-d78b-4a7e-a9e4-67074b9f1960, rgb(242, 235, 226))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zd5wgq\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"SHWTJBMFY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-33qfrj\",\"data-framer-name\":\"Credits\",layoutDependency:layoutDependency,layoutId:\"A18cm6NeT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kn029f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"em6oxa8Bk-container\",nodeId:\"em6oxa8Bk\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(AutoCopyright,{color:\"var(--token-d6ba00e2-cc34-4856-b0bc-45abd0227103, rgba(7, 4, 4, 0.6))\",dateRange:false,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"em6oxa8Bk\",layoutId:\"em6oxa8Bk\",name:\"Kodo\",startYear:2023,statement:\"All rights reserved.\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hmncvm\",\"data-framer-name\":\"Made with <3\",layoutDependency:layoutDependency,layoutId:\"eAKa3NJXc\",transformTemplate:transformTemplate1,...addPropertyOverrides({ipjOffzC7:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cdw0u0\",\"data-styles-preset\":\"EyWYUBx5A\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6ba00e2-cc34-4856-b0bc-45abd0227103, rgba(7, 4, 4, 0.6)))\"},children:\"made with\"})}),className:\"framer-opuklm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kQ8ViwF6S\",style:{\"--extracted-r6o4lv\":\"var(--token-d6ba00e2-cc34-4856-b0bc-45abd0227103, rgba(7, 4, 4, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1213v1q-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iCO9NGhbL-container\",nodeId:\"iCO9NGhbL\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(HeartAnim,{height:\"100%\",id:\"iCO9NGhbL\",layoutId:\"iCO9NGhbL\",style:{height:\"100%\",width:\"100%\"},variant:\"p15XVs5m7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cdw0u0\",\"data-styles-preset\":\"EyWYUBx5A\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d6ba00e2-cc34-4856-b0bc-45abd0227103, rgba(7, 4, 4, 0.6)))\"},children:\"in India\"})}),className:\"framer-nl8rbr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"baexGYku6\",style:{\"--extracted-r6o4lv\":\"var(--token-d6ba00e2-cc34-4856-b0bc-45abd0227103, rgba(7, 4, 4, 0.6))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zkxnlg\",\"data-border\":true,\"data-framer-name\":\"Theme toggle\",layoutDependency:layoutDependency,layoutId:\"eboR_TJL4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8057fc3e-d78b-4a7e-a9e4-67074b9f1960, rgb(242, 235, 226))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8025bb0e-6f24-41c1-b5cc-51a229282bea, rgb(255, 255, 255))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4)))\"},children:\"Theme:\"})}),className:\"framer-7en0j4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zbniv3qc1\",style:{\"--extracted-r6o4lv\":\"var(--token-35f119d7-b674-411b-b011-02ff5cd06ce2, rgb(7, 4, 4))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wopc24-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dcv7oQOSg-container\",nodeId:\"dcv7oQOSg\",rendersWithMotion:true,scopeId:\"kaoExxBc2\",children:/*#__PURE__*/_jsx(SingleToggleWithSingleTogglewopc24WithMappedReactProps1l6x1qr,{d0DRJtbRf:\"Moon\",height:\"100%\",id:\"dcv7oQOSg\",ixZIJysro:\"bold\",layoutId:\"dcv7oQOSg\",LTl4MmErQ:\"Sun\",Tib6Q7ZnQ:\"var(--token-da8dcfa0-1d84-49f3-8977-d5ac7fc14ea8, rgba(39, 22, 22, 0.9))\",width:\"100%\"})})})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kme9H.framer-7r2cw8, .framer-Kme9H .framer-7r2cw8 { display: block; }\",\".framer-Kme9H.framer-eagr3k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 64px 40px 64px; position: relative; width: 1440px; }\",\".framer-Kme9H .framer-1wevzjx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-15g1xui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-ji3vfp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-width: 144px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Kme9H .framer-a5bm1h { aspect-ratio: 3.238778829574585 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 104px; }\",\".framer-Kme9H .framer-1weh1mv { flex: none; height: 32px; left: 0px; position: absolute; top: 0px; width: 27px; }\",\".framer-Kme9H .framer-w2rdav { flex: none; height: 25px; left: 79px; position: absolute; top: 7px; width: 25px; }\",\".framer-Kme9H .framer-1oq8xce { flex: none; height: 32px; left: 52px; position: absolute; top: 0px; width: 25px; }\",\".framer-Kme9H .framer-oiz16m { flex: none; height: 25px; left: 25px; position: absolute; top: 7px; width: 25px; }\",\".framer-Kme9H .framer-1vn25gs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Kme9H .framer-189uugg, .framer-Kme9H .framer-31qp09, .framer-Kme9H .framer-23mf7h, .framer-Kme9H .framer-1uk14r8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 144px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Kme9H .framer-ows1lh, .framer-Kme9H .framer-mjd13v, .framer-Kme9H .framer-1cfqt6m, .framer-Kme9H .framer-1jzqn0v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Kme9H .framer-x7zdwe, .framer-Kme9H .framer-nqxdx7, .framer-Kme9H .framer-1anp5ys, .framer-Kme9H .framer-5vxls1 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-rlldue-container, .framer-Kme9H .framer-1vzzpvb-container, .framer-Kme9H .framer-171v2ed-container, .framer-Kme9H .framer-1joycyo-container, .framer-Kme9H .framer-i9misx-container, .framer-Kme9H .framer-15y1bf5-container, .framer-Kme9H .framer-19dqfmt-container, .framer-Kme9H .framer-1k81lzs-container, .framer-Kme9H .framer-9g0qae-container, .framer-Kme9H .framer-17za9f-container, .framer-Kme9H .framer-9yuzvo-container, .framer-Kme9H .framer-pqgf6s-container, .framer-Kme9H .framer-1a6sv2u-container, .framer-Kme9H .framer-1upqy6f-container, .framer-Kme9H .framer-1xch7jo-container, .framer-Kme9H .framer-u9ie3e-container, .framer-Kme9H .framer-c830c2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Kme9H .framer-es0ovk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-gcl3r { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-zd5wgq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Kme9H .framer-33qfrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Kme9H .framer-1kn029f-container, .framer-Kme9H .framer-wopc24-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Kme9H .framer-1hmncvm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 14px; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-Kme9H .framer-opuklm, .framer-Kme9H .framer-nl8rbr, .framer-Kme9H .framer-7en0j4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Kme9H .framer-1213v1q-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Kme9H .framer-zkxnlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 4px 2px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kme9H.framer-eagr3k, .framer-Kme9H .framer-1wevzjx, .framer-Kme9H .framer-15g1xui, .framer-Kme9H .framer-ji3vfp, .framer-Kme9H .framer-1vn25gs, .framer-Kme9H .framer-189uugg, .framer-Kme9H .framer-x7zdwe, .framer-Kme9H .framer-31qp09, .framer-Kme9H .framer-nqxdx7, .framer-Kme9H .framer-23mf7h, .framer-Kme9H .framer-1anp5ys, .framer-Kme9H .framer-1uk14r8, .framer-Kme9H .framer-5vxls1, .framer-Kme9H .framer-es0ovk, .framer-Kme9H .framer-33qfrj, .framer-Kme9H .framer-1hmncvm, .framer-Kme9H .framer-zkxnlg { gap: 0px; } .framer-Kme9H.framer-eagr3k > *, .framer-Kme9H .framer-1wevzjx > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Kme9H.framer-eagr3k > :first-child, .framer-Kme9H .framer-1wevzjx > :first-child, .framer-Kme9H .framer-ji3vfp > :first-child, .framer-Kme9H .framer-189uugg > :first-child, .framer-Kme9H .framer-x7zdwe > :first-child, .framer-Kme9H .framer-31qp09 > :first-child, .framer-Kme9H .framer-nqxdx7 > :first-child, .framer-Kme9H .framer-23mf7h > :first-child, .framer-Kme9H .framer-1anp5ys > :first-child, .framer-Kme9H .framer-1uk14r8 > :first-child, .framer-Kme9H .framer-5vxls1 > :first-child, .framer-Kme9H .framer-es0ovk > :first-child { margin-top: 0px; } .framer-Kme9H.framer-eagr3k > :last-child, .framer-Kme9H .framer-1wevzjx > :last-child, .framer-Kme9H .framer-ji3vfp > :last-child, .framer-Kme9H .framer-189uugg > :last-child, .framer-Kme9H .framer-x7zdwe > :last-child, .framer-Kme9H .framer-31qp09 > :last-child, .framer-Kme9H .framer-nqxdx7 > :last-child, .framer-Kme9H .framer-23mf7h > :last-child, .framer-Kme9H .framer-1anp5ys > :last-child, .framer-Kme9H .framer-1uk14r8 > :last-child, .framer-Kme9H .framer-5vxls1 > :last-child, .framer-Kme9H .framer-es0ovk > :last-child { margin-bottom: 0px; } .framer-Kme9H .framer-15g1xui > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Kme9H .framer-15g1xui > :first-child, .framer-Kme9H .framer-1vn25gs > :first-child, .framer-Kme9H .framer-33qfrj > :first-child, .framer-Kme9H .framer-1hmncvm > :first-child, .framer-Kme9H .framer-zkxnlg > :first-child { margin-left: 0px; } .framer-Kme9H .framer-15g1xui > :last-child, .framer-Kme9H .framer-1vn25gs > :last-child, .framer-Kme9H .framer-33qfrj > :last-child, .framer-Kme9H .framer-1hmncvm > :last-child, .framer-Kme9H .framer-zkxnlg > :last-child { margin-right: 0px; } .framer-Kme9H .framer-ji3vfp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Kme9H .framer-1vn25gs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Kme9H .framer-189uugg > *, .framer-Kme9H .framer-31qp09 > *, .framer-Kme9H .framer-23mf7h > *, .framer-Kme9H .framer-1uk14r8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Kme9H .framer-x7zdwe > *, .framer-Kme9H .framer-nqxdx7 > *, .framer-Kme9H .framer-1anp5ys > *, .framer-Kme9H .framer-5vxls1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Kme9H .framer-es0ovk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Kme9H .framer-33qfrj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Kme9H .framer-1hmncvm > *, .framer-Kme9H .framer-zkxnlg > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-Kme9H.framer-v-1va5ee1.framer-eagr3k, .framer-Kme9H.framer-v-12vfgw4.framer-eagr3k { align-content: flex-start; align-items: flex-start; gap: 16px; padding: 24px 16px 24px 16px; width: 386px; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-1wevzjx, .framer-Kme9H.framer-v-12vfgw4 .framer-1wevzjx { gap: 24px; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-15g1xui, .framer-Kme9H.framer-v-1cy3jfg .framer-15g1xui, .framer-Kme9H.framer-v-12vfgw4 .framer-15g1xui, .framer-Kme9H.framer-v-13poqg9 .framer-15g1xui { flex-direction: column; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-1vn25gs, .framer-Kme9H.framer-v-12vfgw4 .framer-1vn25gs { flex: none; flex-direction: column; gap: 32px; width: 100%; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-189uugg, .framer-Kme9H.framer-v-1va5ee1 .framer-31qp09, .framer-Kme9H.framer-v-1va5ee1 .framer-23mf7h, .framer-Kme9H.framer-v-1va5ee1 .framer-1uk14r8, .framer-Kme9H.framer-v-12vfgw4 .framer-189uugg, .framer-Kme9H.framer-v-12vfgw4 .framer-31qp09, .framer-Kme9H.framer-v-12vfgw4 .framer-23mf7h, .framer-Kme9H.framer-v-12vfgw4 .framer-1uk14r8 { flex: none; gap: 4px; width: 100%; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-es0ovk { gap: 16px; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-gcl3r { order: 0; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-zd5wgq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; order: 1; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-33qfrj, .framer-Kme9H.framer-v-12vfgw4 .framer-33qfrj { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; width: 100%; }\",\".framer-Kme9H.framer-v-1va5ee1 .framer-1hmncvm { height: min-content; left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kme9H.framer-v-1va5ee1.framer-eagr3k, .framer-Kme9H.framer-v-1va5ee1 .framer-1wevzjx, .framer-Kme9H.framer-v-1va5ee1 .framer-15g1xui, .framer-Kme9H.framer-v-1va5ee1 .framer-1vn25gs, .framer-Kme9H.framer-v-1va5ee1 .framer-189uugg, .framer-Kme9H.framer-v-1va5ee1 .framer-31qp09, .framer-Kme9H.framer-v-1va5ee1 .framer-23mf7h, .framer-Kme9H.framer-v-1va5ee1 .framer-1uk14r8, .framer-Kme9H.framer-v-1va5ee1 .framer-es0ovk, .framer-Kme9H.framer-v-1va5ee1 .framer-zd5wgq, .framer-Kme9H.framer-v-1va5ee1 .framer-33qfrj { gap: 0px; } .framer-Kme9H.framer-v-1va5ee1.framer-eagr3k > *, .framer-Kme9H.framer-v-1va5ee1 .framer-es0ovk > *, .framer-Kme9H.framer-v-1va5ee1 .framer-zd5wgq > *, .framer-Kme9H.framer-v-1va5ee1 .framer-33qfrj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Kme9H.framer-v-1va5ee1.framer-eagr3k > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1wevzjx > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-15g1xui > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1vn25gs > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-189uugg > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-31qp09 > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-23mf7h > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1uk14r8 > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-es0ovk > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-zd5wgq > :first-child, .framer-Kme9H.framer-v-1va5ee1 .framer-33qfrj > :first-child { margin-top: 0px; } .framer-Kme9H.framer-v-1va5ee1.framer-eagr3k > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1wevzjx > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-15g1xui > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1vn25gs > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-189uugg > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-31qp09 > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-23mf7h > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-1uk14r8 > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-es0ovk > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-zd5wgq > :last-child, .framer-Kme9H.framer-v-1va5ee1 .framer-33qfrj > :last-child { margin-bottom: 0px; } .framer-Kme9H.framer-v-1va5ee1 .framer-1wevzjx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Kme9H.framer-v-1va5ee1 .framer-15g1xui > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Kme9H.framer-v-1va5ee1 .framer-1vn25gs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Kme9H.framer-v-1va5ee1 .framer-189uugg > *, .framer-Kme9H.framer-v-1va5ee1 .framer-31qp09 > *, .framer-Kme9H.framer-v-1va5ee1 .framer-23mf7h > *, .framer-Kme9H.framer-v-1va5ee1 .framer-1uk14r8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-Kme9H.framer-v-1cy3jfg.framer-eagr3k { padding: 64px 40px 40px 40px; width: 810px; }\",\".framer-Kme9H.framer-v-1cy3jfg .framer-1wevzjx, .framer-Kme9H.framer-v-13poqg9 .framer-1wevzjx { gap: 0px; }\",\".framer-Kme9H.framer-v-1cy3jfg .framer-1vn25gs, .framer-Kme9H.framer-v-13poqg9 .framer-1vn25gs { align-content: unset; align-items: unset; display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; width: 100%; }\",\".framer-Kme9H.framer-v-1cy3jfg .framer-189uugg, .framer-Kme9H.framer-v-1cy3jfg .framer-31qp09, .framer-Kme9H.framer-v-1cy3jfg .framer-23mf7h, .framer-Kme9H.framer-v-1cy3jfg .framer-1uk14r8, .framer-Kme9H.framer-v-13poqg9 .framer-189uugg, .framer-Kme9H.framer-v-13poqg9 .framer-31qp09, .framer-Kme9H.framer-v-13poqg9 .framer-23mf7h, .framer-Kme9H.framer-v-13poqg9 .framer-1uk14r8 { align-self: start; flex: none; justify-self: start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kme9H.framer-v-1cy3jfg .framer-1wevzjx, .framer-Kme9H.framer-v-1cy3jfg .framer-15g1xui, .framer-Kme9H.framer-v-1cy3jfg .framer-1vn25gs { gap: 0px; } .framer-Kme9H.framer-v-1cy3jfg .framer-1wevzjx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Kme9H.framer-v-1cy3jfg .framer-1wevzjx > :first-child, .framer-Kme9H.framer-v-1cy3jfg .framer-15g1xui > :first-child { margin-top: 0px; } .framer-Kme9H.framer-v-1cy3jfg .framer-1wevzjx > :last-child, .framer-Kme9H.framer-v-1cy3jfg .framer-15g1xui > :last-child { margin-bottom: 0px; } .framer-Kme9H.framer-v-1cy3jfg .framer-15g1xui > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Kme9H.framer-v-1cy3jfg .framer-1vn25gs > *, .framer-Kme9H.framer-v-1cy3jfg .framer-1vn25gs > :first-child, .framer-Kme9H.framer-v-1cy3jfg .framer-1vn25gs > :last-child { margin: 0px; } }\",\".framer-Kme9H.framer-v-12vfgw4 .framer-zd5wgq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kme9H.framer-v-12vfgw4.framer-eagr3k, .framer-Kme9H.framer-v-12vfgw4 .framer-1wevzjx, .framer-Kme9H.framer-v-12vfgw4 .framer-15g1xui, .framer-Kme9H.framer-v-12vfgw4 .framer-1vn25gs, .framer-Kme9H.framer-v-12vfgw4 .framer-189uugg, .framer-Kme9H.framer-v-12vfgw4 .framer-31qp09, .framer-Kme9H.framer-v-12vfgw4 .framer-23mf7h, .framer-Kme9H.framer-v-12vfgw4 .framer-1uk14r8, .framer-Kme9H.framer-v-12vfgw4 .framer-zd5wgq, .framer-Kme9H.framer-v-12vfgw4 .framer-33qfrj { gap: 0px; } .framer-Kme9H.framer-v-12vfgw4.framer-eagr3k > *, .framer-Kme9H.framer-v-12vfgw4 .framer-33qfrj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Kme9H.framer-v-12vfgw4.framer-eagr3k > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1wevzjx > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-15g1xui > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1vn25gs > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-189uugg > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-31qp09 > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-23mf7h > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1uk14r8 > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-zd5wgq > :first-child, .framer-Kme9H.framer-v-12vfgw4 .framer-33qfrj > :first-child { margin-top: 0px; } .framer-Kme9H.framer-v-12vfgw4.framer-eagr3k > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1wevzjx > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-15g1xui > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1vn25gs > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-189uugg > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-31qp09 > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-23mf7h > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-1uk14r8 > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-zd5wgq > :last-child, .framer-Kme9H.framer-v-12vfgw4 .framer-33qfrj > :last-child { margin-bottom: 0px; } .framer-Kme9H.framer-v-12vfgw4 .framer-1wevzjx > *, .framer-Kme9H.framer-v-12vfgw4 .framer-zd5wgq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Kme9H.framer-v-12vfgw4 .framer-15g1xui > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Kme9H.framer-v-12vfgw4 .framer-1vn25gs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Kme9H.framer-v-12vfgw4 .framer-189uugg > *, .framer-Kme9H.framer-v-12vfgw4 .framer-31qp09 > *, .framer-Kme9H.framer-v-12vfgw4 .framer-23mf7h > *, .framer-Kme9H.framer-v-12vfgw4 .framer-1uk14r8 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-Kme9H.framer-v-13poqg9.framer-eagr3k { padding: 64px 40px 64px 40px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kme9H.framer-v-13poqg9 .framer-1wevzjx, .framer-Kme9H.framer-v-13poqg9 .framer-15g1xui, .framer-Kme9H.framer-v-13poqg9 .framer-1vn25gs { gap: 0px; } .framer-Kme9H.framer-v-13poqg9 .framer-1wevzjx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Kme9H.framer-v-13poqg9 .framer-1wevzjx > :first-child, .framer-Kme9H.framer-v-13poqg9 .framer-15g1xui > :first-child { margin-top: 0px; } .framer-Kme9H.framer-v-13poqg9 .framer-1wevzjx > :last-child, .framer-Kme9H.framer-v-13poqg9 .framer-15g1xui > :last-child { margin-bottom: 0px; } .framer-Kme9H.framer-v-13poqg9 .framer-15g1xui > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Kme9H.framer-v-13poqg9 .framer-1vn25gs > *, .framer-Kme9H.framer-v-13poqg9 .framer-1vn25gs > :first-child, .framer-Kme9H.framer-v-13poqg9 .framer-1vn25gs > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-Kme9H[data-border=\"true\"]::after, .framer-Kme9H [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 549\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ipjOffzC7\":{\"layout\":[\"fixed\",\"auto\"]},\"EfwT1Eom6\":{\"layout\":[\"fixed\",\"auto\"]},\"LEDTmXYCG\":{\"layout\":[\"fixed\",\"auto\"]},\"p_gwedqZF\":{\"layout\":[\"fixed\",\"auto\"]},\"OmMgNEFE9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkaoExxBc2=withCSS(Component,css,\"framer-Kme9H\");export default FramerkaoExxBc2;FramerkaoExxBc2.displayName=\"Footer\";FramerkaoExxBc2.defaultProps={height:549,width:1440};addPropertyControls(FramerkaoExxBc2,{variant:{options:[\"kNoxTB_hi\",\"ipjOffzC7\",\"EfwT1Eom6\",\"LEDTmXYCG\",\"p_gwedqZF\",\"OmMgNEFE9\"],optionTitles:[\"DESKTOP\",\"Mobile\",\"TABLET\",\"Dark - Desktop\",\"Dark - Tablet\",\"Dark - Mobile \"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkaoExxBc2,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"}]},...LinkFooterFonts,...AutoCopyrightFonts,...HeartAnimFonts,...SingleToggleFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkaoExxBc2\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ipjOffzC7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfwT1Eom6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LEDTmXYCG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p_gwedqZF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OmMgNEFE9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"549\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kaoExxBc2.map"],"mappings":"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"}