{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/p25riRqeTyqpHL5QQn6y/c1Wj4C4zdWNpL267jULV/DjIJkkL4v.js", "ssg:https://framerusercontent.com/modules/yg4gh80o5WGiFsichDJg/ITZOpeZzYihs8aDFJAmp/EcmaHLmdO.js", "ssg:https://framerusercontent.com/modules/0upfBYVKvOJJQPn8jILS/LS6OnRvJWUPCF1l52aAr/GBSqkZRNF.js", "ssg:https://framerusercontent.com/modules/WPcm7MwPDcftXYtKEc7S/WbIUMOIaWvGTyIzuyIH4/OgUygA0MZ.js", "ssg:https://framerusercontent.com/modules/zrN8JPn2YpvPertdIidn/GrOhShbSiT2CzBcc7Bmm/wu0WDLIY6.js", "ssg:https://framerusercontent.com/modules/H2W9BD15benyfg4vXzKA/uu602WNQ3BkKUREzNqd2/yD8lpVsh7.js", "ssg:https://framerusercontent.com/modules/DbOJ1KjpOkv6CGWWSef9/4spHTGh2GgDT3cErhPN2/gE0jWp4sC.js", "ssg:https://framerusercontent.com/modules/ZLZr0DMtUGAk5CRFhCp1/9lXbzXilCzn5Z42je4fB/mJuVHSb7J.js", "ssg:https://framerusercontent.com/modules/ZAspcyiEzblvzn7FQ6lW/abcGdS7gGxQE3Eqz7IbZ/QMHMZ3vN9.js", "ssg:https://framerusercontent.com/modules/IGFn8Ox078McH34371UL/qRtTkI1mXTrt2U9va0x9/MSDOe8gk7-0.js", "ssg:https://framerusercontent.com/modules/IGFn8Ox078McH34371UL/qRtTkI1mXTrt2U9va0x9/MSDOe8gk7.js", "ssg:https://framerusercontent.com/modules/9t6Ar8xxvg0iEnHvOYxV/ZUsKMGNJhlLrqcgUcn0H/HjfFKgF29.js", "ssg:https://framerusercontent.com/modules/o1e58yNfyHm5g2gIjbcL/fKLo0YsIFaCjYyNBlF9e/qAi0vB1i0.js", "ssg:https://framerusercontent.com/modules/HUuFUwotadMO5qx4S4qo/ovCxmfa5eaFVtABpIE4g/MSDOe8gk7.js", "ssg:https://framerusercontent.com/modules/9pzczYy2lnfeeambvQbr/JOhHEGk20JQrjMifLHBZ/ncCYm9pn2.js", "ssg:https://framerusercontent.com/modules/buiUXPT4glQYdLQ6RBWB/nvUWVBu0Lf4fIOlLaBPH/Pommrpwdl.js"],
  "sourcesContent": ["import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"aj62_aP5S\",\"CiEwCBK10\"];const serializationHash=\"framer-LnZnL\";const variantClassNames={aj62_aP5S:\"framer-v-1k0dtbg\",CiEwCBK10:\"framer-v-18qmfwc\"};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 humanReadableVariantMap={Orange:\"aj62_aP5S\",White:\"CiEwCBK10\"};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:\"aj62_aP5S\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aj62_aP5S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"CiEwCBK10\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"CiEwCBK10\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k0dtbg\",className,classNames),\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"aj62_aP5S\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CiEwCBK10:{\"data-framer-name\":\"White\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ebsnk\",\"data-framer-name\":\"Guestrix Symbol - Orange\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"hUDOIKjHs\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"50\" fill=\"#FD5F21\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.018 20c12.827 0 23.768 8.038 28.067 19.34l-9.396 3.564-5.018 1.907-8.87 3.372-6.826 2.596 12.087 4.588 3.032 1.152c-2.399 4.788-7.346 8.08-13.07 8.08-8.064 0-14.606-6.536-14.606-14.596 0-8.059 6.542-14.596 14.607-14.596 6.243 0 11.56 3.912 13.653 9.41C64.19 44.91 80 51.562 80 51.562 79.189 67.403 66.077 80 50.018 80 33.439 80 20 66.57 20 50.004 19.993 33.43 33.432 20 50.018 20Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10l32tt\",\"data-framer-name\":\"Guestrix Symbol - White\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"fXM7VQjyv\",svg:'<svg width=\"100\" height=\"100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"50\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.018 20c12.827 0 23.768 8.038 28.067 19.34l-9.396 3.564-5.018 1.907-8.87 3.372-6.826 2.596 12.087 4.588 3.032 1.152c-2.399 4.788-7.346 8.08-13.07 8.08-8.064 0-14.606-6.536-14.606-14.596 0-8.059 6.542-14.596 14.607-14.596 6.243 0 11.56 3.912 13.653 9.41C64.19 44.91 80 51.562 80 51.562 79.189 67.403 66.077 80 50.018 80 33.439 80 20 66.57 20 50.004 19.993 33.43 33.432 20 50.018 20Z\" fill=\"#FD5F21\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LnZnL.framer-t316m6, .framer-LnZnL .framer-t316m6 { display: block; }\",\".framer-LnZnL.framer-1k0dtbg { height: 100px; overflow: hidden; position: relative; width: 100px; }\",\".framer-LnZnL .framer-1ebsnk, .framer-LnZnL .framer-10l32tt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CiEwCBK10\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDjIJkkL4v=withCSS(Component,css,\"framer-LnZnL\");export default FramerDjIJkkL4v;FramerDjIJkkL4v.displayName=\"Guestrix Symbol\";FramerDjIJkkL4v.defaultProps={height:100,width:100};addPropertyControls(FramerDjIJkkL4v,{variant:{options:[\"aj62_aP5S\",\"CiEwCBK10\"],optionTitles:[\"Orange\",\"White\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDjIJkkL4v,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDjIJkkL4v\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CiEwCBK10\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"100\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DjIJkkL4v.map", "// Generated by Framer (d5ca742)\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={boTPt5Nyt:{hover:true},GnO87_RUR:{hover:true},qFULgLaxK:{hover:true},Trsmx3F70:{hover:true}};const cycleOrder=[\"Trsmx3F70\",\"GnO87_RUR\",\"boTPt5Nyt\",\"qFULgLaxK\"];const serializationHash=\"framer-nEyGa\";const variantClassNames={boTPt5Nyt:\"framer-v-cd9uf2\",GnO87_RUR:\"framer-v-6cr98x\",qFULgLaxK:\"framer-v-17hhpv7\",Trsmx3F70:\"framer-v-1kv9zn6\"};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:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Brand Primary Orange\":\"Trsmx3F70\",\"Brand Secondary\":\"GnO87_RUR\",\"Brand Tertiary\":\"boTPt5Nyt\",\"White Borderless\":\"qFULgLaxK\"};const getProps=({buttonText,click,height,id,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,A3HyQUsOA:link!==null&&link!==void 0?link:props.A3HyQUsOA,AloqqAYf6:click!==null&&click!==void 0?click:props.AloqqAYf6,hLDM42SwN:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.hLDM42SwN)!==null&&_ref!==void 0?_ref:\"Button\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Trsmx3F70\"};};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,hLDM42SwN,A3HyQUsOA,AloqqAYf6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Trsmx3F70\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1oqq4ju=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(AloqqAYf6){const res=await AloqqAYf6(...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:A3HyQUsOA,nodeId:\"Trsmx3F70\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1kv9zn6\",className,classNames)} framer-9fym9a`,\"data-framer-name\":\"Brand Primary Orange\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Trsmx3F70\",onTap:onTap1oqq4ju,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:\"rgb(253, 95, 33)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"boTPt5Nyt-hover\":{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},\"GnO87_RUR-hover\":{\"--border-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},\"qFULgLaxK-hover\":{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},\"Trsmx3F70-hover\":{backgroundColor:\"rgb(254, 131, 82)\"},boTPt5Nyt:{backgroundColor:\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\"},GnO87_RUR:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(108, 114, 133, 0.25)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"},qFULgLaxK:{backgroundColor:\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"boTPt5Nyt-hover\":{\"data-framer-name\":undefined},\"GnO87_RUR-hover\":{\"data-framer-name\":undefined},\"qFULgLaxK-hover\":{\"data-framer-name\":undefined},\"Trsmx3F70-hover\":{\"data-framer-name\":undefined},boTPt5Nyt:{\"data-framer-name\":\"Brand Tertiary\"},GnO87_RUR:{\"data-border\":true,\"data-framer-name\":\"Brand Secondary\"},qFULgLaxK:{\"data-framer-name\":\"White Borderless\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Button\"})}),className:\"framer-1ibz5ra\",fonts:[\"GF;IBM Plex Sans-600\"],layoutDependency:layoutDependency,layoutId:\"Q5hA2tvYJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hLDM42SwN,variants:{\"qFULgLaxK-hover\":{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"},GnO87_RUR:{\"--extracted-r6o4lv\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},qFULgLaxK:{\"--extracted-r6o4lv\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"qFULgLaxK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Button\"})})},GnO87_RUR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133)))\"},children:\"Button\"})})},qFULgLaxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133)))\"},children:\"Button\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nEyGa.framer-9fym9a, .framer-nEyGa .framer-9fym9a { display: block; }\",\".framer-nEyGa.framer-1kv9zn6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 42px; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-nEyGa .framer-1ibz5ra { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nEyGa.framer-1kv9zn6 { gap: 0px; } .framer-nEyGa.framer-1kv9zn6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nEyGa.framer-1kv9zn6 > :first-child { margin-top: 0px; } .framer-nEyGa.framer-1kv9zn6 > :last-child { margin-bottom: 0px; } }\",'.framer-nEyGa[data-border=\"true\"]::after, .framer-nEyGa [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 42\n * @framerIntrinsicWidth 82.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"GnO87_RUR\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"boTPt5Nyt\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"qFULgLaxK\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"Mz6N89_oa\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"BGpAbOoLx\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"tPbJqjxHN\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]},\"LWFusS_Kr\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,null,\"42px\",null]}}}\n * @framerVariables {\"hLDM42SwN\":\"buttonText\",\"A3HyQUsOA\":\"link\",\"AloqqAYf6\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEcmaHLmdO=withCSS(Component,css,\"framer-nEyGa\");export default FramerEcmaHLmdO;FramerEcmaHLmdO.displayName=\"Button V2\";FramerEcmaHLmdO.defaultProps={height:42,width:82.5};addPropertyControls(FramerEcmaHLmdO,{variant:{options:[\"Trsmx3F70\",\"GnO87_RUR\",\"boTPt5Nyt\",\"qFULgLaxK\"],optionTitles:[\"Brand Primary Orange\",\"Brand Secondary\",\"Brand Tertiary\",\"White Borderless\"],title:\"Variant\",type:ControlType.Enum},hLDM42SwN:{defaultValue:\"Button\",displayTextArea:false,title:\"Button text\",type:ControlType.String},A3HyQUsOA:{title:\"Link\",type:ControlType.Link},AloqqAYf6:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerEcmaHLmdO,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MINmdd_qFmo.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEcmaHLmdO\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hLDM42SwN\\\":\\\"buttonText\\\",\\\"A3HyQUsOA\\\":\\\"link\\\",\\\"AloqqAYf6\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"GnO87_RUR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"boTPt5Nyt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"qFULgLaxK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"Mz6N89_oa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"BGpAbOoLx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"tPbJqjxHN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]},\\\"LWFusS_Kr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"42px\\\",null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"82.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EcmaHLmdO.map", "// Generated by Framer (ff86393)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;IBM Plex Sans-700\",\"GF;IBM Plex Sans-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MINmdd_qFmo.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINsdP3vBmpl8A.woff2\",weight:\"700\"}]}];export const css=[\".framer-0uqyv .framer-styles-preset-1x71mel:not(.rich-text-wrapper), .framer-0uqyv .framer-styles-preset-1x71mel.rich-text-wrapper h4 { --framer-font-family: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-08a8d118-a948-4988-b372-996d93f401e2, #081235); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 800px) { .framer-0uqyv .framer-styles-preset-1x71mel:not(.rich-text-wrapper), .framer-0uqyv .framer-styles-preset-1x71mel.rich-text-wrapper h4 { --framer-font-family: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-08a8d118-a948-4988-b372-996d93f401e2, #081235); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 799px) and (min-width: 0px) { .framer-0uqyv .framer-styles-preset-1x71mel:not(.rich-text-wrapper), .framer-0uqyv .framer-styles-preset-1x71mel.rich-text-wrapper h4 { --framer-font-family: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-family-italic: \\\"IBM Plex Sans\\\", \\\"IBM Plex Sans Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.03em; --framer-line-height: 125%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-08a8d118-a948-4988-b372-996d93f401e2, #081235); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-0uqyv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-fqKi4 .framer-styles-preset-1cnul82:not(.rich-text-wrapper), .framer-fqKi4 .framer-styles-preset-1cnul82.rich-text-wrapper a { --framer-link-current-text-color: var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, #ffffff) /* {\"name\":\"White\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, #ffffff) /* {\"name\":\"White\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, #ffffff); --framer-link-text-decoration: underline; }'];export const className=\"framer-fqKi4\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;IBM Plex Sans-regular\",\"GF;IBM Plex Sans-700\",\"GF;IBM Plex Sans-700italic\",\"GF;IBM Plex Sans-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdPUFI5NadY.woff2\",weight:\"400\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MINmdd_qFmo.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINsdP3vBmpl8A.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX-KVElMYYaJe8bpLHnCwDKhdTeFaxIedbzDw.woff2\",weight:\"400\"}]}];export const css=['.framer-K4rqJ .framer-styles-preset-1926udv:not(.rich-text-wrapper), .framer-K4rqJ .framer-styles-preset-1926udv.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --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: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #6c7285; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-K4rqJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;IBM Plex Sans-600\",\"GF;IBM Plex Sans-700\",\"GF;IBM Plex Sans-700italic\",\"GF;IBM Plex Sans-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MINmdd_qFmo.woff2\",weight:\"600\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjWr7MINmdd_qFmo.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINsdP3vBmpl8A.woff2\",weight:\"700\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJsdP3vBmpl8A.woff2\",weight:\"600\"}]}];export const css=['.framer-lX8G1 .framer-styles-preset-cdu1nz:not(.rich-text-wrapper), .framer-lX8G1 .framer-styles-preset-cdu1nz.rich-text-wrapper p { --framer-font-family: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-family-italic: \"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --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: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #6c7285; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-lX8G1\";\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 (d5ca742)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/H2W9BD15benyfg4vXzKA/uu602WNQ3BkKUREzNqd2/yD8lpVsh7.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={exGWJi53f:{hover:true,pressed:true}};const cycleOrder=[\"exGWJi53f\",\"DZRagrqpH\",\"BbjSfDrHp\",\"YSSd4DiLZ\",\"P1vG2T57D\"];const serializationHash=\"framer-6W53Z\";const variantClassNames={BbjSfDrHp:\"framer-v-pcvzw0\",DZRagrqpH:\"framer-v-x4r5je\",exGWJi53f:\"framer-v-dspf3f\",P1vG2T57D:\"framer-v-whftzu\",YSSd4DiLZ:\"framer-v-1ibxcr9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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.create(React.Fragment);const humanReadableVariantMap={Default:\"exGWJi53f\",Disabled:\"BbjSfDrHp\",Error:\"P1vG2T57D\",Loading:\"DZRagrqpH\",Success:\"YSSd4DiLZ\"};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:\"exGWJi53f\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"exGWJi53f\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"DZRagrqpH\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"DZRagrqpH\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dspf3f\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"exGWJi53f\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"exGWJi53f-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\"},\"exGWJi53f-pressed\":{backgroundColor:\"rgb(51, 51, 51)\"},BbjSfDrHp:{opacity:.5},P1vG2T57D:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"exGWJi53f-hover\":{\"data-framer-name\":undefined},\"exGWJi53f-pressed\":{\"data-framer-name\":undefined},BbjSfDrHp:{\"data-framer-name\":\"Disabled\"},DZRagrqpH:{\"data-framer-name\":\"Loading\"},P1vG2T57D:{\"data-framer-name\":\"Error\"},YSSd4DiLZ:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cdu1nz\",\"data-styles-preset\":\"yD8lpVsh7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Skicka\"})}),className:\"framer-hsvdcz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DLRdPkSkv\",style:{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{P1vG2T57D:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"},YSSd4DiLZ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P1vG2T57D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},YSSd4DiLZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Tack!\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-tp31uw\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"nWOisQ_An\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-zvz6no\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"SFKrOVU9F\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{DZRagrqpH:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uorv7m\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"IFLUjTNim\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6W53Z.framer-106gpx8, .framer-6W53Z .framer-106gpx8 { display: block; }\",\".framer-6W53Z.framer-dspf3f { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-6W53Z .framer-hsvdcz { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-6W53Z .framer-tp31uw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-6W53Z .framer-zvz6no { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-6W53Z .framer-1uorv7m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6W53Z.framer-dspf3f { gap: 0px; } .framer-6W53Z.framer-dspf3f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6W53Z.framer-dspf3f > :first-child { margin-left: 0px; } .framer-6W53Z.framer-dspf3f > :last-child { margin-right: 0px; } }\",\".framer-6W53Z.framer-v-x4r5je.framer-dspf3f, .framer-6W53Z.framer-v-pcvzw0.framer-dspf3f, .framer-6W53Z.framer-v-1ibxcr9.framer-dspf3f, .framer-6W53Z.framer-v-whftzu.framer-dspf3f { cursor: unset; }\",\".framer-6W53Z.framer-v-x4r5je .framer-zvz6no { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DZRagrqpH\":{\"layout\":[\"fixed\",\"fixed\"]},\"BbjSfDrHp\":{\"layout\":[\"fixed\",\"fixed\"]},\"YSSd4DiLZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"P1vG2T57D\":{\"layout\":[\"fixed\",\"fixed\"]},\"jQJFOHm0u\":{\"layout\":[\"fixed\",\"fixed\"]},\"TcgTaHkUT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergE0jWp4sC=withCSS(Component,css,\"framer-6W53Z\");export default FramergE0jWp4sC;FramergE0jWp4sC.displayName=\"Button 2\";FramergE0jWp4sC.defaultProps={height:40,width:240};addPropertyControls(FramergE0jWp4sC,{variant:{options:[\"exGWJi53f\",\"DZRagrqpH\",\"BbjSfDrHp\",\"YSSd4DiLZ\",\"P1vG2T57D\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergE0jWp4sC,[{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/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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergE0jWp4sC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DZRagrqpH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BbjSfDrHp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YSSd4DiLZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P1vG2T57D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jQJFOHm0u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TcgTaHkUT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gE0jWp4sC.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/H2W9BD15benyfg4vXzKA/uu602WNQ3BkKUREzNqd2/yD8lpVsh7.js\";import Button2 from\"https://framerusercontent.com/modules/DbOJ1KjpOkv6CGWWSef9/4spHTGh2GgDT3cErhPN2/gE0jWp4sC.js\";const Button2Fonts=getFonts(Button2);const serializationHash=\"framer-T5ux5\";const variantClassNames={unx52uGJI:\"framer-v-1a70u6a\"};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 formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};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,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"unx52uGJI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/b20dd315-da21-488a-a076-a7a79c973f49/submit\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1a70u6a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"unx52uGJI\",redirectUrl:{webPageId:\"FUm07bsj1\"},ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cdu1nz\",\"data-styles-preset\":\"yD8lpVsh7\",children:\"Fyll i formul\\xe4ret s\\xe5 kontaktar vi dig!\"})}),className:\"framer-1uv7vxe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nT3Njs7cV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1ezloob\",layoutDependency:layoutDependency,layoutId:\"xkV5DQdsv\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-17chcrm\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"ILNhP_dFP\",placeholder:\"Namn\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},type:\"text\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-snndn1\",layoutDependency:layoutDependency,layoutId:\"pVyDCpSuJ\",children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-17v7p9f\",layoutDependency:layoutDependency,layoutId:\"oWnKAqYJw\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-skzuoh\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"PBXlS8faT\",placeholder:\"E-post\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},type:\"text\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-hq9zt5\",layoutDependency:layoutDependency,layoutId:\"aoKK6rqCu\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1bg2h6a\",inputName:\"Phone\",layoutDependency:layoutDependency,layoutId:\"MghH_uiEa\",placeholder:\"Telefon\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},type:\"tel\"})})]}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-10g386h\",layoutDependency:layoutDependency,layoutId:\"IZKzCaqch\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1d34iif\",inputName:\"Message\",layoutDependency:layoutDependency,layoutId:\"VZtRiqCxO\",placeholder:\"Ev. meddelande\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},type:\"textarea\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17vvh3b-container\",layoutDependency:layoutDependency,layoutId:\"lsPcBu7AS-container\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"lsPcBu7AS\",layoutId:\"lsPcBu7AS\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"DZRagrqpH\",success:\"YSSd4DiLZ\"},\"exGWJi53f\"),width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T5ux5.framer-1ei3vhz, .framer-T5ux5 .framer-1ei3vhz { display: block; }\",\".framer-T5ux5.framer-1a70u6a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 340px; }\",\".framer-T5ux5 .framer-1uv7vxe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-T5ux5 .framer-1ezloob, .framer-T5ux5 .framer-10g386h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-T5ux5 .framer-17chcrm, .framer-T5ux5 .framer-skzuoh, .framer-T5ux5 .framer-1bg2h6a { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"IBM Plex Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-T5ux5 .framer-snndn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-T5ux5 .framer-17v7p9f, .framer-T5ux5 .framer-hq9zt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-T5ux5 .framer-1d34iif { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"IBM Plex Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-T5ux5 .framer-17vvh3b-container { flex: none; height: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T5ux5.framer-1a70u6a, .framer-T5ux5 .framer-1ezloob, .framer-T5ux5 .framer-snndn1, .framer-T5ux5 .framer-17v7p9f, .framer-T5ux5 .framer-hq9zt5, .framer-T5ux5 .framer-10g386h { gap: 0px; } .framer-T5ux5.framer-1a70u6a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-T5ux5.framer-1a70u6a > :first-child, .framer-T5ux5 .framer-1ezloob > :first-child, .framer-T5ux5 .framer-17v7p9f > :first-child, .framer-T5ux5 .framer-hq9zt5 > :first-child, .framer-T5ux5 .framer-10g386h > :first-child { margin-top: 0px; } .framer-T5ux5.framer-1a70u6a > :last-child, .framer-T5ux5 .framer-1ezloob > :last-child, .framer-T5ux5 .framer-17v7p9f > :last-child, .framer-T5ux5 .framer-hq9zt5 > :last-child, .framer-T5ux5 .framer-10g386h > :last-child { margin-bottom: 0px; } .framer-T5ux5 .framer-1ezloob > *, .framer-T5ux5 .framer-17v7p9f > *, .framer-T5ux5 .framer-hq9zt5 > *, .framer-T5ux5 .framer-10g386h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-T5ux5 .framer-snndn1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-T5ux5 .framer-snndn1 > :first-child { margin-left: 0px; } .framer-T5ux5 .framer-snndn1 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 364\n * @framerIntrinsicWidth 340\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermJuVHSb7J=withCSS(Component,css,\"framer-T5ux5\");export default FramermJuVHSb7J;FramermJuVHSb7J.displayName=\"Kom ig\\xe5ng formul\\xe4r\";FramermJuVHSb7J.defaultProps={height:364,width:340};addFonts(FramermJuVHSb7J,[{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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdPUFI5NadY.woff2\",weight:\"400\"}]},...Button2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermJuVHSb7J\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"340\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"364\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mJuVHSb7J.map", "// Generated by Framer (ddd30d5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-gXyaP .framer-styles-preset-uvz01c:not(.rich-text-wrapper), .framer-gXyaP .framer-styles-preset-uvz01c.rich-text-wrapper a { --framer-link-current-text-color: var(--token-08a8d118-a948-4988-b372-996d93f401e2, #081235) /* {\"name\":\"Brand Tertiary\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-08a8d118-a948-4988-b372-996d93f401e2, #081235) /* {\"name\":\"Brand Tertiary\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-8d48ffa9-a2eb-4b7d-a62e-6996ab90b4d1, #fd5f21); --framer-link-text-decoration: none; }'];export const className=\"framer-gXyaP\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgtht0\",\"data-styles-preset\":\"az7EvW0gm\",children:\"Questions & Answers\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgtht0\",\"data-styles-preset\":\"az7EvW0gm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Questions & Answers\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport*as localizedValues from\"./MSDOe8gk7-0.js\";const valuesByLocaleId={pQONLxgYi:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/H2W9BD15benyfg4vXzKA/uu602WNQ3BkKUREzNqd2/yD8lpVsh7.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={jshF6OFWT:{hover:true,pressed:true}};const cycleOrder=[\"jshF6OFWT\",\"u9vwTs8ZN\",\"mPKp5vgOE\",\"A61qRj4LJ\",\"mhraoqT8e\"];const serializationHash=\"framer-UZHS7\";const variantClassNames={A61qRj4LJ:\"framer-v-l6gw33\",jshF6OFWT:\"framer-v-1talz5z\",mhraoqT8e:\"framer-v-3kop6k\",mPKp5vgOE:\"framer-v-1lkyryh\",u9vwTs8ZN:\"framer-v-ez65f8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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.create(React.Fragment);const humanReadableVariantMap={Default:\"jshF6OFWT\",Disabled:\"mPKp5vgOE\",Error:\"mhraoqT8e\",Loading:\"u9vwTs8ZN\",Success:\"A61qRj4LJ\"};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:\"jshF6OFWT\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jshF6OFWT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"u9vwTs8ZN\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"u9vwTs8ZN\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1talz5z\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"jshF6OFWT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-8d48ffa9-a2eb-4b7d-a62e-6996ab90b4d1, rgb(253, 95, 33))\",borderBottomLeftRadius:48,borderBottomRightRadius:48,borderTopLeftRadius:48,borderTopRightRadius:48,opacity:1,...style},variants:{\"jshF6OFWT-hover\":{backgroundColor:\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\"},\"jshF6OFWT-pressed\":{backgroundColor:\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\"},mhraoqT8e:{backgroundColor:\"var(--token-0562ee6f-f1ce-4615-9956-4aa5f7062f26, rgb(255, 229, 229))\"},mPKp5vgOE:{opacity:.5}},...addPropertyOverrides({\"jshF6OFWT-hover\":{\"data-framer-name\":undefined},\"jshF6OFWT-pressed\":{\"data-framer-name\":undefined},A61qRj4LJ:{\"data-framer-name\":\"Success\"},mhraoqT8e:{\"data-framer-name\":\"Error\"},mPKp5vgOE:{\"data-framer-name\":\"Disabled\"},u9vwTs8ZN:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cdu1nz\",\"data-styles-preset\":\"yD8lpVsh7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Skicka\"})}),className:\"framer-oxdwwb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H5aXXPoU_\",style:{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{A61qRj4LJ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},mhraoqT8e:{\"--extracted-r6o4lv\":\"var(--token-c34e1e94-a417-44e3-afd2-5de4f9c60a43, rgb(240, 55, 55))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A61qRj4LJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Tack!\"})}),fonts:[\"Inter-SemiBold\"]},mhraoqT8e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c34e1e94-a417-44e3-afd2-5de4f9c60a43, rgb(240, 55, 55)))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hrmwpa\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"ojuXUwQ8W\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1me8n28\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"sENEwpi2P\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{u9vwTs8ZN:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4b1y3r\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"N7W9JdLEP\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UZHS7.framer-1qc3dje, .framer-UZHS7 .framer-1qc3dje { display: block; }\",\".framer-UZHS7.framer-1talz5z { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-UZHS7 .framer-oxdwwb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UZHS7 .framer-1hrmwpa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-UZHS7 .framer-1me8n28 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-UZHS7 .framer-4b1y3r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UZHS7.framer-1talz5z { gap: 0px; } .framer-UZHS7.framer-1talz5z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UZHS7.framer-1talz5z > :first-child { margin-left: 0px; } .framer-UZHS7.framer-1talz5z > :last-child { margin-right: 0px; } }\",\".framer-UZHS7.framer-v-ez65f8.framer-1talz5z, .framer-UZHS7.framer-v-1lkyryh.framer-1talz5z, .framer-UZHS7.framer-v-l6gw33.framer-1talz5z, .framer-UZHS7.framer-v-3kop6k.framer-1talz5z { cursor: unset; }\",\".framer-UZHS7.framer-v-ez65f8 .framer-1me8n28 { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"u9vwTs8ZN\":{\"layout\":[\"fixed\",\"fixed\"]},\"mPKp5vgOE\":{\"layout\":[\"fixed\",\"fixed\"]},\"A61qRj4LJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"mhraoqT8e\":{\"layout\":[\"fixed\",\"fixed\"]},\"Qpltv1IjA\":{\"layout\":[\"fixed\",\"fixed\"]},\"cgt_noQWd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHjfFKgF29=withCSS(Component,css,\"framer-UZHS7\");export default FramerHjfFKgF29;FramerHjfFKgF29.displayName=\"Button\";FramerHjfFKgF29.defaultProps={height:50,width:240};addPropertyControls(FramerHjfFKgF29,{variant:{options:[\"jshF6OFWT\",\"u9vwTs8ZN\",\"mPKp5vgOE\",\"A61qRj4LJ\",\"mhraoqT8e\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHjfFKgF29,[{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/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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHjfFKgF29\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u9vwTs8ZN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mPKp5vgOE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A61qRj4LJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mhraoqT8e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Qpltv1IjA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cgt_noQWd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HjfFKgF29.map", "// Generated by Framer (6e8cc59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Pfa_SgziZ\",\"La64LGdmQ\",\"G2Jm5TWpv\"];const serializationHash=\"framer-wkM9c\";const variantClassNames={G2Jm5TWpv:\"framer-v-1o0sot\",La64LGdmQ:\"framer-v-3hsipx\",Pfa_SgziZ:\"framer-v-16v3dp8\"};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 humanReadableVariantMap={\"Primary - Orange\":\"Pfa_SgziZ\",\"Secondary - Dark\":\"G2Jm5TWpv\",\"Secondary - Light\":\"La64LGdmQ\"};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:\"Pfa_SgziZ\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Pfa_SgziZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"La64LGdmQ\",\"G2Jm5TWpv\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"La64LGdmQ\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"G2Jm5TWpv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16v3dp8\",className,classNames),\"data-framer-name\":\"Primary - Orange\",layoutDependency:layoutDependency,layoutId:\"Pfa_SgziZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({G2Jm5TWpv:{\"data-framer-name\":\"Secondary - Dark\"},La64LGdmQ:{\"data-framer-name\":\"Secondary - Light\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tavlb5\",\"data-framer-name\":\"Full-1\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"phuD3RKQT\",svg:'<svg width=\"128\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#FD5F21\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.006 6.667c3.99 0 7.394 2.5 8.732 6.017l-2.924 1.108-1.56.594-2.76 1.048-2.124.808 3.76 1.427.944.36A4.546 4.546 0 0 1 11.464 16a4.544 4.544 0 0 1 8.791-1.613c.16.028 5.078 2.098 5.078 2.098-.252 4.928-4.331 8.847-9.327 8.847-5.158 0-9.34-4.178-9.34-9.332-.001-5.156 4.18-9.335 9.34-9.335Z\" fill=\"#fff\"/><path d=\"M44.808 15.62h9.217v2.301h-3.846a6.944 6.944 0 0 1-.702 2.074 5.24 5.24 0 0 1-1.31 1.597 6.143 6.143 0 0 1-1.92 1.047c-.726.24-1.55.361-2.473.361-1.083 0-2.049-.19-2.898-.57a6.438 6.438 0 0 1-2.122-1.522 7.025 7.025 0 0 1-1.311-2.226A8.111 8.111 0 0 1 37 16c0-.913.154-1.788.461-2.625a6.81 6.81 0 0 1 1.33-2.245 6.513 6.513 0 0 1 2.14-1.54c.837-.393 1.785-.59 2.843-.59.85 0 1.624.127 2.326.38a5.684 5.684 0 0 1 1.846 1.009c.516.418.929.913 1.236 1.483.308.558.492 1.154.554 1.788h-3.193a2.216 2.216 0 0 0-.296-.76 2.173 2.173 0 0 0-.59-.628 2.496 2.496 0 0 0-.83-.438 3.17 3.17 0 0 0-1.071-.171c-.616 0-1.151.12-1.606.361a3.628 3.628 0 0 0-1.163.97 4.403 4.403 0 0 0-.702 1.408 5.888 5.888 0 0 0-.221 1.617c0 .596.08 1.16.24 1.693.16.52.4.983.72 1.389.332.393.744.71 1.236.95.505.229 1.09.343 1.754.343.455 0 .861-.063 1.218-.19.357-.14.665-.324.923-.552.258-.228.468-.488.628-.78.16-.304.264-.621.313-.95h-2.288V15.62Z\" fill=\"#FD5F21\"/><path d=\"M53.593 9.342h2.99v8.75c0 .305.05.596.148.875.098.267.233.501.406.704.184.203.4.368.646.495.246.114.523.171.83.171.308 0 .585-.057.831-.171a1.98 1.98 0 0 0 .646-.495c.185-.203.326-.437.425-.704.098-.279.147-.57.147-.875v-8.75h2.99v8.77c0 .684-.117 1.325-.35 1.92a4.517 4.517 0 0 1-1.016 1.56A4.7 4.7 0 0 1 60.7 22.62c-.615.253-1.31.38-2.086.38-.775 0-1.47-.127-2.085-.38a4.955 4.955 0 0 1-1.588-1.028 4.654 4.654 0 0 1-.996-1.56 5.214 5.214 0 0 1-.351-1.92v-8.77Zm16.062 2.473v3.025h4.892v2.415h-4.892v2.93h4.892v2.473h-7.882V9.342h7.882v2.473h-4.892Zm10.442 6.43c0 .722.19 1.287.572 1.692.382.406.88.61 1.495.61.48 0 .88-.14 1.2-.42.332-.29.498-.671.498-1.14 0-.267-.055-.489-.166-.666a1.458 1.458 0 0 0-.424-.495 2.51 2.51 0 0 0-.628-.361c-.246-.114-.51-.229-.794-.343a60.589 60.589 0 0 1-1.698-.684 5.985 5.985 0 0 1-1.384-.818 3.758 3.758 0 0 1-.942-1.18c-.233-.456-.35-1.02-.35-1.693 0-.608.123-1.147.369-1.617a3.701 3.701 0 0 1 1.015-1.179 4.272 4.272 0 0 1 1.44-.704A5.985 5.985 0 0 1 82.016 9c.763 0 1.434.114 2.012.342a4.036 4.036 0 0 1 1.44.932c.382.394.664.844.85 1.351.196.507.294 1.046.294 1.617h-2.99c0-.596-.141-1.065-.424-1.408-.271-.342-.665-.513-1.182-.513-.43 0-.8.114-1.107.342-.308.228-.462.57-.462 1.027 0 .444.167.8.499 1.065.344.254.794.482 1.347.685.53.19 1.065.4 1.606.628a6.089 6.089 0 0 1 1.458.818c.431.317.782.71 1.052 1.18.283.456.425 1.014.425 1.673 0 .685-.123 1.294-.37 1.826a3.713 3.713 0 0 1-.996 1.35c-.43.356-.941.622-1.532.8-.59.19-1.243.285-1.957.285a5.729 5.729 0 0 1-1.938-.323 4.367 4.367 0 0 1-1.55-.913c-.43-.406-.77-.9-1.015-1.484-.246-.596-.37-1.275-.37-2.035h2.99Zm10.749-6.24h-2.917V9.342h12.197v2.663h-6.29v10.653h-2.99V12.005Z\" fill=\"#FD5F21\"/><path d=\"M104.057 16.456a1.968 1.968 0 0 0 1.495-.685c.185-.215.327-.462.425-.741.098-.28.148-.57.148-.875 0-.304-.05-.596-.148-.875a2.084 2.084 0 0 0-.425-.723 1.898 1.898 0 0 0-1.495-.704h-2.048v4.603h2.048Zm-5.039-7.114h5.427c.714 0 1.36.134 1.938.4a4.336 4.336 0 0 1 1.477 1.046c.418.431.738.938.96 1.522.221.583.332 1.198.332 1.845 0 .938-.228 1.794-.683 2.568a4.287 4.287 0 0 1-1.883 1.73l2.584 4.205h-3.47l-2.289-3.69h-1.402v3.69h-2.99V9.342Zm12.816 0h3.027v13.316h-3.027V9.342Zm12.862 0H128L124.161 16 128 22.658h-3.304l-2.252-4.28-2.252 4.28h-3.285L120.746 16l-3.839-6.658h3.285l2.252 4.3 2.252-4.3Z\" fill=\"#FD5F21\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12mosba\",\"data-framer-name\":\"Full\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"y9bKM2qwn\",svg:'<svg width=\"128\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#FFF7EC\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.006 6.667c3.99 0 7.394 2.5 8.732 6.017l-2.924 1.108-1.56.594-2.76 1.048-2.124.808 3.76 1.427.944.36A4.546 4.546 0 0 1 11.464 16a4.544 4.544 0 0 1 8.791-1.613c.16.028 5.078 2.098 5.078 2.098-.252 4.928-4.331 8.847-9.327 8.847-5.158 0-9.34-4.178-9.34-9.332-.001-5.156 4.18-9.335 9.34-9.335Z\" fill=\"#FD5F21\"/><path d=\"M44.808 15.62h9.217v2.301h-3.846a6.944 6.944 0 0 1-.702 2.074 5.24 5.24 0 0 1-1.31 1.597 6.143 6.143 0 0 1-1.92 1.047c-.726.24-1.55.361-2.473.361-1.083 0-2.049-.19-2.898-.57a6.438 6.438 0 0 1-2.122-1.522 7.025 7.025 0 0 1-1.311-2.226A8.111 8.111 0 0 1 37 16c0-.913.154-1.788.461-2.625a6.81 6.81 0 0 1 1.33-2.245 6.513 6.513 0 0 1 2.14-1.54c.837-.393 1.785-.59 2.843-.59.85 0 1.624.127 2.326.38a5.684 5.684 0 0 1 1.846 1.009c.516.418.929.913 1.236 1.483.308.558.492 1.154.554 1.788h-3.193a2.216 2.216 0 0 0-.296-.76 2.173 2.173 0 0 0-.59-.628 2.496 2.496 0 0 0-.83-.438 3.17 3.17 0 0 0-1.071-.171c-.616 0-1.151.12-1.606.361a3.628 3.628 0 0 0-1.163.97 4.403 4.403 0 0 0-.702 1.408 5.888 5.888 0 0 0-.221 1.617c0 .596.08 1.16.24 1.693.16.52.4.983.72 1.389.332.393.744.71 1.236.95.505.229 1.09.343 1.754.343.455 0 .861-.063 1.218-.19.357-.14.665-.324.923-.552.258-.228.468-.488.628-.78.16-.304.264-.621.313-.95h-2.288V15.62Z\" fill=\"#FFF7EC\"/><path d=\"M53.593 9.342h2.99v8.75c0 .305.05.596.148.875.098.267.233.501.406.704.184.203.4.368.646.495.246.114.523.171.83.171.308 0 .585-.057.831-.171a1.98 1.98 0 0 0 .646-.495c.185-.203.326-.437.425-.704.098-.279.147-.57.147-.875v-8.75h2.99v8.77c0 .684-.117 1.325-.35 1.92a4.517 4.517 0 0 1-1.016 1.56A4.7 4.7 0 0 1 60.7 22.62c-.615.253-1.31.38-2.086.38-.775 0-1.47-.127-2.085-.38a4.955 4.955 0 0 1-1.588-1.028 4.654 4.654 0 0 1-.996-1.56 5.214 5.214 0 0 1-.351-1.92v-8.77Zm16.062 2.473v3.025h4.892v2.415h-4.892v2.93h4.892v2.473h-7.882V9.342h7.882v2.473h-4.892Zm10.442 6.43c0 .722.19 1.287.572 1.692.382.406.88.61 1.495.61.48 0 .88-.14 1.2-.42.332-.29.498-.671.498-1.14 0-.267-.055-.489-.166-.666a1.458 1.458 0 0 0-.424-.495 2.51 2.51 0 0 0-.628-.361c-.246-.114-.51-.229-.794-.343a60.589 60.589 0 0 1-1.698-.684 5.985 5.985 0 0 1-1.384-.818 3.758 3.758 0 0 1-.942-1.18c-.233-.456-.35-1.02-.35-1.693 0-.608.123-1.147.369-1.617a3.701 3.701 0 0 1 1.015-1.179 4.272 4.272 0 0 1 1.44-.704A5.985 5.985 0 0 1 82.016 9c.763 0 1.434.114 2.012.342a4.036 4.036 0 0 1 1.44.932c.382.394.664.844.85 1.351.196.507.294 1.046.294 1.617h-2.99c0-.596-.141-1.065-.424-1.408-.271-.342-.665-.513-1.182-.513-.43 0-.8.114-1.107.342-.308.228-.462.57-.462 1.027 0 .444.167.8.499 1.065.344.254.794.482 1.347.685.53.19 1.065.4 1.606.628a6.089 6.089 0 0 1 1.458.818c.431.317.782.71 1.052 1.18.283.456.425 1.014.425 1.673 0 .685-.123 1.294-.37 1.826a3.713 3.713 0 0 1-.996 1.35c-.43.356-.941.622-1.532.8-.59.19-1.243.285-1.957.285a5.729 5.729 0 0 1-1.938-.323 4.367 4.367 0 0 1-1.55-.913c-.43-.406-.77-.9-1.015-1.484-.246-.596-.37-1.275-.37-2.035h2.99Zm10.749-6.24h-2.917V9.342h12.197v2.663h-6.29v10.653h-2.99V12.005Z\" fill=\"#FFF7EC\"/><path d=\"M104.057 16.456a1.968 1.968 0 0 0 1.495-.685c.185-.215.327-.462.425-.741.098-.28.148-.57.148-.875 0-.304-.05-.596-.148-.875a2.084 2.084 0 0 0-.425-.723 1.898 1.898 0 0 0-1.495-.704h-2.048v4.603h2.048Zm-5.039-7.114h5.427c.714 0 1.36.134 1.938.4a4.336 4.336 0 0 1 1.477 1.046c.418.431.738.938.96 1.522.221.583.332 1.198.332 1.845 0 .938-.228 1.794-.683 2.568a4.287 4.287 0 0 1-1.883 1.73l2.584 4.205h-3.47l-2.289-3.69h-1.402v3.69h-2.99V9.342Zm12.816 0h3.027v13.316h-3.027V9.342Zm12.862 0H128L124.161 16 128 22.658h-3.304l-2.252-4.28-2.252 4.28h-3.285L120.746 16l-3.839-6.658h3.285l2.252 4.3 2.252-4.3Z\" fill=\"#FFF7EC\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tlx010\",\"data-framer-name\":\"Full-2\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:128,layoutDependency:layoutDependency,layoutId:\"vz0E31nVI\",svg:'<svg width=\"128\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#0A1742\"/><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#000\" fill-opacity=\".2\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.006 6.667c3.99 0 7.394 2.5 8.732 6.017l-2.924 1.108-1.56.594-2.76 1.048-2.124.808 3.76 1.427.944.36A4.546 4.546 0 0 1 11.464 16a4.544 4.544 0 0 1 8.791-1.613c.16.028 5.078 2.098 5.078 2.098-.252 4.928-4.331 8.847-9.327 8.847-5.158 0-9.34-4.178-9.34-9.332-.001-5.156 4.18-9.335 9.34-9.335Z\" fill=\"#fff\"/><path d=\"M44.808 15.62h9.217v2.301h-3.846a6.944 6.944 0 0 1-.702 2.074 5.24 5.24 0 0 1-1.31 1.597 6.143 6.143 0 0 1-1.92 1.047c-.726.24-1.55.361-2.473.361-1.083 0-2.049-.19-2.898-.57a6.438 6.438 0 0 1-2.122-1.522 7.025 7.025 0 0 1-1.311-2.226A8.111 8.111 0 0 1 37 16c0-.913.154-1.788.461-2.625a6.81 6.81 0 0 1 1.33-2.245 6.513 6.513 0 0 1 2.14-1.54c.837-.393 1.785-.59 2.843-.59.85 0 1.624.127 2.326.38a5.684 5.684 0 0 1 1.846 1.009c.516.418.929.913 1.236 1.483.308.558.492 1.154.554 1.788h-3.193a2.216 2.216 0 0 0-.296-.76 2.173 2.173 0 0 0-.59-.628 2.496 2.496 0 0 0-.83-.438 3.17 3.17 0 0 0-1.071-.171c-.616 0-1.151.12-1.606.361a3.628 3.628 0 0 0-1.163.97 4.403 4.403 0 0 0-.702 1.408 5.888 5.888 0 0 0-.221 1.617c0 .596.08 1.16.24 1.693.16.52.4.983.72 1.389.332.393.744.71 1.236.95.505.229 1.09.343 1.754.343.455 0 .861-.063 1.218-.19.357-.14.665-.324.923-.552.258-.228.468-.488.628-.78.16-.304.264-.621.313-.95h-2.288V15.62Z\" fill=\"#0A1742\"/><path d=\"M44.808 15.62h9.217v2.301h-3.846a6.944 6.944 0 0 1-.702 2.074 5.24 5.24 0 0 1-1.31 1.597 6.143 6.143 0 0 1-1.92 1.047c-.726.24-1.55.361-2.473.361-1.083 0-2.049-.19-2.898-.57a6.438 6.438 0 0 1-2.122-1.522 7.025 7.025 0 0 1-1.311-2.226A8.111 8.111 0 0 1 37 16c0-.913.154-1.788.461-2.625a6.81 6.81 0 0 1 1.33-2.245 6.513 6.513 0 0 1 2.14-1.54c.837-.393 1.785-.59 2.843-.59.85 0 1.624.127 2.326.38a5.684 5.684 0 0 1 1.846 1.009c.516.418.929.913 1.236 1.483.308.558.492 1.154.554 1.788h-3.193a2.216 2.216 0 0 0-.296-.76 2.173 2.173 0 0 0-.59-.628 2.496 2.496 0 0 0-.83-.438 3.17 3.17 0 0 0-1.071-.171c-.616 0-1.151.12-1.606.361a3.628 3.628 0 0 0-1.163.97 4.403 4.403 0 0 0-.702 1.408 5.888 5.888 0 0 0-.221 1.617c0 .596.08 1.16.24 1.693.16.52.4.983.72 1.389.332.393.744.71 1.236.95.505.229 1.09.343 1.754.343.455 0 .861-.063 1.218-.19.357-.14.665-.324.923-.552.258-.228.468-.488.628-.78.16-.304.264-.621.313-.95h-2.288V15.62Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M53.593 9.342h2.99v8.75c0 .305.05.596.148.875.098.267.233.501.406.704.184.203.4.368.646.495.246.114.523.171.83.171.308 0 .585-.057.831-.171a1.98 1.98 0 0 0 .646-.495c.185-.203.326-.437.425-.704.098-.279.147-.57.147-.875v-8.75h2.99v8.77c0 .684-.117 1.325-.35 1.92a4.517 4.517 0 0 1-1.016 1.56A4.7 4.7 0 0 1 60.7 22.62c-.615.253-1.31.38-2.086.38-.775 0-1.47-.127-2.085-.38a4.955 4.955 0 0 1-1.588-1.028 4.654 4.654 0 0 1-.996-1.56 5.214 5.214 0 0 1-.351-1.92v-8.77Z\" fill=\"#0A1742\"/><path d=\"M53.593 9.342h2.99v8.75c0 .305.05.596.148.875.098.267.233.501.406.704.184.203.4.368.646.495.246.114.523.171.83.171.308 0 .585-.057.831-.171a1.98 1.98 0 0 0 .646-.495c.185-.203.326-.437.425-.704.098-.279.147-.57.147-.875v-8.75h2.99v8.77c0 .684-.117 1.325-.35 1.92a4.517 4.517 0 0 1-1.016 1.56A4.7 4.7 0 0 1 60.7 22.62c-.615.253-1.31.38-2.086.38-.775 0-1.47-.127-2.085-.38a4.955 4.955 0 0 1-1.588-1.028 4.654 4.654 0 0 1-.996-1.56 5.214 5.214 0 0 1-.351-1.92v-8.77Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M69.655 11.815v3.025h4.892v2.415h-4.892v2.93h4.892v2.473h-7.882V9.342h7.882v2.473h-4.892Z\" fill=\"#0A1742\"/><path d=\"M69.655 11.815v3.025h4.892v2.415h-4.892v2.93h4.892v2.473h-7.882V9.342h7.882v2.473h-4.892Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M80.097 18.245c0 .722.19 1.287.572 1.692.382.406.88.61 1.495.61.48 0 .88-.14 1.2-.42.332-.29.498-.671.498-1.14 0-.267-.055-.489-.166-.666a1.458 1.458 0 0 0-.424-.495 2.51 2.51 0 0 0-.628-.361c-.246-.114-.51-.229-.794-.343a60.589 60.589 0 0 1-1.698-.684 5.985 5.985 0 0 1-1.384-.818 3.758 3.758 0 0 1-.942-1.18c-.233-.456-.35-1.02-.35-1.693 0-.608.123-1.147.369-1.617a3.701 3.701 0 0 1 1.015-1.179 4.272 4.272 0 0 1 1.44-.704A5.985 5.985 0 0 1 82.016 9c.763 0 1.434.114 2.012.342a4.036 4.036 0 0 1 1.44.932c.382.394.664.844.85 1.351.196.507.294 1.046.294 1.617h-2.99c0-.596-.141-1.065-.424-1.408-.271-.342-.665-.513-1.182-.513-.43 0-.8.114-1.107.342-.308.228-.462.57-.462 1.027 0 .444.167.8.499 1.065.344.254.794.482 1.347.685.53.19 1.065.4 1.606.628a6.089 6.089 0 0 1 1.458.818c.431.317.782.71 1.052 1.18.283.456.425 1.014.425 1.673 0 .685-.123 1.294-.37 1.826a3.713 3.713 0 0 1-.996 1.35c-.43.356-.941.622-1.532.8-.59.19-1.243.285-1.957.285a5.729 5.729 0 0 1-1.938-.323 4.367 4.367 0 0 1-1.55-.913c-.43-.406-.77-.9-1.015-1.484-.246-.596-.37-1.275-.37-2.035h2.99Z\" fill=\"#0A1742\"/><path d=\"M80.097 18.245c0 .722.19 1.287.572 1.692.382.406.88.61 1.495.61.48 0 .88-.14 1.2-.42.332-.29.498-.671.498-1.14 0-.267-.055-.489-.166-.666a1.458 1.458 0 0 0-.424-.495 2.51 2.51 0 0 0-.628-.361c-.246-.114-.51-.229-.794-.343a60.589 60.589 0 0 1-1.698-.684 5.985 5.985 0 0 1-1.384-.818 3.758 3.758 0 0 1-.942-1.18c-.233-.456-.35-1.02-.35-1.693 0-.608.123-1.147.369-1.617a3.701 3.701 0 0 1 1.015-1.179 4.272 4.272 0 0 1 1.44-.704A5.985 5.985 0 0 1 82.016 9c.763 0 1.434.114 2.012.342a4.036 4.036 0 0 1 1.44.932c.382.394.664.844.85 1.351.196.507.294 1.046.294 1.617h-2.99c0-.596-.141-1.065-.424-1.408-.271-.342-.665-.513-1.182-.513-.43 0-.8.114-1.107.342-.308.228-.462.57-.462 1.027 0 .444.167.8.499 1.065.344.254.794.482 1.347.685.53.19 1.065.4 1.606.628a6.089 6.089 0 0 1 1.458.818c.431.317.782.71 1.052 1.18.283.456.425 1.014.425 1.673 0 .685-.123 1.294-.37 1.826a3.713 3.713 0 0 1-.996 1.35c-.43.356-.941.622-1.532.8-.59.19-1.243.285-1.957.285a5.729 5.729 0 0 1-1.938-.323 4.367 4.367 0 0 1-1.55-.913c-.43-.406-.77-.9-1.015-1.484-.246-.596-.37-1.275-.37-2.035h2.99Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M90.846 12.005h-2.917V9.342h12.197v2.663h-6.29v10.653h-2.99V12.005Z\" fill=\"#0A1742\"/><path d=\"M90.846 12.005h-2.917V9.342h12.197v2.663h-6.29v10.653h-2.99V12.005Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M104.057 16.456a1.968 1.968 0 0 0 1.495-.685c.185-.215.327-.462.425-.741.098-.28.148-.57.148-.875 0-.304-.05-.596-.148-.875a2.084 2.084 0 0 0-.425-.723 1.898 1.898 0 0 0-1.495-.704h-2.048v4.603h2.048Zm-5.039-7.114h5.427c.714 0 1.36.134 1.938.4a4.336 4.336 0 0 1 1.477 1.046c.418.431.738.938.96 1.522.221.583.332 1.198.332 1.845 0 .938-.228 1.794-.683 2.568a4.287 4.287 0 0 1-1.883 1.73l2.584 4.205h-3.47l-2.289-3.69h-1.402v3.69h-2.99V9.342Z\" fill=\"#0A1742\"/><path d=\"M104.057 16.456a1.968 1.968 0 0 0 1.495-.685c.185-.215.327-.462.425-.741.098-.28.148-.57.148-.875 0-.304-.05-.596-.148-.875a2.084 2.084 0 0 0-.425-.723 1.898 1.898 0 0 0-1.495-.704h-2.048v4.603h2.048Zm-5.039-7.114h5.427c.714 0 1.36.134 1.938.4a4.336 4.336 0 0 1 1.477 1.046c.418.431.738.938.96 1.522.221.583.332 1.198.332 1.845 0 .938-.228 1.794-.683 2.568a4.287 4.287 0 0 1-1.883 1.73l2.584 4.205h-3.47l-2.289-3.69h-1.402v3.69h-2.99V9.342Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M111.834 9.342h3.027v13.316h-3.027V9.342Z\" fill=\"#0A1742\"/><path d=\"M111.834 9.342h3.027v13.316h-3.027V9.342Z\" fill=\"#000\" fill-opacity=\".2\"/><path d=\"M124.696 9.342H128L124.161 16 128 22.658h-3.304l-2.252-4.28-2.252 4.28h-3.285L120.746 16l-3.839-6.658h3.285l2.252 4.3 2.252-4.3Z\" fill=\"#0A1742\"/><path d=\"M124.696 9.342H128L124.161 16 128 22.658h-3.304l-2.252-4.28-2.252 4.28h-3.285L120.746 16l-3.839-6.658h3.285l2.252 4.3 2.252-4.3Z\" fill=\"#000\" fill-opacity=\".2\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wkM9c.framer-ctk71n, .framer-wkM9c .framer-ctk71n { display: block; }\",\".framer-wkM9c.framer-16v3dp8 { height: 32px; overflow: hidden; position: relative; width: 128px; }\",\".framer-wkM9c .framer-1tavlb5, .framer-wkM9c .framer-12mosba, .framer-wkM9c .framer-tlx010 { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"La64LGdmQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"G2Jm5TWpv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqAi0vB1i0=withCSS(Component,css,\"framer-wkM9c\");export default FramerqAi0vB1i0;FramerqAi0vB1i0.displayName=\"Guestrix SVG Logo\";FramerqAi0vB1i0.defaultProps={height:32,width:128};addPropertyControls(FramerqAi0vB1i0,{variant:{options:[\"Pfa_SgziZ\",\"La64LGdmQ\",\"G2Jm5TWpv\"],optionTitles:[\"Primary - Orange\",\"Secondary - Light\",\"Secondary - Dark\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqAi0vB1i0,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqAi0vB1i0\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"La64LGdmQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G2Jm5TWpv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"128\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qAi0vB1i0.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/i062qL6yUkyaJjnnvDpH/nCEUZGyHh1lboQ3oCoAp/az7EvW0gm.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/0upfBYVKvOJJQPn8jILS/LS6OnRvJWUPCF1l52aAr/GBSqkZRNF.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/WPcm7MwPDcftXYtKEc7S/WbIUMOIaWvGTyIzuyIH4/OgUygA0MZ.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/ZAspcyiEzblvzn7FQ6lW/abcGdS7gGxQE3Eqz7IbZ/QMHMZ3vN9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/BUgNWGmFzNMG2DQu9zbD/F1eZaqrLb5D8qFe7r0cF/UbclJJvAk.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/zrN8JPn2YpvPertdIidn/GrOhShbSiT2CzBcc7Bmm/wu0WDLIY6.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/H2W9BD15benyfg4vXzKA/uu602WNQ3BkKUREzNqd2/yD8lpVsh7.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/IGFn8Ox078McH34371UL/qRtTkI1mXTrt2U9va0x9/MSDOe8gk7.js\";import GuestrixSymbol from\"https://framerusercontent.com/modules/p25riRqeTyqpHL5QQn6y/c1Wj4C4zdWNpL267jULV/DjIJkkL4v.js\";import ButtonV2 from\"https://framerusercontent.com/modules/yg4gh80o5WGiFsichDJg/ITZOpeZzYihs8aDFJAmp/EcmaHLmdO.js\";import Button from\"https://framerusercontent.com/modules/9t6Ar8xxvg0iEnHvOYxV/ZUsKMGNJhlLrqcgUcn0H/HjfFKgF29.js\";import KomIgNgFormulR from\"https://framerusercontent.com/modules/ZLZr0DMtUGAk5CRFhCp1/9lXbzXilCzn5Z42je4fB/mJuVHSb7J.js\";import GuestrixSVGLogo from\"https://framerusercontent.com/modules/o1e58yNfyHm5g2gIjbcL/fKLo0YsIFaCjYyNBlF9e/qAi0vB1i0.js\";import Accordion from\"https://framerusercontent.com/modules/2VO6fTa2yM2pGJdONoQ4/Fcix4Z0gt0AHa38mDhK2/Su9aoaNhc.js\";const AccordionFonts=getFonts(Accordion);const ButtonV2Fonts=getFonts(ButtonV2);const KomIgNgFormulRFonts=getFonts(KomIgNgFormulR);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const ButtonFonts=getFonts(Button);const GuestrixSVGLogoFonts=getFonts(GuestrixSVGLogo);const GuestrixSymbolFonts=getFonts(GuestrixSymbol);const cycleOrder=[\"RNP8pEfOi\",\"NAMk3wh6K\",\"haWk29IcQ\"];const serializationHash=\"framer-p38Df\";const variantClassNames={haWk29IcQ:\"framer-v-ovsli0\",NAMk3wh6K:\"framer-v-1otkf2z\",RNP8pEfOi:\"framer-v-19tjx1l\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"RNP8pEfOi\",Phone:\"haWk29IcQ\",Tablet:\"NAMk3wh6K\"};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:\"RNP8pEfOi\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RNP8pEfOi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const AloqqAYf6izu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTapizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19tjx1l\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RNP8pEfOi\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",...style},...addPropertyOverrides({haWk29IcQ:{\"data-framer-name\":\"Phone\"},NAMk3wh6K:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v8jsa6\",\"data-framer-name\":\"FAQ\",layoutDependency:layoutDependency,layoutId:\"g_Sg_FwtG\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgtht0\",\"data-styles-preset\":\"az7EvW0gm\",children:\"Fr\\xe5gor & Svar om Guestrix\"})}),className:\"framer-wi9tq9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jR7BjESi8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({haWk29IcQ:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vgtht0\",\"data-styles-preset\":\"az7EvW0gm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fr\\xe5gor & Svar om Guestrix\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p7mplk\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"G3Ag_Rold\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:433,width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px, 1280px), 1px)`,...addPropertyOverrides({haWk29IcQ:{width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1280px), 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zonrv-container\",layoutDependency:layoutDependency,layoutId:\"WaJw6F_6Y-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"WaJw6F_6Y\",layoutId:\"WaJw6F_6Y\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wz5y3i\",layoutDependency:layoutDependency,layoutId:\"qQP3xOypu\",style:{backgroundColor:\"var(--token-8d48ffa9-a2eb-4b7d-a62e-6996ab90b4d1, rgb(253, 95, 33))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-vr9rha\",\"data-styles-preset\":\"UbclJJvAk\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Redo att testa Guestrix?\"})}),className:\"framer-zhtmvh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pfuWXJIVZ\",style:{\"--extracted-gdpscs\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d83rbn\",layoutDependency:layoutDependency,layoutId:\"exrGj5_Ct\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"160px\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s86val-container\",id:`${layoutId}-s86val`,layoutDependency:layoutDependency,layoutId:\"xQyGxMzl8-container\",ref:ref2,children:[/*#__PURE__*/_jsx(ButtonV2,{AloqqAYf6:AloqqAYf6izu9gt({overlay}),height:\"100%\",hLDM42SwN:\"Kom ig\\xe5ng!\",id:\"xQyGxMzl8\",layoutId:\"xQyGxMzl8\",style:{width:\"100%\"},variant:\"boTPt5Nyt\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-s86val`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1yj8f68\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"FkYAvkCGq\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:\"340px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rwene3-container\",layoutDependency:layoutDependency,layoutId:\"WoyxVnzaA-container\",children:/*#__PURE__*/_jsx(KomIgNgFormulR,{height:\"100%\",id:\"WoyxVnzaA\",layoutId:\"WoyxVnzaA\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"160px\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lr7szh-container\",id:`${layoutId}-1lr7szh`,layoutDependency:layoutDependency,layoutId:\"DBncOAxit-container\",ref:ref4,children:[/*#__PURE__*/_jsx(ButtonV2,{AloqqAYf6:AloqqAYf6izu9gt({overlay:overlay1}),height:\"100%\",hLDM42SwN:\"Boka en demo\",id:\"DBncOAxit\",layoutId:\"DBncOAxit\",style:{width:\"100%\"},variant:\"qFULgLaxK\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1lr7szh`,offsetX:-100,offsetY:10,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,...addPropertyOverrides({haWk29IcQ:{offsetX:0},NAMk3wh6K:{offsetX:-70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-pa4jrn\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"omM1R7Qbw\",ref:ref5,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m9q1i-container\",layoutDependency:layoutDependency,layoutId:\"O69TAccXM-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"O69TAccXM\",layoutId:\"O69TAccXM\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ0-DowXpNgYrnzzdGwcgqigyUuTUx-TjyXSXMhtnGFo4Krlgm9s6W9dqLb2dq54cTa17PkCVxv5\",width:\"100%\"})})})})})})]})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12j5qin\",layoutDependency:layoutDependency,layoutId:\"Uqes1RYuD\",style:{backgroundColor:\"rgb(225, 227, 232)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-178o6l9\",layoutDependency:layoutDependency,layoutId:\"HdxkthnW1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3ndqsz\",layoutDependency:layoutDependency,layoutId:\"J2ZY_fR5v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1x71mel\",\"data-styles-preset\":\"GBSqkZRNF\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53)))\"},children:\"Kontakta oss\"})}),className:\"framer-1p6woc6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i9lEnKy8E\",style:{\"--extracted-1eung3n\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53)))\"},children:[\"Vill du komma i kontakt med oss s\\xe5 kan du alltid anv\\xe4nda formul\\xe4ret, mejla \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hej@guestrix.com\",nodeId:\"LgVhKWmjt\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uvz01c\",\"data-styles-preset\":\"QMHMZ3vN9\",children:\"hej@guestrix\"})}),\" eller sl\\xe5 oss en signal p\\xe5 +46 73 032 72 03.\"]})}),className:\"framer-1ss7k6z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LgVhKWmjt\",style:{\"--extracted-r6o4lv\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13x3ud9\",\"data-framer-name\":\"Column\",layoutDependency:layoutDependency,layoutId:\"nQekrYbZY\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/af01c48a-0c8f-4f18-8929-9564d6617cac/submit\",className:\"framer-1oqjcnz\",layoutDependency:layoutDependency,layoutId:\"mHQ31JL0A\",redirectUrl:{webPageId:\"FUm07bsj1\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w30tuz\",layoutDependency:layoutDependency,layoutId:\"x3Y6qGIz1\",children:/*#__PURE__*/_jsx(motion.label,{className:\"framer-uhajxm\",layoutDependency:layoutDependency,layoutId:\"P5_oUqPSq\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-189tp2\",inputName:\"E-post\",layoutDependency:layoutDependency,layoutId:\"hxvRis8YE\",placeholder:\"E-post\",required:true,style:{\"--framer-input-background\":\"rgb(242, 242, 242)\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-b6jnlw\",layoutDependency:layoutDependency,layoutId:\"s0s61x4OK\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1o5qryu\",inputName:\"Meddelande\",layoutDependency:layoutDependency,layoutId:\"qEpRXk81y\",placeholder:\"Ditt meddelande...\",required:true,style:{\"--framer-input-background\":\"rgb(242, 242, 242)\",\"--framer-input-border-radius-bottom-left\":\"8px\",\"--framer-input-border-radius-bottom-right\":\"8px\",\"--framer-input-border-radius-top-left\":\"8px\",\"--framer-input-border-radius-top-right\":\"8px\",\"--framer-input-font-color\":\"rgb(51, 51, 51)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"textarea\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max((min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 96px, 1px), 1280px) - 24px) / 2, 1px)`,...addPropertyOverrides({haWk29IcQ:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 1280px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n43zod-container\",layoutDependency:layoutDependency,layoutId:\"PMX_AiHZl-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"PMX_AiHZl\",layoutId:\"PMX_AiHZl\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"u9vwTs8ZN\",success:\"A61qRj4LJ\"},\"jshF6OFWT\"),width:\"100%\"})})})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k7q1k5\",layoutDependency:layoutDependency,layoutId:\"A0bXlF9QA\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dwb5ku\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"MzvDB1E2y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-icslov\",layoutDependency:layoutDependency,layoutId:\"J101nGyYP\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"iTTelXX1w\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gte2ub framer-1875heo\",layoutDependency:layoutDependency,layoutId:\"iTTelXX1w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"128px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr64au-container\",layoutDependency:layoutDependency,layoutId:\"P1iC0uTTM-container\",children:/*#__PURE__*/_jsx(GuestrixSVGLogo,{height:\"100%\",id:\"P1iC0uTTM\",layoutId:\"P1iC0uTTM\",style:{height:\"100%\",width:\"100%\"},variant:\"La64LGdmQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cwobcg\",layoutDependency:layoutDependency,layoutId:\"VaTNlMf4E\",style:{opacity:.7},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cdu1nz\",\"data-styles-preset\":\"yD8lpVsh7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:\"Guestrix AB\"})}),className:\"framer-1s08ozv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dx9asi1Pe\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:\"Styckjunkargatan 1\"})}),className:\"framer-11mzpar\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lfgiJzYbX\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:\"114 35 Stockholm\"})}),className:\"framer-ttcd7k\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zOU1wF_Vs\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:\"+46 73 032 72 03\"})}),className:\"framer-1kq5c76\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PGhtn7tcG\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hej@guestrix.com\",nodeId:\"NIVY5HYWD\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"hej@guestrix.com\"})})})}),className:\"framer-17n6exr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NIVY5HYWD\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19r3425\",layoutDependency:layoutDependency,layoutId:\"vJjoGF8n5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yXGv_C4pI\"},nodeId:\"tbb9UgzyX\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Det h\\xe4r \\xe4r Guestrix\"})})})}),className:\"framer-10ydgpz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tbb9UgzyX\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LonHBqRGr\"},nodeId:\"nLlK0ilnP\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Priser\"})})})}),className:\"framer-1m1i1ys\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nLlK0ilnP\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n6WZELilj\"},nodeId:\"F295jl03L\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Integrationer\"})})})}),className:\"framer-1kxepgf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F295jl03L\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mPIP1sFVJ\"},nodeId:\"FbPhfzjkj\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Artiklar\"})})})}),className:\"framer-1g32jxb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FbPhfzjkj\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz0k46\",layoutDependency:layoutDependency,layoutId:\"Fh5gV_bkl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eICiYND8N\"},nodeId:\"MGgOYRdo5\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Anv\\xe4ndarvillkor\"})})})}),className:\"framer-3nku55\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MGgOYRdo5\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g3U4TIB14\"},nodeId:\"W8TpbNRGH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Integritetspolicy\"})})})}),className:\"framer-1aagzfd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W8TpbNRGH\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5u5ai1\",layoutDependency:layoutDependency,layoutId:\"HUcvr79Ae\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app.guestrix.com\",nodeId:\"vuFDGPXi_\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1cnul82\",\"data-styles-preset\":\"OgUygA0MZ\",children:\"Logga in\"})})})}),className:\"framer-25gfek\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vuFDGPXi_\",style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1926udv\",\"data-styles-preset\":\"wu0WDLIY6\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229)))\"},children:\"Kom ig\\xe5ng!\"})}),className:\"framer-11vjy8f\",\"data-highlight\":true,fonts:[\"Inter\"],id:`${layoutId}-11vjy8f`,layoutDependency:layoutDependency,layoutId:\"qf72ibkDN\",onTap:onTapizu9gt({overlay:overlay2}),ref:ref6,style:{\"--extracted-r6o4lv\":\"var(--token-0473c0df-b1ec-4220-a27e-2f26a2171533, rgb(255, 252, 229))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref6,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-11vjy8f`,offsetX:0,offsetY:-10,onDismiss:overlay2.hide,placement:\"top\",portalSelector:\"#overlay\",safeArea:false,zIndex:11,...addPropertyOverrides({haWk29IcQ:{alignment:\"start\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-t2tjnb\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"MSzno69Qx\",ref:ref7,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:\"340px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gsanh4-container\",layoutDependency:layoutDependency,layoutId:\"FzPv5TbeL-container\",children:/*#__PURE__*/_jsx(KomIgNgFormulR,{height:\"100%\",id:\"FzPv5TbeL\",layoutId:\"FzPv5TbeL\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:168,width:\"168px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1729)-128,...addPropertyOverrides({haWk29IcQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-112rb3x-container\",layoutDependency:layoutDependency,layoutId:\"bP_2W4wuc-container\",style:{opacity:.2},children:/*#__PURE__*/_jsx(GuestrixSymbol,{height:\"100%\",id:\"bP_2W4wuc\",layoutId:\"bP_2W4wuc\",style:{height:\"100%\",width:\"100%\"},variant:\"CiEwCBK10\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p38Df.framer-1875heo, .framer-p38Df .framer-1875heo { display: block; }\",\".framer-p38Df.framer-19tjx1l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-p38Df .framer-v8jsa6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; }\",\".framer-p38Df .framer-wi9tq9 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-p38Df .framer-p7mplk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p38Df .framer-1zonrv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-p38Df .framer-wz5y3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 48px 150px 48px; position: relative; width: 100%; }\",\".framer-p38Df .framer-zhtmvh, .framer-p38Df .framer-1s08ozv, .framer-p38Df .framer-11mzpar, .framer-p38Df .framer-ttcd7k, .framer-p38Df .framer-1kq5c76, .framer-p38Df .framer-17n6exr, .framer-p38Df .framer-10ydgpz, .framer-p38Df .framer-1m1i1ys, .framer-p38Df .framer-1kxepgf, .framer-p38Df .framer-1g32jxb, .framer-p38Df .framer-3nku55, .framer-p38Df .framer-1aagzfd, .framer-p38Df .framer-25gfek { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p38Df .framer-d83rbn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-p38Df .framer-s86val-container, .framer-p38Df .framer-1lr7szh-container { flex: none; height: auto; position: relative; width: 160px; }\",\".framer-p38Df .framer-1yj8f68, .framer-p38Df .framer-t2tjnb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-p38Df .framer-1rwene3-container, .framer-p38Df .framer-1gsanh4-container { flex: none; height: auto; position: relative; width: 340px; }\",\".framer-p38Df .framer-pa4jrn { height: 650px; overflow: hidden; position: relative; width: 1010px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p38Df .framer-1m9q1i-container, .framer-p38Df .framer-hr64au-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-p38Df .framer-12j5qin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-p38Df .framer-178o6l9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p38Df .framer-3ndqsz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p38Df .framer-1p6woc6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p38Df .framer-1ss7k6z { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p38Df .framer-13x3ud9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p38Df .framer-1oqjcnz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p38Df .framer-1w30tuz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p38Df .framer-uhajxm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-p38Df .framer-189tp2 { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"IBM Plex Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-p38Df .framer-b6jnlw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-p38Df .framer-1o5qryu { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"IBM Plex Sans\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-p38Df .framer-1n43zod-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-p38Df .framer-k7q1k5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; }\",\".framer-p38Df .framer-dwb5ku { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p38Df .framer-icslov { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-p38Df .framer-1gte2ub { flex: none; height: 32px; overflow: visible; position: relative; text-decoration: none; width: 128px; }\",\".framer-p38Df .framer-cwobcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-p38Df .framer-19r3425, .framer-p38Df .framer-lz0k46, .framer-p38Df .framer-5u5ai1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-p38Df .framer-11vjy8f { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p38Df .framer-112rb3x-container { bottom: -40px; flex: none; height: 168px; position: absolute; right: -40px; width: 168px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-p38Df.framer-19tjx1l, .framer-p38Df .framer-v8jsa6, .framer-p38Df .framer-p7mplk, .framer-p38Df .framer-wz5y3i, .framer-p38Df .framer-d83rbn, .framer-p38Df .framer-1yj8f68, .framer-p38Df .framer-12j5qin, .framer-p38Df .framer-178o6l9, .framer-p38Df .framer-3ndqsz, .framer-p38Df .framer-13x3ud9, .framer-p38Df .framer-1oqjcnz, .framer-p38Df .framer-1w30tuz, .framer-p38Df .framer-uhajxm, .framer-p38Df .framer-b6jnlw, .framer-p38Df .framer-k7q1k5, .framer-p38Df .framer-dwb5ku, .framer-p38Df .framer-icslov, .framer-p38Df .framer-cwobcg, .framer-p38Df .framer-19r3425, .framer-p38Df .framer-lz0k46, .framer-p38Df .framer-5u5ai1, .framer-p38Df .framer-t2tjnb { gap: 0px; } .framer-p38Df.framer-19tjx1l > *, .framer-p38Df .framer-cwobcg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p38Df.framer-19tjx1l > :first-child, .framer-p38Df .framer-v8jsa6 > :first-child, .framer-p38Df .framer-wz5y3i > :first-child, .framer-p38Df .framer-3ndqsz > :first-child, .framer-p38Df .framer-13x3ud9 > :first-child, .framer-p38Df .framer-1oqjcnz > :first-child, .framer-p38Df .framer-uhajxm > :first-child, .framer-p38Df .framer-b6jnlw > :first-child, .framer-p38Df .framer-k7q1k5 > :first-child, .framer-p38Df .framer-icslov > :first-child, .framer-p38Df .framer-cwobcg > :first-child, .framer-p38Df .framer-19r3425 > :first-child, .framer-p38Df .framer-lz0k46 > :first-child, .framer-p38Df .framer-5u5ai1 > :first-child { margin-top: 0px; } .framer-p38Df.framer-19tjx1l > :last-child, .framer-p38Df .framer-v8jsa6 > :last-child, .framer-p38Df .framer-wz5y3i > :last-child, .framer-p38Df .framer-3ndqsz > :last-child, .framer-p38Df .framer-13x3ud9 > :last-child, .framer-p38Df .framer-1oqjcnz > :last-child, .framer-p38Df .framer-uhajxm > :last-child, .framer-p38Df .framer-b6jnlw > :last-child, .framer-p38Df .framer-k7q1k5 > :last-child, .framer-p38Df .framer-icslov > :last-child, .framer-p38Df .framer-cwobcg > :last-child, .framer-p38Df .framer-19r3425 > :last-child, .framer-p38Df .framer-lz0k46 > :last-child, .framer-p38Df .framer-5u5ai1 > :last-child { margin-bottom: 0px; } .framer-p38Df .framer-v8jsa6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-p38Df .framer-p7mplk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-p38Df .framer-p7mplk > :first-child, .framer-p38Df .framer-d83rbn > :first-child, .framer-p38Df .framer-1yj8f68 > :first-child, .framer-p38Df .framer-12j5qin > :first-child, .framer-p38Df .framer-178o6l9 > :first-child, .framer-p38Df .framer-1w30tuz > :first-child, .framer-p38Df .framer-dwb5ku > :first-child, .framer-p38Df .framer-t2tjnb > :first-child { margin-left: 0px; } .framer-p38Df .framer-p7mplk > :last-child, .framer-p38Df .framer-d83rbn > :last-child, .framer-p38Df .framer-1yj8f68 > :last-child, .framer-p38Df .framer-12j5qin > :last-child, .framer-p38Df .framer-178o6l9 > :last-child, .framer-p38Df .framer-1w30tuz > :last-child, .framer-p38Df .framer-dwb5ku > :last-child, .framer-p38Df .framer-t2tjnb > :last-child { margin-right: 0px; } .framer-p38Df .framer-wz5y3i > *, .framer-p38Df .framer-icslov > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p38Df .framer-d83rbn > *, .framer-p38Df .framer-178o6l9 > *, .framer-p38Df .framer-dwb5ku > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-p38Df .framer-1yj8f68 > *, .framer-p38Df .framer-12j5qin > *, .framer-p38Df .framer-t2tjnb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p38Df .framer-3ndqsz > *, .framer-p38Df .framer-13x3ud9 > *, .framer-p38Df .framer-uhajxm > *, .framer-p38Df .framer-b6jnlw > *, .framer-p38Df .framer-k7q1k5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p38Df .framer-1oqjcnz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-p38Df .framer-1w30tuz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-p38Df .framer-19r3425 > *, .framer-p38Df .framer-lz0k46 > *, .framer-p38Df .framer-5u5ai1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-p38Df.framer-v-1otkf2z.framer-19tjx1l { width: 800px; }\",\".framer-p38Df.framer-v-1otkf2z .framer-pa4jrn { height: 700px; width: 600px; }\",\".framer-p38Df.framer-v-ovsli0.framer-19tjx1l { width: 468px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-v8jsa6 { padding: 64px 20px 64px 20px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-wi9tq9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p38Df.framer-v-ovsli0 .framer-wz5y3i { padding: 150px 20px 150px 20px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-d83rbn, .framer-p38Df.framer-v-ovsli0 .framer-178o6l9 { flex-direction: column; }\",\".framer-p38Df.framer-v-ovsli0 .framer-pa4jrn { height: 820px; width: 360px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-12j5qin { padding: 48px 20px 48px 20px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-3ndqsz, .framer-p38Df.framer-v-ovsli0 .framer-13x3ud9 { flex: none; width: 100%; }\",\".framer-p38Df.framer-v-ovsli0 .framer-1ss7k6z { max-width: unset; }\",\".framer-p38Df.framer-v-ovsli0 .framer-k7q1k5 { padding: 20px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-dwb5ku { flex-direction: column; gap: 32px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-icslov { flex: none; order: 3; width: 100%; }\",\".framer-p38Df.framer-v-ovsli0 .framer-hr64au-container { aspect-ratio: 4 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); height: 32px; }\",\".framer-p38Df.framer-v-ovsli0 .framer-19r3425 { flex: none; order: 0; width: 100%; }\",\".framer-p38Df.framer-v-ovsli0 .framer-lz0k46 { flex: none; order: 1; width: 100%; }\",\".framer-p38Df.framer-v-ovsli0 .framer-5u5ai1 { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-p38Df.framer-v-ovsli0 .framer-d83rbn, .framer-p38Df.framer-v-ovsli0 .framer-178o6l9, .framer-p38Df.framer-v-ovsli0 .framer-dwb5ku { gap: 0px; } .framer-p38Df.framer-v-ovsli0 .framer-d83rbn > *, .framer-p38Df.framer-v-ovsli0 .framer-178o6l9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p38Df.framer-v-ovsli0 .framer-d83rbn > :first-child, .framer-p38Df.framer-v-ovsli0 .framer-178o6l9 > :first-child, .framer-p38Df.framer-v-ovsli0 .framer-dwb5ku > :first-child { margin-top: 0px; } .framer-p38Df.framer-v-ovsli0 .framer-d83rbn > :last-child, .framer-p38Df.framer-v-ovsli0 .framer-178o6l9 > :last-child, .framer-p38Df.framer-v-ovsli0 .framer-dwb5ku > :last-child { margin-bottom: 0px; } .framer-p38Df.framer-v-ovsli0 .framer-dwb5ku > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1729\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NAMk3wh6K\":{\"layout\":[\"fixed\",\"auto\"]},\"haWk29IcQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMSDOe8gk7=withCSS(Component,css,\"framer-p38Df\");export default FramerMSDOe8gk7;FramerMSDOe8gk7.displayName=\"Footer V2\";FramerMSDOe8gk7.defaultProps={height:1729,width:1200};addPropertyControls(FramerMSDOe8gk7,{variant:{options:[\"RNP8pEfOi\",\"NAMk3wh6K\",\"haWk29IcQ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMSDOe8gk7,[{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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYXgKVElMYYaJe8bpLHnCwDKtdPUFI5NadY.woff2\",weight:\"400\"}]},...AccordionFonts,...ButtonV2Fonts,...KomIgNgFormulRFonts,...EmbedFonts,...ButtonFonts,...GuestrixSVGLogoFonts,...GuestrixSymbolFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMSDOe8gk7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1729\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NAMk3wh6K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"haWk29IcQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (01933e6)\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={E_HsF6_N6:{hover:true},haWv8PO9Y:{hover:true},U4CSrQ_Ys:{hover:true},V5mhyFlGR:{hover:true}};const cycleOrder=[\"V5mhyFlGR\",\"haWv8PO9Y\",\"E_HsF6_N6\",\"U4CSrQ_Ys\"];const serializationHash=\"framer-ujvSk\";const variantClassNames={E_HsF6_N6:\"framer-v-w10ce7\",haWv8PO9Y:\"framer-v-568x8\",U4CSrQ_Ys:\"framer-v-1iv2bhc\",V5mhyFlGR:\"framer-v-1k691eu\"};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={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Call out Light\":\"U4CSrQ_Ys\",\"Call out\":\"haWv8PO9Y\",Default:\"V5mhyFlGR\",Light:\"E_HsF6_N6\"};const getProps=({click,height,id,itemText,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,ccmBwyL2b:link!==null&&link!==void 0?link:props.ccmBwyL2b,G9miDRPOU:click!==null&&click!==void 0?click:props.G9miDRPOU,KEO1AYG5S:(_ref=itemText!==null&&itemText!==void 0?itemText:props.KEO1AYG5S)!==null&&_ref!==void 0?_ref:\"Menu item\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"V5mhyFlGR\"};};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,KEO1AYG5S,ccmBwyL2b,G9miDRPOU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V5mhyFlGR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdsi01o=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(G9miDRPOU){const res=await G9miDRPOU(...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:ccmBwyL2b,nodeId:\"V5mhyFlGR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1k691eu\",className,classNames)} framer-179nx5t`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"V5mhyFlGR\",onTap:onTapdsi01o,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:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"E_HsF6_N6-hover\":{backgroundColor:\"rgba(255, 255, 255, 0.15)\"},\"haWv8PO9Y-hover\":{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},\"U4CSrQ_Ys-hover\":{backgroundColor:\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"},\"V5mhyFlGR-hover\":{backgroundColor:\"rgb(244, 245, 246)\"},haWv8PO9Y:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"},U4CSrQ_Ys:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\"}},...addPropertyOverrides({\"E_HsF6_N6-hover\":{\"data-framer-name\":undefined},\"haWv8PO9Y-hover\":{\"data-framer-name\":undefined},\"U4CSrQ_Ys-hover\":{\"data-framer-name\":undefined},\"V5mhyFlGR-hover\":{\"data-framer-name\":undefined},E_HsF6_N6:{\"data-framer-name\":\"Light\"},haWv8PO9Y:{\"data-border\":true,\"data-framer-name\":\"Call out\"},U4CSrQ_Ys:{\"data-border\":true,\"data-framer-name\":\"Call out Light\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(8, 18, 53))\"},children:\"Menu item\"})}),className:\"framer-1g1hm6j\",fonts:[\"GF;IBM Plex Sans-500\"],layoutDependency:layoutDependency,layoutId:\"cQKRGHEJ0\",style:{\"--extracted-r6o4lv\":\"rgb(8, 18, 53)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KEO1AYG5S,variants:{\"haWv8PO9Y-hover\":{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"},\"U4CSrQ_Ys-hover\":{\"--extracted-r6o4lv\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},\"V5mhyFlGR-hover\":{\"--extracted-r6o4lv\":\"var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53))\"},E_HsF6_N6:{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"},haWv8PO9Y:{\"--extracted-r6o4lv\":\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\"},U4CSrQ_Ys:{\"--extracted-r6o4lv\":\"var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"haWv8PO9Y-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Menu item\"})})},\"U4CSrQ_Ys-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133)))\"},children:\"Menu item\"})})},\"V5mhyFlGR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08a8d118-a948-4988-b372-996d93f401e2, rgb(8, 18, 53)))\"},children:\"Menu item\"})})},E_HsF6_N6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Menu item\"})})},haWv8PO9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133)))\"},children:\"Menu item\"})}),fonts:[\"GF;IBM Plex Sans-600\"]},U4CSrQ_Ys:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy02MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e8a99eaa-d4c0-4861-84da-cb123824529a, rgb(255, 255, 255)))\"},children:\"Menu item\"})}),fonts:[\"GF;IBM Plex Sans-600\"]}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ujvSk.framer-179nx5t, .framer-ujvSk .framer-179nx5t { display: block; }\",\".framer-ujvSk.framer-1k691eu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ujvSk .framer-1g1hm6j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ujvSk.framer-1k691eu { gap: 0px; } .framer-ujvSk.framer-1k691eu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ujvSk.framer-1k691eu > :first-child { margin-left: 0px; } .framer-ujvSk.framer-1k691eu > :last-child { margin-right: 0px; } }\",'.framer-ujvSk[data-border=\"true\"]::after, .framer-ujvSk [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 40\n * @framerIntrinsicWidth 83.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"haWv8PO9Y\":{\"layout\":[\"auto\",\"auto\"]},\"E_HsF6_N6\":{\"layout\":[\"auto\",\"auto\"]},\"U4CSrQ_Ys\":{\"layout\":[\"auto\",\"auto\"]},\"z1i7e63Zy\":{\"layout\":[\"auto\",\"auto\"]},\"zNMfC4bHs\":{\"layout\":[\"auto\",\"auto\"]},\"jU4TevbKf\":{\"layout\":[\"auto\",\"auto\"]},\"Mo1jOwtOJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"KEO1AYG5S\":\"itemText\",\"ccmBwyL2b\":\"link\",\"G9miDRPOU\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerncCYm9pn2=withCSS(Component,css,\"framer-ujvSk\");export default FramerncCYm9pn2;FramerncCYm9pn2.displayName=\"Nav Menu Item\";FramerncCYm9pn2.defaultProps={height:40,width:83.5};addPropertyControls(FramerncCYm9pn2,{variant:{options:[\"V5mhyFlGR\",\"haWv8PO9Y\",\"E_HsF6_N6\",\"U4CSrQ_Ys\"],optionTitles:[\"Default\",\"Call out\",\"Light\",\"Call out Light\"],title:\"Variant\",type:ControlType.Enum},KEO1AYG5S:{defaultValue:\"Menu item\",displayTextArea:false,title:\"Item text\",type:ControlType.String},ccmBwyL2b:{title:\"Link\",type:ControlType.Link},G9miDRPOU:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerncCYm9pn2,[{explicitInter:true,fonts:[{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MINmdd_qFmo.woff2\",weight:\"500\"},{family:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjQ76MINmdd_qFmo.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerncCYm9pn2\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"haWv8PO9Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"E_HsF6_N6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"U4CSrQ_Ys\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"z1i7e63Zy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zNMfC4bHs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jU4TevbKf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Mo1jOwtOJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"83.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"KEO1AYG5S\\\":\\\"itemText\\\",\\\"ccmBwyL2b\\\":\\\"link\\\",\\\"G9miDRPOU\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ncCYm9pn2.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import KomIgNgFormulR from\"https://framerusercontent.com/modules/ZLZr0DMtUGAk5CRFhCp1/9lXbzXilCzn5Z42je4fB/mJuVHSb7J.js\";import NavMenuItem from\"https://framerusercontent.com/modules/9pzczYy2lnfeeambvQbr/JOhHEGk20JQrjMifLHBZ/ncCYm9pn2.js\";import GuestrixSVGLogo from\"https://framerusercontent.com/modules/o1e58yNfyHm5g2gIjbcL/fKLo0YsIFaCjYyNBlF9e/qAi0vB1i0.js\";const GuestrixSVGLogoFonts=getFonts(GuestrixSVGLogo);const NavMenuItemFonts=getFonts(NavMenuItem);const KomIgNgFormulRFonts=getFonts(KomIgNgFormulR);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"p2o6x3o7n\",\"LTdyhJ6rb\",\"eE6FpNDGz\",\"sbn0YBU1z\"];const serializationHash=\"framer-SpGGw\";const variantClassNames={eE6FpNDGz:\"framer-v-t78u32\",LTdyhJ6rb:\"framer-v-wh5wif\",p2o6x3o7n:\"framer-v-tt9sx5\",sbn0YBU1z:\"framer-v-1o5vkjy\"};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 transition2={bounce:.2,delay:0,duration:1,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Transparent\":\"sbn0YBU1z\",\"Desktop White\":\"p2o6x3o7n\",\"Phone - Closed\":\"LTdyhJ6rb\",\"Phone - Open\":\"eE6FpNDGz\"};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:\"p2o6x3o7n\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p2o6x3o7n\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const G9miDRPOU19ygvug=activeVariantCallback(async(...args)=>{setVariant(\"sbn0YBU1z\");});const onTap193583l=activeVariantCallback(async(...args)=>{setVariant(\"eE6FpNDGz\");});const onTapcr0c5f=activeVariantCallback(async(...args)=>{setVariant(\"LTdyhJ6rb\");});const G9miDRPOUizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LTdyhJ6rb\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"LTdyhJ6rb\",\"eE6FpNDGz\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const ref3=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,...addPropertyOverrides({sbn0YBU1z:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tt9sx5\",className,classNames),\"data-framer-name\":\"Desktop White\",layoutDependency:layoutDependency,layoutId:\"p2o6x3o7n\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eE6FpNDGz:{\"data-framer-name\":\"Phone - Open\"},LTdyhJ6rb:{\"data-framer-name\":\"Phone - Closed\"},sbn0YBU1z:{\"data-framer-name\":\"Desktop - Transparent\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ahrnm\",\"data-framer-name\":\"Nav Wrapper\",layoutDependency:layoutDependency,layoutId:\"G5x2jwQ0q\",style:{backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(255, 255, 255, 0.95)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 16px 0px rgba(0, 0, 0, 0.08)\",WebkitBackdropFilter:\"blur(8px)\"},variants:{sbn0YBU1z:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",WebkitBackdropFilter:\"none\"}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yXGv_C4pI\"},nodeId:\"NqGLqVIho\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-w8j0wv framer-slfjys\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"NqGLqVIho\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"128px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+20+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+0+0},LTdyhJ6rb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||80)-24-56)/2)+12+0},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ppo8m0-container\",layoutDependency:layoutDependency,layoutId:\"s643_lvbg-container\",children:/*#__PURE__*/_jsx(GuestrixSVGLogo,{height:\"100%\",id:\"s643_lvbg\",layoutId:\"s643_lvbg\",style:{height:\"100%\",width:\"100%\"},variant:\"Pfa_SgziZ\",width:\"100%\",...addPropertyOverrides({sbn0YBU1z:{variant:\"La64LGdmQ\"}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yca611\",layoutDependency:layoutDependency,layoutId:\"vE8SdEBJG\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yXGv_C4pI\"},implicitPathVariables:undefined},{href:{webPageId:\"yXGv_C4pI\"},implicitPathVariables:undefined},{href:{webPageId:\"yXGv_C4pI\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+32+16+0},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tjmzbn-container\",layoutDependency:layoutDependency,layoutId:\"hkTy3TY3t-container\",children:/*#__PURE__*/_jsx(NavMenuItem,{ccmBwyL2b:resolvedLinks[0],height:\"100%\",id:\"hkTy3TY3t\",KEO1AYG5S:\"Det h\\xe4r \\xe4r Guestrix\",layoutId:\"hkTy3TY3t\",variant:\"V5mhyFlGR\",width:\"100%\",...addPropertyOverrides({eE6FpNDGz:{ccmBwyL2b:resolvedLinks[1]},sbn0YBU1z:{ccmBwyL2b:resolvedLinks[2],variant:\"E_HsF6_N6\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"n6WZELilj\"},implicitPathVariables:undefined},{href:{webPageId:\"n6WZELilj\"},implicitPathVariables:undefined},{href:{webPageId:\"n6WZELilj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+32+16+52},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yrhg70-container\",layoutDependency:layoutDependency,layoutId:\"C2IwgkOVQ-container\",children:/*#__PURE__*/_jsx(NavMenuItem,{ccmBwyL2b:resolvedLinks1[0],height:\"100%\",id:\"C2IwgkOVQ\",KEO1AYG5S:\"Integrationer\",layoutId:\"C2IwgkOVQ\",variant:\"V5mhyFlGR\",width:\"100%\",...addPropertyOverrides({eE6FpNDGz:{ccmBwyL2b:resolvedLinks1[1]},sbn0YBU1z:{ccmBwyL2b:resolvedLinks1[2],variant:\"E_HsF6_N6\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LonHBqRGr\"},implicitPathVariables:undefined},{href:{webPageId:\"LonHBqRGr\"},implicitPathVariables:undefined},{href:{webPageId:\"LonHBqRGr\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+32+16+104},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4rz75-container\",layoutDependency:layoutDependency,layoutId:\"BvsqsxJVM-container\",children:/*#__PURE__*/_jsx(NavMenuItem,{ccmBwyL2b:resolvedLinks2[0],height:\"100%\",id:\"BvsqsxJVM\",KEO1AYG5S:\"Pris\",layoutId:\"BvsqsxJVM\",variant:\"V5mhyFlGR\",width:\"100%\",...addPropertyOverrides({eE6FpNDGz:{ccmBwyL2b:resolvedLinks2[1]},sbn0YBU1z:{ccmBwyL2b:resolvedLinks2[2],G9miDRPOU:G9miDRPOU19ygvug,variant:\"E_HsF6_N6\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mPIP1sFVJ\"},implicitPathVariables:undefined},{href:{webPageId:\"mPIP1sFVJ\"},implicitPathVariables:undefined},{href:{webPageId:\"mPIP1sFVJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+32+16+156},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zyksn8-container\",layoutDependency:layoutDependency,layoutId:\"cCn2rABS6-container\",children:/*#__PURE__*/_jsx(NavMenuItem,{ccmBwyL2b:resolvedLinks3[0],height:\"100%\",id:\"cCn2rABS6\",KEO1AYG5S:\"Artiklar\",layoutId:\"cCn2rABS6\",variant:\"V5mhyFlGR\",width:\"100%\",...addPropertyOverrides({eE6FpNDGz:{ccmBwyL2b:resolvedLinks3[1]},sbn0YBU1z:{ccmBwyL2b:resolvedLinks3[2],G9miDRPOU:G9miDRPOU19ygvug,variant:\"E_HsF6_N6\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xtevws\",\"data-framer-name\":\"Hamburger\",layoutDependency:layoutDependency,layoutId:\"zt6STYxOY\",...addPropertyOverrides({eE6FpNDGz:{\"data-highlight\":true,onTap:onTapcr0c5f},LTdyhJ6rb:{\"data-highlight\":true,onTap:onTap193583l,transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15akmit\",layoutDependency:layoutDependency,layoutId:\"DQPnLrRCe\",style:{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{eE6FpNDGz:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xi3x6r\",layoutDependency:layoutDependency,layoutId:\"mnzg98IBY\",style:{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,rotate:0},variants:{eE6FpNDGz:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fbmdrw\",layoutDependency:layoutDependency,layoutId:\"S_WQPDctI\",style:{backgroundColor:\"var(--token-ae749cfd-bd5e-465e-b138-19c88ca65a0d, rgb(108, 114, 133))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dbfsd5\",layoutDependency:layoutDependency,layoutId:\"hdH6HgLMc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+244+16+0},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-151c0rq-container\",layoutDependency:layoutDependency,layoutId:\"oGuhK0arl-container\",children:/*#__PURE__*/_jsx(NavMenuItem,{ccmBwyL2b:\"https://app.guestrix.com\",height:\"100%\",id:\"oGuhK0arl\",KEO1AYG5S:\"Logga in\",layoutId:\"oGuhK0arl\",variant:\"V5mhyFlGR\",width:\"100%\",...addPropertyOverrides({sbn0YBU1z:{variant:\"E_HsF6_N6\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+244+16+56},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gab3ke-container\",id:`${layoutId}-gab3ke`,layoutDependency:layoutDependency,layoutId:\"gnAPvigzj-container\",ref:ref2,children:[/*#__PURE__*/_jsx(NavMenuItem,{G9miDRPOU:G9miDRPOUizu9gt({overlay}),height:\"100%\",id:\"gnAPvigzj\",KEO1AYG5S:\"Kom ig\\xe5ng!\",layoutId:\"gnAPvigzj\",variant:\"haWv8PO9Y\",width:\"100%\",...addPropertyOverrides({sbn0YBU1z:{variant:\"U4CSrQ_Ys\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-gab3ke`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,...addPropertyOverrides({sbn0YBU1z:{safeArea:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-gqf4ar\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"D81crRNQO\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:\"340px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||96)-24-72)/2)+16+0+0+0,...addPropertyOverrides({eE6FpNDGz:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+12+0+12+244+16+56+0+0},sbn0YBU1z:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(12+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-24-72)/2)+16+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j892pv-container\",layoutDependency:layoutDependency,layoutId:\"BIKQFfOJQ-container\",children:/*#__PURE__*/_jsx(KomIgNgFormulR,{height:\"100%\",id:\"BIKQFfOJQ\",layoutId:\"BIKQFfOJQ\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SpGGw.framer-slfjys, .framer-SpGGw .framer-slfjys { display: block; }\",\".framer-SpGGw.framer-tt9sx5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 1200px; }\",\".framer-SpGGw .framer-14ahrnm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-SpGGw .framer-w8j0wv { flex: none; height: 32px; overflow: visible; position: relative; text-decoration: none; width: 128px; }\",\".framer-SpGGw .framer-ppo8m0-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-SpGGw .framer-yca611 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SpGGw .framer-tjmzbn-container, .framer-SpGGw .framer-yrhg70-container, .framer-SpGGw .framer-1w4rz75-container, .framer-SpGGw .framer-zyksn8-container, .framer-SpGGw .framer-151c0rq-container, .framer-SpGGw .framer-gab3ke-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SpGGw .framer-xtevws { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-SpGGw .framer-15akmit { flex: none; height: 2px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 4px; }\",\".framer-SpGGw .framer-xi3x6r { flex: none; height: 2px; left: 0px; overflow: visible; position: absolute; right: 0px; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-SpGGw .framer-fbmdrw { bottom: 4px; flex: none; height: 2px; overflow: visible; position: absolute; right: 0px; width: 16px; }\",\".framer-SpGGw .framer-dbfsd5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-SpGGw .framer-gqf4ar { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SpGGw .framer-1j892pv-container { flex: none; height: auto; position: relative; width: 340px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SpGGw.framer-tt9sx5, .framer-SpGGw .framer-14ahrnm, .framer-SpGGw .framer-yca611, .framer-SpGGw .framer-dbfsd5, .framer-SpGGw .framer-gqf4ar { gap: 0px; } .framer-SpGGw.framer-tt9sx5 > *, .framer-SpGGw .framer-gqf4ar > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SpGGw.framer-tt9sx5 > :first-child, .framer-SpGGw .framer-14ahrnm > :first-child, .framer-SpGGw .framer-yca611 > :first-child, .framer-SpGGw .framer-dbfsd5 > :first-child, .framer-SpGGw .framer-gqf4ar > :first-child { margin-left: 0px; } .framer-SpGGw.framer-tt9sx5 > :last-child, .framer-SpGGw .framer-14ahrnm > :last-child, .framer-SpGGw .framer-yca611 > :last-child, .framer-SpGGw .framer-dbfsd5 > :last-child, .framer-SpGGw .framer-gqf4ar > :last-child { margin-right: 0px; } .framer-SpGGw .framer-14ahrnm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-SpGGw .framer-yca611 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-SpGGw .framer-dbfsd5 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-SpGGw.framer-v-wh5wif.framer-tt9sx5 { width: 340px; }\",\".framer-SpGGw.framer-v-wh5wif .framer-14ahrnm { gap: unset; justify-content: space-between; padding: 12px 16px 12px 16px; }\",\".framer-SpGGw.framer-v-wh5wif .framer-xtevws { cursor: pointer; position: absolute; right: 16px; top: 50%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SpGGw.framer-v-wh5wif .framer-14ahrnm { gap: 0px; } .framer-SpGGw.framer-v-wh5wif .framer-14ahrnm > *, .framer-SpGGw.framer-v-wh5wif .framer-14ahrnm > :first-child, .framer-SpGGw.framer-v-wh5wif .framer-14ahrnm > :last-child { margin: 0px; } }\",\".framer-SpGGw.framer-v-t78u32.framer-tt9sx5 { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 340px; }\",\".framer-SpGGw.framer-v-t78u32 .framer-14ahrnm { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); max-width: unset; padding: 12px 16px 12px 16px; width: 100%; }\",\".framer-SpGGw.framer-v-t78u32 .framer-yca611 { flex: none; flex-direction: column; padding: 16px 0px 0px 0px; width: 100%; }\",\".framer-SpGGw.framer-v-t78u32 .framer-xtevws { cursor: pointer; position: absolute; right: 16px; top: 16px; z-index: 1; }\",\".framer-SpGGw.framer-v-t78u32 .framer-15akmit { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-SpGGw.framer-v-t78u32 .framer-fbmdrw { right: -20px; }\",\".framer-SpGGw.framer-v-t78u32 .framer-dbfsd5 { flex-direction: column; justify-content: flex-start; padding: 16px 0px 16px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SpGGw.framer-v-t78u32.framer-tt9sx5, .framer-SpGGw.framer-v-t78u32 .framer-14ahrnm, .framer-SpGGw.framer-v-t78u32 .framer-yca611, .framer-SpGGw.framer-v-t78u32 .framer-dbfsd5 { gap: 0px; } .framer-SpGGw.framer-v-t78u32.framer-tt9sx5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SpGGw.framer-v-t78u32.framer-tt9sx5 > :first-child, .framer-SpGGw.framer-v-t78u32 .framer-14ahrnm > :first-child, .framer-SpGGw.framer-v-t78u32 .framer-yca611 > :first-child, .framer-SpGGw.framer-v-t78u32 .framer-dbfsd5 > :first-child { margin-top: 0px; } .framer-SpGGw.framer-v-t78u32.framer-tt9sx5 > :last-child, .framer-SpGGw.framer-v-t78u32 .framer-14ahrnm > :last-child, .framer-SpGGw.framer-v-t78u32 .framer-yca611 > :last-child, .framer-SpGGw.framer-v-t78u32 .framer-dbfsd5 > :last-child { margin-bottom: 0px; } .framer-SpGGw.framer-v-t78u32 .framer-14ahrnm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SpGGw.framer-v-t78u32 .framer-yca611 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-SpGGw.framer-v-t78u32 .framer-dbfsd5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-SpGGw.framer-v-1o5vkjy .framer-ppo8m0-container { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LTdyhJ6rb\":{\"layout\":[\"fixed\",\"auto\"]},\"eE6FpNDGz\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]},\"sbn0YBU1z\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPommrpwdl=withCSS(Component,css,\"framer-SpGGw\");export default FramerPommrpwdl;FramerPommrpwdl.displayName=\"Global Nav - V2\";FramerPommrpwdl.defaultProps={height:96,width:1200};addPropertyControls(FramerPommrpwdl,{variant:{options:[\"p2o6x3o7n\",\"LTdyhJ6rb\",\"eE6FpNDGz\",\"sbn0YBU1z\"],optionTitles:[\"Desktop White\",\"Phone - Closed\",\"Phone - Open\",\"Desktop - Transparent\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPommrpwdl,[{explicitInter:true,fonts:[]},...GuestrixSVGLogoFonts,...NavMenuItemFonts,...KomIgNgFormulRFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPommrpwdl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"96\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LTdyhJ6rb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eE6FpNDGz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"sbn0YBU1z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerDjIJkkL4v", "withCSS", "DjIJkkL4v_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", "click", "height", "id", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hLDM42SwN", "A3HyQUsOA", "AloqqAYf6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1oqq4ju", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerEcmaHLmdO", "withCSS", "EcmaHLmdO_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramergE0jWp4sC", "withCSS", "gE0jWp4sC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Button2Fonts", "getFonts", "gE0jWp4sC_default", "serializationHash", "variantClassNames", "transition1", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "FormContainer", "cx", "serializationHash", "formState", "u", "l", "RichText2", "FormPlainTextInput2", "ComponentViewportProvider", "gE0jWp4sC_default", "css", "FramermJuVHSb7J", "withCSS", "mJuVHSb7J_default", "addFonts", "Button2Fonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "MSDOe8gk7_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "MSDOe8gk7_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerHjfFKgF29", "withCSS", "HjfFKgF29_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerqAi0vB1i0", "withCSS", "qAi0vB1i0_default", "addPropertyControls", "ControlType", "addFonts", "AccordionFonts", "getFonts", "Su9aoaNhc_default", "ButtonV2Fonts", "EcmaHLmdO_default", "KomIgNgFormulRFonts", "mJuVHSb7J_default", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "ButtonFonts", "HjfFKgF29_default", "GuestrixSVGLogoFonts", "qAi0vB1i0_default", "GuestrixSymbolFonts", "DjIJkkL4v_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "formVariants", "form", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "AloqqAYf6izu9gt", "overlay", "paginationInfo", "args", "onTapizu9gt", "ref1", "pe", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "LayoutGroup", "u", "cx", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "overlay1", "Link", "FormContainer", "formState", "FormPlainTextInput2", "overlay2", "css", "FramerMSDOe8gk7", "withCSS", "MSDOe8gk7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "click", "height", "id", "itemText", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KEO1AYG5S", "ccmBwyL2b", "G9miDRPOU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdsi01o", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerncCYm9pn2", "withCSS", "ncCYm9pn2_default", "addPropertyControls", "ControlType", "addFonts", "GuestrixSVGLogoFonts", "getFonts", "qAi0vB1i0_default", "NavMenuItemFonts", "ncCYm9pn2_default", "KomIgNgFormulRFonts", "mJuVHSb7J_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "G9miDRPOU19ygvug", "args", "onTap193583l", "onTapcr0c5f", "G9miDRPOUizu9gt", "overlay", "paginationInfo", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "ref2", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "l", "AnimatePresence", "Floating", "css", "FramerPommrpwdl", "withCSS", "Pommrpwdl_default", "addPropertyControls", "ControlType", "addFonts"]
}
