{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/X4HfK2a56xWpoofrXpzg/xdZChjivfXLElroZwTS7/XfHXsaa7g.js", "ssg:https://framerusercontent.com/modules/KCVQZviCXQVdeIu0i7In/ejq5pY0sgNrmAUsSn9ds/yKFNbVKY6.js"],
  "sourcesContent": ["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "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{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"VCA3WD53z\",\"siG1vA0L6\",\"utLVhWC4P\",\"ZmvAPrJYI\"];const serializationHash=\"framer-xCE2k\";const variantClassNames={siG1vA0L6:\"framer-v-11gr4me\",utLVhWC4P:\"framer-v-1lld8w8\",VCA3WD53z:\"framer-v-djnnyu\",ZmvAPrJYI:\"framer-v-18psfom\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Small logo_white\":\"ZmvAPrJYI\",Black:\"VCA3WD53z\",Small_logo:\"utLVhWC4P\",White:\"siG1vA0L6\"};const getProps=({height,id,padding,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,DddLdco9_:(_ref=padding!==null&&padding!==void 0?padding:props.DddLdco9_)!==null&&_ref!==void 0?_ref:16,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"VCA3WD53z\"};};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,DddLdco9_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VCA3WD53z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"siG1vA0L6\",\"ZmvAPrJYI\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"siG1vA0L6\",\"ZmvAPrJYI\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x4CQ8ARKg\"},children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-djnnyu\",className,classNames)} framer-a9tbor`,\"data-framer-name\":\"Black\",layoutDependency:layoutDependency,layoutId:\"VCA3WD53z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1wl1o74\":numberToPixelString(DddLdco9_),...style},...addPropertyOverrides({siG1vA0L6:{\"data-framer-name\":\"White\"},utLVhWC4P:{\"data-framer-name\":\"Small_logo\"},ZmvAPrJYI:{\"data-framer-name\":\"Small logo_white\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vh3gof\",\"data-framer-name\":\"Brighlife_logo_white\",fill:\"black\",intrinsicHeight:513,intrinsicWidth:1366,layoutDependency:layoutDependency,layoutId:\"QnUIochsI\",svg:'<svg id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1366 513.18\"><defs><style>.cls-1{fill:#fff}</style></defs><path class=\"cls-1\" d=\"M1120.63 207.64c-34.15 2.39-61.81 30.05-64.2 64.19-2.83 40.46 29.28 74.29 69.15 74.29 26.79 0 50.07-15.28 61.61-37.58 1.17-2.26-.53-4.96-3.08-4.96h-24.51c-.99 0-1.92.45-2.59 1.19-7.72 8.66-18.95 14.13-31.44 14.13-17.27 0-32.1-10.46-38.59-25.37-.64-1.47.45-3.12 2.06-3.12h101.62c1.71 0 3.14-1.26 3.4-2.95.54-3.48.83-7.04.83-10.66 0-39.86-33.82-71.98-74.28-69.15Zm41.48 55.54h-73.06c-1.6 0-2.7-1.65-2.06-3.12 6.48-14.91 21.32-25.37 38.59-25.37s32.11 10.46 38.59 25.37c.64 1.47-.45 3.12-2.06 3.12Zm-329.32-49.82h-30.87c-1.23 0-2.23-1-2.23-2.23v-36.35c0-1.89-1.54-3.43-3.43-3.43H775.9c-1.89 0-3.43 1.54-3.43 3.43v105.83c0 31.95 27.17 59.12 60.12 61a3.45 3.45 0 0 0 3.64-3.44v-20.41c0-1.78-1.37-3.25-3.14-3.4-18.12-1.58-33.4-16.67-33.4-33.74v-40.77c0-1.23 1-2.23 2.23-2.23h30.87c1.89 0 3.43-1.54 3.43-3.43v-17.38c0-1.89-1.54-3.43-3.43-3.43Zm-448.89-.45c-28.72 1.69-56.64 23.26-56.64 63v62.06c0 1.89 1.54 3.43 3.43 3.43h20.36c1.89 0 3.43-1.54 3.43-3.43v-62.06c0-29.41 21.79-34.72 30.02-35.68 1.74-.2 3.05-1.66 3.05-3.41v-20.48c0-1.99-1.68-3.55-3.66-3.44Z\"/><rect class=\"cls-1\" x=\"409.79\" y=\"212.72\" width=\"27.22\" height=\"128.68\" rx=\"3.43\" ry=\"3.43\"/><path class=\"cls-1\" d=\"M684.89 207.67c-12.51-.42-24.23 2.85-34.18 8.8-1.49.89-3.37-.17-3.37-1.9v-40.13c0-1.89-1.54-3.43-3.43-3.43h-20.36c-1.89 0-3.43 1.54-3.43 3.43v163.54c0 1.89 1.54 3.43 3.43 3.43h20.36c1.89 0 3.43-1.54 3.43-3.43v-66.79c0-19.21 14.91-35.63 34.11-36.32 20.11-.72 36.7 15.43 36.7 35.38v67.73c0 1.89 1.54 3.43 3.43 3.43h20.36c1.89 0 3.43-1.54 3.43-3.43v-66.4c0-33.98-26.52-62.77-60.47-63.92Z\"/><rect class=\"cls-1\" x=\"862.3\" y=\"171.01\" width=\"27.22\" height=\"170.4\" rx=\"3.43\" ry=\"3.43\"/><rect class=\"cls-1\" x=\"922.81\" y=\"212.33\" width=\"27.22\" height=\"129.09\" rx=\"3.43\" ry=\"3.43\"/><path class=\"cls-1\" d=\"M1039.92 163.55c-27.48 1.57-47.64 20.85-50.49 47.78-.12 1.14-1.06 2.02-2.21 2.02h-11.36c-1.89 0-3.43 1.54-3.43 3.43v17.38c0 1.89 1.54 3.43 3.43 3.43h10.97c1.23 0 2.23 1 2.23 2.23v98.37c0 1.89 1.54 3.43 3.43 3.43h20.36c1.89 0 3.43-1.54 3.43-3.43v-98.37c0-1.23 1-2.23 2.23-2.23h21.63c1.89 0 3.43-1.54 3.43-3.43v-17.38c0-1.89-1.54-3.43-3.43-3.43h-20.9c-1.42 0-2.49-1.31-2.19-2.7 2.82-13.19 13.31-18.88 23.37-19.84 1.78-.17 3.16-1.62 3.16-3.41v-20.42c0-1.98-1.68-3.55-3.66-3.44Z\"/><rect class=\"cls-1\" x=\"409.79\" y=\"171.01\" width=\"27.22\" height=\"26.22\" rx=\"3.43\" ry=\"3.43\"/><rect class=\"cls-1\" x=\"922.81\" y=\"171.01\" width=\"27.22\" height=\"26.22\" rx=\"3.43\" ry=\"3.43\"/><path class=\"cls-1\" d=\"M525.83 207.65c-34.5.79-61.68 29.86-61.68 64.37v10.07c0 34.89 27.77 64.12 62.66 64.39 11.68.09 22.64-3.01 32.06-8.48 1.69-.98 3.75.48 3.33 2.39-4.54 21-23.25 26.95-34.91 26.95s-19.48-2.82-22.9-4.55c-1.39-.7-3.08-.33-4.1.85l-13.49 15.65c-1.36 1.57-1.03 3.98.72 5.11 5.64 3.65 18.66 10.16 39.77 10.16 31.38 0 63.15-22.07 63.15-64.26v-59.52c0-35.31-29.13-63.94-64.62-63.13Zm37.4 75.68c0 20.9-17.94 37.69-39.23 35.78-18.65-1.67-32.62-17.93-32.62-36.66v-10.8c0-18.73 13.97-34.98 32.62-36.66 21.29-1.91 39.23 14.88 39.23 35.78v12.55Zm-270.44 40.99c8.66-8.93 13.01-21.06 12.57-35.09-.6-19.35-11.37-34.49-29.37-43.26-.8-.45-1.08-.92-1.21-1.32-.11-.35-.12-.95.48-1.68 8.72-10.72 12.47-23.39 10.86-36.78-3.18-26.5-26.53-45.24-54.33-43.58-28.38 1.7-61.53 25.86-61.53 88.35v86.94c0 1.89 1.54 3.43 3.43 3.43l69.66.02c21.53 0 38.63-5.89 49.44-17.04Zm-95.07-73.35c0-43.41 19.24-59.96 35.72-60.95 11.41-.67 23.8 5.78 25.44 19.45.75 6.21-1.04 11.73-5.46 16.86-5.18 6.01-12.39 9.49-16.42 10.7-1.43.43-2.39 1.77-2.39 3.27v21.31c0 1.85 1.46 3.35 3.3 3.43 11.21.47 39.37 3.78 40.02 25.05.2 6.61-1.38 11.56-4.85 15.13-5.43 5.61-15.99 8.69-29.73 8.69h-43.41c-1.23 0-2.23-1-2.23-2.23v-60.71Z\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-wsf0h1\",\"data-framer-name\":\"Brightlife-logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:158,layoutDependency:layoutDependency,layoutId:\"nzxMg3w9S\",svg:'<svg width=\"158\" height=\"36\" viewBox=\"0 0 158 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M146.104 6.96931C140.854 7.33838 136.601 11.6096 136.234 16.8815C135.799 23.1294 140.735 28.3534 146.865 28.3534C150.983 28.3534 154.562 25.9939 156.336 22.5503C156.516 22.2013 156.255 21.7844 155.863 21.7844H152.095C151.943 21.7844 151.8 21.8539 151.697 21.9681C150.51 23.3054 148.783 24.1501 146.863 24.1501C144.208 24.1501 141.928 22.5349 140.931 20.2325C140.832 20.0055 141 19.7507 141.247 19.7507H156.87C157.133 19.7507 157.352 19.5561 157.392 19.2951C157.475 18.7577 157.52 18.208 157.52 17.649C157.52 11.4938 152.321 6.53385 146.101 6.97086L146.104 6.96931ZM152.481 15.5458H141.249C141.003 15.5458 140.834 15.291 140.932 15.064C141.928 12.7616 144.21 11.1464 146.865 11.1464C149.52 11.1464 151.801 12.7616 152.797 15.064C152.896 15.291 152.728 15.5458 152.481 15.5458Z\" fill=\"#212635\"/>\\n<path d=\"M101.853 7.8526H97.1073C96.9182 7.8526 96.7645 7.69818 96.7645 7.50825V1.89508C96.7645 1.60322 96.5277 1.36542 96.2372 1.36542H93.1072C92.8166 1.36542 92.5799 1.60322 92.5799 1.89508V18.2374C92.5799 23.1711 96.7568 27.3667 101.822 27.657C102.125 27.674 102.382 27.4315 102.382 27.1258V23.9741C102.382 23.6992 102.171 23.4722 101.899 23.449C99.1135 23.205 96.7645 20.8748 96.7645 18.2389V11.9432C96.7645 11.7533 96.9182 11.5988 97.1073 11.5988H101.853C102.144 11.5988 102.38 11.361 102.38 11.0692V8.38535C102.38 8.0935 102.144 7.85569 101.853 7.85569V7.8526Z\" fill=\"#212635\"/>\\n<path d=\"M32.8436 7.78309C28.4284 8.04406 24.1362 11.3749 24.1362 17.5116V27.0949C24.1362 27.3867 24.3729 27.6245 24.6635 27.6245H27.7935C28.084 27.6245 28.3208 27.3867 28.3208 27.0949V17.5116C28.3208 12.9701 31.6706 12.1501 32.9359 12.0018C33.2034 11.971 33.4048 11.7455 33.4048 11.4753V8.31275C33.4048 8.00546 33.1465 7.76456 32.8421 7.78155L32.8436 7.78309Z\" fill=\"#212635\"/>\\n<path d=\"M40.4811 7.75378H37.3511C37.0599 7.75378 36.8238 7.99092 36.8238 8.28344V27.0949C36.8238 27.3874 37.0599 27.6246 37.3511 27.6246H40.4811C40.7723 27.6246 41.0084 27.3874 41.0084 27.0949V8.28344C41.0084 7.99092 40.7723 7.75378 40.4811 7.75378Z\" fill=\"#212635\"/>\\n<path d=\"M79.1159 6.97391C77.1927 6.90905 75.3909 7.414 73.8613 8.3328C73.6322 8.47024 73.3432 8.30655 73.3432 8.03941V1.84253C73.3432 1.55067 73.1064 1.31287 72.8159 1.31287H69.6859C69.3953 1.31287 69.1586 1.55067 69.1586 1.84253V27.0964C69.1586 27.3882 69.3953 27.626 69.6859 27.626H72.8159C73.1064 27.626 73.3432 27.3882 73.3432 27.0964V16.7827C73.3432 13.8163 75.6354 11.2807 78.587 11.1741C81.6786 11.0629 84.2291 13.5568 84.2291 16.6375V27.0964C84.2291 27.3882 84.4658 27.626 84.7564 27.626H87.8864C88.1769 27.626 88.4137 27.3882 88.4137 27.0964V16.8429C88.4137 11.5957 84.3367 7.14995 79.1174 6.97236L79.1159 6.97391Z\" fill=\"#212635\"/>\\n<path d=\"M110.047 1.31287H106.917C106.626 1.31287 106.39 1.55 106.39 1.84253V27.0964C106.39 27.3889 106.626 27.626 106.917 27.626H110.047C110.338 27.626 110.574 27.3889 110.574 27.0964V1.84253C110.574 1.55 110.338 1.31287 110.047 1.31287Z\" fill=\"#212635\"/>\\n<path d=\"M119.349 7.69354H116.219C115.928 7.69354 115.692 7.93068 115.692 8.2232V27.098C115.692 27.3905 115.928 27.6276 116.219 27.6276H119.349C119.641 27.6276 119.877 27.3905 119.877 27.098V8.2232C119.877 7.93068 119.641 7.69354 119.349 7.69354Z\" fill=\"#212635\"/>\\n<path d=\"M133.696 0.160895C129.471 0.403335 126.372 3.38055 125.934 7.53909C125.915 7.71512 125.771 7.85101 125.594 7.85101H123.848C123.557 7.85101 123.32 8.08882 123.32 8.38067V11.0645C123.32 11.3563 123.557 11.5942 123.848 11.5942H125.534C125.723 11.5942 125.877 11.7486 125.877 11.9385V27.1288C125.877 27.4207 126.114 27.6585 126.404 27.6585H129.534C129.825 27.6585 130.062 27.4207 130.062 27.1288V11.9385C130.062 11.7486 130.215 11.5942 130.404 11.5942H133.73C134.02 11.5942 134.257 11.3563 134.257 11.0645V8.38067C134.257 8.08882 134.02 7.85101 133.73 7.85101H130.517C130.298 7.85101 130.134 7.64872 130.18 7.43408C130.614 5.39728 132.226 4.51863 133.773 4.37039C134.046 4.34413 134.259 4.12022 134.259 3.84381V0.690555C134.259 0.384803 134 0.142363 133.696 0.159349V0.160895Z\" fill=\"#212635\"/>\\n<path d=\"M40.4811 1.31287H37.3511C37.0599 1.31287 36.8238 1.55 36.8238 1.84253V4.8321C36.8238 5.12462 37.0599 5.36176 37.3511 5.36176H40.4811C40.7723 5.36176 41.0084 5.12462 41.0084 4.8321V1.84253C41.0084 1.55 40.7723 1.31287 40.4811 1.31287Z\" fill=\"#212635\"/>\\n<path d=\"M119.349 1.31287H116.219C115.928 1.31287 115.692 1.55 115.692 1.84253V4.8321C115.692 5.12462 115.928 5.36176 116.219 5.36176H119.349C119.641 5.36176 119.877 5.12462 119.877 4.8321V1.84253C119.877 1.55 119.641 1.31287 119.349 1.31287Z\" fill=\"#212635\"/>\\n<path d=\"M54.663 6.97085C49.3592 7.09284 45.1807 11.5818 45.1807 16.9109V18.4659C45.1807 23.8536 49.4499 28.3673 54.8137 28.409C56.6093 28.4229 58.2942 27.9442 59.7424 27.0995C60.0022 26.9482 60.3189 27.1736 60.2543 27.4686C59.5564 30.7114 56.68 31.6302 54.8875 31.6302C53.0949 31.6302 51.8928 31.1947 51.367 30.9276C51.1533 30.8195 50.8935 30.8766 50.7367 31.0588L48.6628 33.4755C48.4537 33.718 48.5045 34.0901 48.7735 34.2646C49.6406 34.8282 51.6422 35.8335 54.8875 35.8335C59.7116 35.8335 64.5958 32.4255 64.5958 25.9105V16.7194C64.5958 11.2668 60.1175 6.84577 54.6615 6.97085H54.663ZM60.4127 18.6574C60.4127 21.8847 57.6547 24.4775 54.3817 24.1825C51.5146 23.9246 49.3669 21.4138 49.3669 18.5215V16.8537C49.3669 13.9614 51.5146 11.4521 54.3817 11.1927C57.6547 10.8978 60.4127 13.4905 60.4127 16.7178V18.6558V18.6574Z\" fill=\"#212635\"/>\\n<path d=\"M18.837 24.987C20.1683 23.6081 20.837 21.735 20.7694 19.5684C20.6772 16.5804 19.0214 14.2425 16.2542 12.8882C16.1313 12.8187 16.0882 12.7462 16.0682 12.6844C16.0513 12.6304 16.0498 12.5377 16.142 12.425C17.4826 10.7696 18.0591 8.81309 17.8116 6.7454C17.3227 2.65327 13.733 -0.240559 9.45922 0.0157781C5.09627 0.278292 0 4.00908 0 13.6588V27.0841C0 27.3759 0.236751 27.6137 0.527307 27.6137L11.2364 27.6168C14.5463 27.6168 17.1751 26.7073 18.837 24.9855V24.987ZM4.22152 13.6603C4.22152 6.95696 7.17936 4.40131 9.71289 4.24843C11.467 4.14497 13.3717 5.14098 13.6239 7.2519C13.7392 8.21085 13.464 9.06325 12.7845 9.85542C11.9881 10.7835 10.8797 11.3209 10.2602 11.5077C10.0403 11.5741 9.89275 11.781 9.89275 12.0127V15.3034C9.89275 15.589 10.1172 15.8207 10.4001 15.833C12.1234 15.9056 16.4526 16.4167 16.5525 19.7012C16.5832 20.722 16.3403 21.4863 15.8069 22.0376C14.9721 22.9039 13.3487 23.3795 11.2364 23.3795H4.56281C4.37372 23.3795 4.21999 23.2251 4.21999 23.0352V13.6603H4.22152Z\" fill=\"#212635\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xCE2k.framer-a9tbor, .framer-xCE2k .framer-a9tbor { display: block; }\",\".framer-xCE2k.framer-djnnyu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 36px; justify-content: center; overflow: hidden; padding: var(--1wl1o74); position: relative; text-decoration: none; width: 158px; }\",\".framer-xCE2k .framer-vh3gof { aspect-ratio: 2.662768031189084 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; width: 200px; }\",\".framer-xCE2k .framer-wsf0h1 { aspect-ratio: 4.388888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 158px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xCE2k.framer-djnnyu { gap: 0px; } .framer-xCE2k.framer-djnnyu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xCE2k.framer-djnnyu > :first-child { margin-left: 0px; } .framer-xCE2k.framer-djnnyu > :last-child { margin-right: 0px; } }\",\".framer-xCE2k.framer-v-1lld8w8.framer-djnnyu, .framer-xCE2k.framer-v-18psfom.framer-djnnyu { height: 6px; padding: 16px; width: 105px; }\",\".framer-xCE2k.framer-v-1lld8w8 .framer-wsf0h1 { height: var(--framer-aspect-ratio-supported, 24px); width: 105px; }\",\".framer-xCE2k.framer-v-18psfom .framer-vh3gof { aspect-ratio: unset; height: 51px; width: 136px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 158\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"siG1vA0L6\":{\"layout\":[\"fixed\",\"fixed\"]},\"utLVhWC4P\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZmvAPrJYI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"DddLdco9_\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXfHXsaa7g=withCSS(Component,css,\"framer-xCE2k\");export default FramerXfHXsaa7g;FramerXfHXsaa7g.displayName=\"Brightlife-logo\";FramerXfHXsaa7g.defaultProps={height:36,width:158};addPropertyControls(FramerXfHXsaa7g,{variant:{options:[\"VCA3WD53z\",\"siG1vA0L6\",\"utLVhWC4P\",\"ZmvAPrJYI\"],optionTitles:[\"Black\",\"White\",\"Small_logo\",\"Small logo_white\"],title:\"Variant\",type:ControlType.Enum},DddLdco9_:{defaultValue:16,min:0,title:\"Padding\",type:ControlType.Number}});addFonts(FramerXfHXsaa7g,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXfHXsaa7g\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"DddLdco9_\\\":\\\"padding\\\"}\",\"framerIntrinsicWidth\":\"158\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"siG1vA0L6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"utLVhWC4P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZmvAPrJYI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XfHXsaa7g.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={aG3QnbTma:{hover:true},INrrXGlHj:{hover:true},qUCkwUmpt:{hover:true},U64z5QsLv:{hover:true}};const cycleOrder=[\"INrrXGlHj\",\"qUCkwUmpt\",\"U64z5QsLv\",\"aG3QnbTma\"];const serializationHash=\"framer-EqJ1a\";const variantClassNames={aG3QnbTma:\"framer-v-18nvrjb\",INrrXGlHj:\"framer-v-150tj7y\",qUCkwUmpt:\"framer-v-aobfrz\",U64z5QsLv:\"framer-v-1hlrrnv\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Main button\":\"INrrXGlHj\",\"Small tertiary\":\"aG3QnbTma\",Secondary:\"qUCkwUmpt\",Tertiary:\"U64z5QsLv\"};const getProps=({buttonText,height,id,link,tap,textColor,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,EGkOssZpm:(_ref=textColor!==null&&textColor!==void 0?textColor:props.EGkOssZpm)!==null&&_ref!==void 0?_ref:\"var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53))\",fsvcZXdsJ:(_ref1=buttonText!==null&&buttonText!==void 0?buttonText:props.fsvcZXdsJ)!==null&&_ref1!==void 0?_ref1:\"Aloita kokeilu\",qCEPj9wEO:link!==null&&link!==void 0?link:props.qCEPj9wEO,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"INrrXGlHj\",zq1nID8s4:tap!==null&&tap!==void 0?tap:props.zq1nID8s4};};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,fsvcZXdsJ,zq1nID8s4,qCEPj9wEO,EGkOssZpm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"INrrXGlHj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcgbzqc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zq1nID8s4){const res=await zq1nID8s4(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:qCEPj9wEO,...addPropertyOverrides({U64z5QsLv:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-150tj7y\",className,classNames)} framer-lf8olc`,\"data-framer-name\":\"Main button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"INrrXGlHj\",onTap:onTapcgbzqc,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-101386a9-8d3c-4e8a-941e-577bc579b5df, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"aG3QnbTma-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"INrrXGlHj-hover\":{backgroundColor:\"rgba(247, 118, 67, 0.8)\"},\"qUCkwUmpt-hover\":{backgroundColor:\"rgba(33, 38, 53, 0.05)\"},\"U64z5QsLv-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},aG3QnbTma:{backgroundColor:\"rgba(0, 0, 0, 0)\"},qUCkwUmpt:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},U64z5QsLv:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"aG3QnbTma-hover\":{\"data-framer-name\":undefined},\"INrrXGlHj-hover\":{\"data-framer-name\":undefined},\"qUCkwUmpt-hover\":{\"data-framer-name\":undefined},\"U64z5QsLv-hover\":{\"data-framer-name\":undefined},aG3QnbTma:{\"data-framer-name\":\"Small tertiary\"},qUCkwUmpt:{\"data-border\":true,\"data-framer-name\":\"Secondary\"},U64z5QsLv:{\"data-framer-name\":\"Tertiary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Aloita kokeilu\"})}),className:\"framer-pfl8ll\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"AUTaoLeh0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-EGkOssZpm-yKFNbVKY6\":EGkOssZpm},text:fsvcZXdsJ,variants:{\"aG3QnbTma-hover\":{\"--extracted-r6o4lv\":\"var(--token-59b06e8d-542e-4e2b-83b9-3a7308071dfa, rgb(100, 116, 139))\"},\"U64z5QsLv-hover\":{\"--extracted-r6o4lv\":\"rgb(115, 115, 115)\"},aG3QnbTma:{\"--extracted-r6o4lv\":\"var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53))\"},qUCkwUmpt:{\"--extracted-r6o4lv\":\"var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53))\"},U64z5QsLv:{\"--extracted-r6o4lv\":\"var(--variable-reference-EGkOssZpm-yKFNbVKY6)\",\"--variable-reference-EGkOssZpm-yKFNbVKY6\":EGkOssZpm}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aG3QnbTma-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-59b06e8d-542e-4e2b-83b9-3a7308071dfa, rgb(100, 116, 139)))\"},children:\"Aloita kokeilu\"})})},\"U64z5QsLv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 115, 115))\"},children:\"Aloita kokeilu\"})})},aG3QnbTma:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53)))\"},children:\"Aloita kokeilu\"})}),fonts:[\"GF;DM Sans-500\"]},qUCkwUmpt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53)))\"},children:\"Aloita kokeilu\"})}),fonts:[\"GF;DM Sans-500\"]},U64z5QsLv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-EGkOssZpm-yKFNbVKY6))\"},children:\"Aloita kokeilu\"})}),fonts:[\"GF;DM Sans-500\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EqJ1a.framer-lf8olc, .framer-EqJ1a .framer-lf8olc { display: block; }\",\".framer-EqJ1a.framer-150tj7y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-EqJ1a .framer-pfl8ll { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EqJ1a.framer-150tj7y { gap: 0px; } .framer-EqJ1a.framer-150tj7y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EqJ1a.framer-150tj7y > :first-child { margin-top: 0px; } .framer-EqJ1a.framer-150tj7y > :last-child { margin-bottom: 0px; } }\",\".framer-EqJ1a.framer-v-1hlrrnv.framer-150tj7y, .framer-EqJ1a.framer-v-18nvrjb.framer-150tj7y { padding: 12px 8px 12px 8px; }\",'.framer-EqJ1a[data-border=\"true\"]::after, .framer-EqJ1a [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 43\n * @framerIntrinsicWidth 137\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qUCkwUmpt\":{\"layout\":[\"auto\",\"auto\"]},\"U64z5QsLv\":{\"layout\":[\"auto\",\"auto\"]},\"aG3QnbTma\":{\"layout\":[\"auto\",\"auto\"]},\"GupQtCiov\":{\"layout\":[\"auto\",\"auto\"]},\"mFEStFAF_\":{\"layout\":[\"auto\",\"auto\"]},\"X1AwTt4GN\":{\"layout\":[\"auto\",\"auto\"]},\"AwWBkGTg8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"fsvcZXdsJ\":\"buttonText\",\"zq1nID8s4\":\"tap\",\"qCEPj9wEO\":\"link\",\"EGkOssZpm\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryKFNbVKY6=withCSS(Component,css,\"framer-EqJ1a\");export default FrameryKFNbVKY6;FrameryKFNbVKY6.displayName=\"Button\";FrameryKFNbVKY6.defaultProps={height:43,width:137};addPropertyControls(FrameryKFNbVKY6,{variant:{options:[\"INrrXGlHj\",\"qUCkwUmpt\",\"U64z5QsLv\",\"aG3QnbTma\"],optionTitles:[\"Main button\",\"Secondary\",\"Tertiary\",\"Small tertiary\"],title:\"Variant\",type:ControlType.Enum},fsvcZXdsJ:{defaultValue:\"Aloita kokeilu\",displayTextArea:false,title:\"Button text\",type:ControlType.String},zq1nID8s4:{title:\"Tap\",type:ControlType.EventHandler},qCEPj9wEO:{title:\"Link\",type:ControlType.Link},EGkOssZpm:{defaultValue:\"var(--token-02bdcbd8-e5ca-4a76-9b58-47849602e11e, rgb(33, 38, 53))\",title:\"Text color\",type:ControlType.Color}});addFonts(FrameryKFNbVKY6,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryKFNbVKY6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"137\",\"framerIntrinsicHeight\":\"43\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qUCkwUmpt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"U64z5QsLv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aG3QnbTma\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GupQtCiov\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mFEStFAF_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X1AwTt4GN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AwWBkGTg8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"fsvcZXdsJ\\\":\\\"buttonText\\\",\\\"zq1nID8s4\\\":\\\"tap\\\",\\\"qCEPj9wEO\\\":\\\"link\\\",\\\"EGkOssZpm\\\":\\\"textColor\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yKFNbVKY6.map"],
  "mappings": "8OAEO,IAAMA,GAAkB,CAC3B,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASA,IAAMC,GAAkB,CACpB,GAAGC,GACH,aAAc,EACd,WAAY,2BACZ,OAAQ,uCACR,MAAO,UACP,cAAe,QACnB,EACaC,GAAgCC,EAAW,CAACC,EAAGC,IACnCC,EAAK,MAAO,CAC7B,MAAON,GACP,IAAKK,CACT,CAAC,CACJ,EC9BD,IAAIE,EAAMC,GAAEC,GAAG,CAAC,GAAG,CAACF,EAAE,CAAC,IAAMG,EAAED,EAAE,WAAW,CAAC,CAAC,MAAME,EAAE,eAAe,KAAKC,EAAE,GAAG,GAAGC,CAAC,EAAEC,IAAIL,EAAE,cAAc,MAAM,CAAC,IAAIK,EAAE,MAAM,6BAA6B,MAAMF,EAAE,OAAOA,EAAE,QAAQ,YAAY,KAAK,OAAO,OAAOD,EAAE,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAQ,GAAGE,CAAC,EAAEJ,EAAE,cAAc,OAAO,CAAC,EAAE,gDAAgD,CAAC,EAAEA,EAAE,cAAc,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAC,CAAC,EAAEC,EAAE,YAAY,OAAOH,EAAEG,CAAC,CAAC,OAAOH,CAAC,ECInU,IAAMQ,GAAc,CAAC,QAAQ,CAAC,KAAKC,EAAY,YAAY,EAAE,YAAY,CAAC,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,EAAQC,GAAY,CAACC,EAAIC,IAASD,EAAI,KAAK,GAAG,EAAE,YAAY,EAAE,SAASC,CAAM,CAAC,EAG7P,SAASC,GAAiBC,EAASC,EAAaC,EAAW,GAAGC,EAAcC,EAAsB,CAC/R,IAAMC,EAAiBC,EAAQ,IAAI,CAAC,GAAGJ,GAAY,MAAqDA,GAAW,SAAU,EAAE,OAAO,KAAK,IAAMK,EAAeL,EAAW,YAAY,EAAE,QAAQ,QAAQ,EAAE,EAAE,IAAIM,EAChD,OAA7IA,EAAgBJ,EAAsBG,CAAc,KAAK,MAAMC,IAAkB,OAAOA,EAAgBC,GAAYT,EAASO,CAAc,CAAsB,EAAE,CAACJ,EAAcD,CAAU,CAAC,EAAyD,OAA5CD,EAAaE,EAAcE,CAA6B,CCTiM,IAAMK,EAAS,CAAC,WAAW,UAAU,eAAe,gBAAgB,iBAAiB,eAAe,gBAAgB,aAAa,cAAc,SAAS,WAAW,UAAU,aAAa,oBAAoB,kBAAkB,mBAAmB,aAAa,oBAAoB,cAAc,qBAAqB,WAAW,kBAAkB,gBAAgB,iBAAiB,UAAU,QAAQ,YAAY,cAAc,UAAU,mBAAmB,OAAO,WAAW,YAAY,OAAO,OAAO,YAAY,WAAW,MAAM,YAAY,WAAW,SAAS,aAAa,OAAO,QAAQ,eAAe,eAAe,eAAe,eAAe,gBAAgB,aAAa,gBAAgB,gBAAgB,iBAAiB,cAAc,SAAS,SAAS,YAAY,QAAQ,QAAQ,gBAAgB,kBAAkB,YAAY,aAAa,aAAa,OAAO,UAAU,cAAc,SAAS,UAAU,UAAU,UAAU,OAAO,mBAAmB,oBAAoB,mBAAmB,iBAAiB,oBAAoB,kBAAkB,iBAAiB,kBAAkB,MAAM,cAAc,OAAO,YAAY,WAAW,SAAS,OAAO,SAAS,gBAAgB,gBAAgB,cAAc,WAAW,iBAAiB,WAAW,UAAU,OAAO,SAAS,SAAS,gBAAgB,MAAM,UAAU,WAAW,eAAe,UAAU,QAAQ,OAAO,aAAa,YAAY,YAAY,OAAO,SAAS,OAAO,SAAS,eAAe,cAAc,SAAS,QAAQ,OAAO,aAAa,aAAa,YAAY,mBAAmB,SAAS,SAAS,QAAQ,OAAO,aAAa,OAAO,aAAa,QAAQ,cAAc,UAAU,OAAO,QAAQ,QAAQ,OAAO,YAAY,SAAS,MAAM,SAAS,SAAS,YAAY,OAAO,SAAS,WAAW,OAAO,SAAS,OAAO,SAAS,UAAU,OAAO,MAAM,UAAU,WAAW,aAAa,MAAM,OAAO,iBAAiB,iBAAiB,MAAM,UAAU,WAAW,aAAa,QAAQ,eAAe,eAAe,UAAU,OAAO,kBAAkB,gBAAgB,gBAAgB,OAAO,QAAQ,aAAa,eAAe,UAAU,UAAU,YAAY,QAAQ,eAAe,WAAW,UAAU,QAAQ,aAAa,kBAAkB,iBAAiB,eAAe,YAAY,iBAAiB,YAAY,OAAO,cAAc,OAAO,cAAc,cAAc,SAAS,QAAQ,UAAU,QAAQ,cAAc,aAAa,SAAS,SAAS,aAAa,YAAY,MAAM,OAAO,WAAW,SAAS,OAAO,SAAS,WAAW,QAAQ,UAAU,SAAS,aAAa,eAAe,gBAAgB,UAAU,UAAU,YAAY,eAAe,QAAQ,QAAQ,UAAU,aAAa,QAAQ,UAAU,SAAS,OAAO,cAAc,MAAM,UAAU,SAAS,SAAS,MAAM,SAAS,WAAW,cAAc,cAAc,YAAY,cAAc,eAAe,OAAO,QAAQ,UAAU,SAAS,gBAAgB,cAAc,WAAW,QAAQ,KAAK,SAAS,UAAU,OAAO,WAAW,YAAY,SAAS,SAAS,eAAe,OAAO,aAAa,aAAa,YAAY,SAAS,QAAQ,QAAQ,YAAY,YAAY,SAAS,WAAW,WAAW,WAAW,QAAQ,OAAO,WAAW,OAAO,IAAI,WAAW,YAAY,WAAW,UAAU,MAAM,UAAU,UAAU,UAAW,EAAQC,GAAc,sCAA4CC,GAAkBF,EAAS,IAAIG,GAAMA,EAAK,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAK,MAAM,CAAC,CAAC,EAAQC,GAAsBJ,EAAS,OAAO,CAACK,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQn2H,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,CAAQ,EAAEV,EAAYW,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBtB,EAASU,EAAaC,EAAWC,EAAcR,EAAqB,EACtR,CAACmB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAYC,CAAK,EAAE,IAAI,EACrF,eAAeC,GAAc,CAAC,IAAIC,EAAO,GACzC,GAAG,CAA4D,IAAMC,EAAO,MAAM,OAA1D,GAAG7B,EAAa,GAAGoB,CAAO,cAC/CQ,GAAOL,EAAgBM,EAAO,QAAQH,CAAK,CAAC,CAAE,OAAOI,EAAE,CAAC,QAAQ,IAAIA,CAAC,EAAKF,GAAOL,EAAgB,IAAI,CAAE,CAAC,MAAM,IAAI,CAACK,EAAO,EAAM,CAAE,CACrIG,GAAU,IAAI,CAACJ,EAAa,CAAE,EAAE,CAACP,CAAO,CAAC,EAAgE,IAAMY,EAAnDC,EAAa,QAAQ,IAAIA,EAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAtB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASQ,EAA2BY,EAAKZ,EAAa,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUL,EAAS,eAAe,MAAS,EAAE,MAAMT,CAAK,CAAC,EAAEwB,CAAU,CAAC,CAAE,CAAC1B,EAAK,YAAY,UAAUA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,SAAS,EAAK,EAAE8B,EAAoB9B,EAAK,CAAC,aAAa,CAAC,KAAK+B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa/B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK+B,EAAY,KAAK,QAAQtC,EAAS,aAAaE,GAAkB,aAAaK,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,uEAAuE,EAAE,WAAW,CAAC,KAAK4B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA5B,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAK4B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa/B,EAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK+B,EAAY,MAAM,MAAM,QAAQ,aAAa/B,EAAK,aAAa,KAAK,EAAE,GAAGgC,EAAa,CAAC,ECZ5jC,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWP,GAAmCI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,MAAM,YAAY,WAAW,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAyCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAG,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,EAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBrB,GAAuBJ,EAAMxB,CAAQ,EAAQkD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASb,CAAW,EAAmCc,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAK8C,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,SAAsBC,GAAM7C,EAAO,EAAE,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAU,GAAGmB,EAAGlE,GAAkB,GAAG4D,GAAsB,gBAAgBpB,EAAUK,CAAU,CAAC,iBAAiB,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,YAAY/C,GAAoBmC,CAAS,EAAE,GAAGH,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBtC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBd,EAAiB,SAAS,YAAY,IAAI,2rHAA2rH,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBvC,EAAKiD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBd,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA81M,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,gFAAgF,0RAA0R,0KAA0K,0KAA0K,yWAAyW,2IAA2I,sHAAsH,oGAAoG,EAS5qfC,EAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,kBAAkBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,QAAQ,aAAa,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,EAAE,MAAM,UAAU,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT1Q,IAAMM,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,cAAc,YAAY,iBAAiB,YAAY,UAAU,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,IAAAC,EAAI,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKH,GAA+CE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,qEAAqE,WAAWC,EAAMT,GAAkDO,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,iBAAiB,UAAUN,GAAgCI,EAAM,UAAU,SAASI,GAAOD,EAAuCZ,GAAwBS,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,UAAUP,GAA6BG,EAAM,SAAS,CAAE,EAAQK,GAAuB,CAACL,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE3B,GAASQ,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,EAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiBxB,GAAuBL,EAAM1B,CAAQ,EAAO,CAAC,sBAAAwD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKV,GAAqB,MAAMA,EAAU,GAAGkB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBtD,EAAKuD,EAAY,CAAC,GAAG5B,GAA4CuB,GAAgB,SAAsBlD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKwD,EAAK,CAAC,KAAK1B,EAAU,GAAG7C,GAAqB,CAAC,UAAU,CAAC,aAAa,EAAI,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAsBrC,EAAKE,EAAO,EAAE,CAAC,GAAG8B,EAAU,GAAGI,EAAgB,UAAU,GAAGqB,EAAG1E,GAAkB,GAAGqE,GAAsB,iBAAiB1B,EAAUQ,CAAU,CAAC,iBAAiB,mBAAmB,cAAc,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAY,IAAIzB,GAA6B2B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGvB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,kBAAkB,CAAC,gBAAgB,yBAAyB,EAAE,kBAAkB,CAAC,gBAAgB,wBAAwB,EAAE,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGxC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAsBrC,EAAK0D,GAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBwC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CX,CAAS,EAAE,KAAKH,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,gDAAgD,2CAA2CG,CAAS,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,wEAAwE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAE+B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,gFAAgF,gTAAgT,gHAAgH,+WAA+W,+HAA+H,+bAA+b,EAS7kUC,EAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,SAASA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,cAAc,YAAY,WAAW,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,qEAAqE,MAAM,aAAa,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "i", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DddLdco9_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "css", "FramerXfHXsaa7g", "withCSS", "XfHXsaa7g_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "link", "tap", "textColor", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fsvcZXdsJ", "zq1nID8s4", "qCEPj9wEO", "EGkOssZpm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcgbzqc", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FrameryKFNbVKY6", "withCSS", "yKFNbVKY6_default", "addPropertyControls", "ControlType", "addFonts"]
}
