{"version":3,"file":"Fj253YETP.nCffc_Ev.mjs","names":["fonts","css","className","addPropertyOverrides","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","className","css"],"sources":["https:/framer.com/m/framer/icon-nullstate.js@0.7.0","https:/framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js","https:/framerusercontent.com/modules/PK6NYburWFgEGjVeoiSL/vBajwVrfXM12BxDJWdF7/NmKesphMY.js","https:/framerusercontent.com/modules/O9CkHAZ8xteycF9e0fUc/iVdsMn8dT2qnpHSZ3vas/nZcS5zIJR.js","https:/framerusercontent.com/modules/QJtCuIJ7ICZ2hGMHIu7l/rIwhelLcseHWVMZU7Axt/Fj253YETP.js"],"sourcesContent":["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map","import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map","import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([\"CUSTOM;Tomato Grotesk Regular\"]);export const fonts=[{family:\"Tomato Grotesk Regular\",moduleAsset:{localModuleIdentifier:\"local-module:css/NmKesphMY:default\",url:\"https://framerusercontent.com/assets/Kk1D9t4UejlEGqhXiUnQZVNUzT8.woff\"},url:\"https://framerusercontent.com/assets/Kk1D9t4UejlEGqhXiUnQZVNUzT8.woff\"}];export const css=['.framer-ixEEV .framer-styles-preset-1tlb8wu:not(.rich-text-wrapper), .framer-ixEEV .framer-styles-preset-1tlb8wu.rich-text-wrapper p { --framer-font-family: \"Tomato Grotesk Regular\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, #1b1e27); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 0px) { .framer-ixEEV .framer-styles-preset-1tlb8wu:not(.rich-text-wrapper), .framer-ixEEV .framer-styles-preset-1tlb8wu.rich-text-wrapper p { --framer-font-family: \"Tomato Grotesk Regular\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, #1b1e27); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-ixEEV\";\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 (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/PK6NYburWFgEGjVeoiSL/vBajwVrfXM12BxDJWdF7/NmKesphMY.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/djROtEImtvZWCX5Ha467/J8pVYZ3gwt9BGTJpfel2/TfCAdOgMR.js\";const enabledGestures={ljLjxQwfo:{hover:true}};const cycleOrder=[\"ljLjxQwfo\",\"HMsqj10_6\",\"Ry3M0y721\"];const serializationHash=\"framer-DXtLf\";const variantClassNames={HMsqj10_6:\"framer-v-18c5xye\",ljLjxQwfo:\"framer-v-clhf8q\",Ry3M0y721:\"framer-v-qhozm1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Link Standard Desktop\":\"Ry3M0y721\",\"Standard Desktop\":\"ljLjxQwfo\",\"Standard Mobile\":\"HMsqj10_6\"};const getProps=({backgroundColor,height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,IeCeAFNGQ:(_ref=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.IeCeAFNGQ)!==null&&_ref!==void 0?_ref:\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ljLjxQwfo\",y1ouiJEzY:(_ref2=title!==null&&title!==void 0?title:props.y1ouiJEzY)!==null&&_ref2!==void 0?_ref2:\"Request a Quote\",YXwWvOtG8:link!==null&&link!==void 0?link:props.YXwWvOtG8};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,y1ouiJEzY,YXwWvOtG8,IeCeAFNGQ,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ljLjxQwfo\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:YXwWvOtG8,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-clhf8q\",className,classNames)} framer-17lt2b2`,\"data-framer-name\":\"Standard Desktop\",layoutDependency:layoutDependency,layoutId:\"ljLjxQwfo\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),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:IeCeAFNGQ,borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"ljLjxQwfo-hover\":{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\"},Ry3M0y721:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"ljLjxQwfo-hover\":{\"data-framer-name\":undefined},HMsqj10_6:{\"data-framer-name\":\"Standard Mobile\"},Ry3M0y721:{\"data-border\":true,\"data-framer-name\":\"Link Standard Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n3a71\",\"data-styles-preset\":\"TfCAdOgMR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255)))\"},children:\"Request a Quote\"})}),className:\"framer-qmkzg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SYpDCiiQe\",style:{\"--extracted-r6o4lv\":\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:y1ouiJEzY,variants:{Ry3M0y721:{\"--extracted-r6o4lv\":\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HMsqj10_6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255)))\"},children:\"Request a Quote\"})})},Ry3M0y721:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n3a71\",\"data-styles-preset\":\"TfCAdOgMR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200)))\"},children:\"Request a Quote\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DXtLf.framer-17lt2b2, .framer-DXtLf .framer-17lt2b2 { display: block; }\",\".framer-DXtLf.framer-clhf8q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DXtLf .framer-qmkzg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DXtLf.framer-clhf8q { gap: 0px; } .framer-DXtLf.framer-clhf8q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DXtLf.framer-clhf8q > :first-child { margin-left: 0px; } .framer-DXtLf.framer-clhf8q > :last-child { margin-right: 0px; } }\",\".framer-DXtLf.framer-v-18c5xye.framer-clhf8q { cursor: unset; padding: 8px; }\",\".framer-DXtLf.framer-v-qhozm1.framer-clhf8q { cursor: unset; padding: 8px 0px 8px 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-DXtLf[data-border=\"true\"]::after, .framer-DXtLf [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 48\n * @framerIntrinsicWidth 159\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"HMsqj10_6\":{\"layout\":[\"auto\",\"auto\"]},\"Ry3M0y721\":{\"layout\":[\"auto\",\"auto\"]},\"jl9CuJsNr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"y1ouiJEzY\":\"title\",\"YXwWvOtG8\":\"link\",\"IeCeAFNGQ\":\"backgroundColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernZcS5zIJR=withCSS(Component,css,\"framer-DXtLf\");export default FramernZcS5zIJR;FramernZcS5zIJR.displayName=\"Button\";FramernZcS5zIJR.defaultProps={height:48,width:159};addPropertyControls(FramernZcS5zIJR,{variant:{options:[\"ljLjxQwfo\",\"HMsqj10_6\",\"Ry3M0y721\"],optionTitles:[\"Standard Desktop\",\"Standard Mobile\",\"Link Standard Desktop\"],title:\"Variant\",type:ControlType.Enum},y1ouiJEzY:{defaultValue:\"Request a Quote\",displayTextArea:false,title:\"Title\",type:ControlType.String},YXwWvOtG8:{title:\"Link\",type:ControlType.Link},IeCeAFNGQ:{defaultValue:'var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200)) /* {\"name\":\"Blue\"} */',title:\"Background Color\",type:ControlType.Color}});addFonts(FramernZcS5zIJR,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernZcS5zIJR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HMsqj10_6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ry3M0y721\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jl9CuJsNr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"159\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerVariables\":\"{\\\"y1ouiJEzY\\\":\\\"title\\\",\\\"YXwWvOtG8\\\":\\\"link\\\",\\\"IeCeAFNGQ\\\":\\\"backgroundColor\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nZcS5zIJR.map","// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,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/djROtEImtvZWCX5Ha467/J8pVYZ3gwt9BGTJpfel2/TfCAdOgMR.js\";const enabledGestures={HxEnrKVdO:{hover:true},vcaES7o9o:{pressed:true}};const cycleOrder=[\"HxEnrKVdO\",\"vcaES7o9o\",\"hSAUYmEsS\"];const serializationHash=\"framer-wZ5y3\";const variantClassNames={hSAUYmEsS:\"framer-v-omrics\",HxEnrKVdO:\"framer-v-1yl9mgf\",vcaES7o9o:\"framer-v-11ukq4k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Link\":\"vcaES7o9o\",Default:\"HxEnrKVdO\",Footer:\"hSAUYmEsS\"};const getProps=({background,color,height,id,link,linkColor,tap,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,BRdJCVAHH:link!==null&&link!==void 0?link:props.BRdJCVAHH,D7HYKMDDj:tap!==null&&tap!==void 0?tap:props.D7HYKMDDj,HsjnG0lk7:(_ref=color!==null&&color!==void 0?color:props.HsjnG0lk7)!==null&&_ref!==void 0?_ref:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",LKfQiGtNX:(_ref1=title!==null&&title!==void 0?title:props.LKfQiGtNX)!==null&&_ref1!==void 0?_ref1:\"Live Productions\",n6jfJKM_f:(_ref2=linkColor!==null&&linkColor!==void 0?linkColor:props.n6jfJKM_f)!==null&&_ref2!==void 0?_ref2:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",ohnz_aiQe:(_ref3=background!==null&&background!==void 0?background:props.ohnz_aiQe)!==null&&_ref3!==void 0?_ref3:\"var(--token-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, rgb(245, 245, 245))\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"HxEnrKVdO\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LKfQiGtNX,BRdJCVAHH,ohnz_aiQe,n6jfJKM_f,HsjnG0lk7,D7HYKMDDj,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HxEnrKVdO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15kuqw4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(D7HYKMDDj){const res=await D7HYKMDDj(...args);if(res===false)return false;}});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(Link,{href:BRdJCVAHH,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1yl9mgf\",className,classNames)} framer-1ilg61e`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HxEnrKVdO\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap15kuqw4,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),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:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:1,...style},variants:{\"HxEnrKVdO-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},\"vcaES7o9o-pressed\":{opacity:.8},vcaES7o9o:{backgroundColor:ohnz_aiQe,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({\"HxEnrKVdO-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"vcaES7o9o-pressed\":{\"data-framer-name\":undefined},hSAUYmEsS:{\"data-framer-name\":\"Footer\"},vcaES7o9o:{\"data-framer-name\":\"Mobile Link\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n3a71\",\"data-styles-preset\":\"TfCAdOgMR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-HsjnG0lk7-Fj253YETP))\"},children:\"Live Productions\"})}),className:\"framer-14ugv51\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Saww8ri55\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-HsjnG0lk7-Fj253YETP)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-HsjnG0lk7-Fj253YETP\":HsjnG0lk7,\"--variable-reference-n6jfJKM_f-Fj253YETP\":n6jfJKM_f},text:LKfQiGtNX,variants:{\"HxEnrKVdO-hover\":{\"--extracted-r6o4lv\":\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200))\"},vcaES7o9o:{\"--extracted-r6o4lv\":\"var(--variable-reference-n6jfJKM_f-Fj253YETP)\",\"--variable-reference-n6jfJKM_f-Fj253YETP\":n6jfJKM_f}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HxEnrKVdO-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n3a71\",\"data-styles-preset\":\"TfCAdOgMR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 200)))\"},children:\"Live Productions\"})})},vcaES7o9o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-n3a71\",\"data-styles-preset\":\"TfCAdOgMR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-n6jfJKM_f-Fj253YETP))\"},children:\"Live Productions\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wZ5y3.framer-1ilg61e, .framer-wZ5y3 .framer-1ilg61e { display: block; }\",\".framer-wZ5y3.framer-1yl9mgf { 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: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-wZ5y3 .framer-14ugv51 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wZ5y3.framer-1yl9mgf { gap: 0px; } .framer-wZ5y3.framer-1yl9mgf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wZ5y3.framer-1yl9mgf > :first-child { margin-left: 0px; } .framer-wZ5y3.framer-1yl9mgf > :last-child { margin-right: 0px; } }\",\".framer-wZ5y3.framer-v-11ukq4k.framer-1yl9mgf { justify-content: flex-start; padding: 8px; will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,'.framer-wZ5y3[data-border=\"true\"]::after, .framer-wZ5y3 [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 24\n * @framerIntrinsicWidth 127\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vcaES7o9o\":{\"layout\":[\"auto\",\"auto\"]},\"hSAUYmEsS\":{\"layout\":[\"auto\",\"auto\"]},\"sLRlvcobn\":{\"layout\":[\"auto\",\"auto\"]},\"lCZlxKMUI\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"LKfQiGtNX\":\"title\",\"BRdJCVAHH\":\"link\",\"ohnz_aiQe\":\"background\",\"n6jfJKM_f\":\"linkColor\",\"HsjnG0lk7\":\"color\",\"D7HYKMDDj\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFj253YETP=withCSS(Component,css,\"framer-wZ5y3\");export default FramerFj253YETP;FramerFj253YETP.displayName=\"Link Item\";FramerFj253YETP.defaultProps={height:24,width:127};addPropertyControls(FramerFj253YETP,{variant:{options:[\"HxEnrKVdO\",\"vcaES7o9o\",\"hSAUYmEsS\"],optionTitles:[\"Default\",\"Mobile Link\",\"Footer\"],title:\"Variant\",type:ControlType.Enum},LKfQiGtNX:{defaultValue:\"Live Productions\",displayTextArea:false,title:\"Title\",type:ControlType.String},BRdJCVAHH:{title:\"Link\",type:ControlType.Link},ohnz_aiQe:{defaultValue:'var(--token-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, rgb(245, 245, 245)) /* {\"name\":\"Grey\"} */',title:\"Background\",type:ControlType.Color},n6jfJKM_f:{defaultValue:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",title:\"Link Color\",type:ControlType.Color},HsjnG0lk7:{defaultValue:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",title:\"Color\",type:ControlType.Color},D7HYKMDDj:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerFj253YETP,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFj253YETP\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"127\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vcaES7o9o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hSAUYmEsS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sLRlvcobn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lCZlxKMUI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"LKfQiGtNX\\\":\\\"title\\\",\\\"BRdJCVAHH\\\":\\\"link\\\",\\\"ohnz_aiQe\\\":\\\"background\\\",\\\"n6jfJKM_f\\\":\\\"linkColor\\\",\\\"HsjnG0lk7\\\":\\\"color\\\",\\\"D7HYKMDDj\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fj253YETP.map"],"mappings":"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"}