{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/ggQ9ljNENhnY2PQucyiS/3BWxkUzBy5uTvX2az76y/PriceDisplay.js", "ssg:https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js", "ssg:https://framerusercontent.com/modules/ZvqccqJeDm9kqLlx7z97/AyxDT7kDI2xG7S5YROzi/il_1udogW.js", "ssg:https://framerusercontent.com/modules/KHZUayWaPaej3Z9mM1zJ/ofmkFPbvhFkNidowzSqA/SX19qd8DS.js", "ssg:https://framerusercontent.com/modules/UgmBCGq9CDQ2btUFtqXg/eIW294f9pONawDeuLysg/twNeXLpk7.js", "ssg:https://framerusercontent.com/modules/PBfDoA2xJX08rvuF3sOt/IhVpkp4wyFCvW5FxEKdX/W7054lFax.js", "ssg:https://framerusercontent.com/modules/vf3zmf2D5j6KEZMkOlsb/jjfeGvhcaP35SGPxKDjk/ywnvYi_0m.js", "ssg:https://framerusercontent.com/modules/fXgG0f3MCnjjI4wtvo2v/sxxfvgWRvRZJefBIrxBS/qhwio4EnS.js", "ssg:https://framerusercontent.com/modules/AIhL2JtkqXo6wbiZbOmu/JqisGIlermK87BFLhHzb/aanop2WaK.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";/**\n * API Configuration\n */const API_CONFIG={API_KEY:\"83e6943bef18651999c6c825cbae4d83\",API_URL:\"https://quocoffee.myshopify.com\",API_VERSION:\"2024-10\"};/**\n * Integrated Same-Tab and In-Memory Read Block\n * Simplified to read only from sessionStorage and inMemoryStorage\n */const IntegratedRead={get:key=>{try{const sessionValue=sessionStorage.getItem(key);if(sessionValue){// If the stored value is a string, return it directly\nreturn typeof sessionValue===\"string\"?sessionValue:JSON.parse(sessionValue);}}catch(e){console.warn(\"sessionStorage unavailable or parsing failed, using inMemoryStorage.\");}// Fallback to inMemoryStorage if sessionStorage is unavailable\nwindow.inMemoryStorage=window.inMemoryStorage||{};return window.inMemoryStorage[key]||null;},subscribe:(keys,callback)=>{const sameTabHandler=event=>{const{key,value}=event.detail;if(keys.includes(key)){callback(key,value);}};const crossTabHandler=event=>{if(keys.includes(event.key)){callback(event.key,event.newValue);}};window.addEventListener(\"sameTabStorageChange\",sameTabHandler);window.addEventListener(\"storage\",crossTabHandler);return()=>{window.removeEventListener(\"sameTabStorageChange\",sameTabHandler);window.removeEventListener(\"storage\",crossTabHandler);};}};/**\n * PriceDisplay Component\n */export function PriceDisplay(props){const{productId,fallbackAmount,textColor,font}=props;const[price,setPrice]=React.useState(null);const[currency,setCurrency]=React.useState(\"SEK\");/**\n     * Fetches the minimum variant price from Shopify's Storefront API\n     */const fetchMinVariantPrice=async(productId,countryCode)=>{if(!productId){console.error(\"No product ID provided.\");return;}const query=`\n            query GetProductMinVariantPrice($productId: ID!, $countryCode: CountryCode!) @inContext(country: $countryCode) {\n                product(id: $productId) {\n                    priceRange {\n                        minVariantPrice {\n                            amount\n                            currencyCode\n                        }\n                    }\n                }\n            }\n        `;const variables={productId:productId,countryCode:countryCode};try{var _data_data_product_priceRange,_data_data_product;const response=await fetch(`${API_CONFIG.API_URL}/api/${API_CONFIG.API_VERSION}/graphql.json`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",\"X-Shopify-Storefront-Access-Token\":API_CONFIG.API_KEY},body:JSON.stringify({query:query,variables:variables})});const data=await response.json();const minPrice=(_data_data_product=data.data.product)===null||_data_data_product===void 0?void 0:(_data_data_product_priceRange=_data_data_product.priceRange)===null||_data_data_product_priceRange===void 0?void 0:_data_data_product_priceRange.minVariantPrice;if(minPrice){setPrice(minPrice.amount);setCurrency(minPrice.currencyCode);}else{console.error(\"Price data not found.\");setPrice(fallbackAmount);setCurrency(\"SEK\");}}catch(error){console.error(\"API Error:\",error);setPrice(fallbackAmount);setCurrency(\"SEK\");}};// Initial fetch on component mount and when productId or selectedCurrency changes\nReact.useEffect(()=>{const selectedCurrency=IntegratedRead.get(\"selectedCurrency\")||\"SE\";fetchMinVariantPrice(productId,selectedCurrency);},[productId]);// Listen to changes in 'selectedCurrency' to refetch price\nReact.useEffect(()=>{const handleCurrencyChange=(key,newCountryIso)=>{if(key===\"selectedCurrency\"){fetchMinVariantPrice(productId,newCountryIso);}};const unsubscribe=IntegratedRead.subscribe([\"selectedCurrency\"],handleCurrencyChange);return()=>unsubscribe();},[productId]);/**\n     * Helper function to format price\n     * Displays no decimals unless needed\n     */const formatPrice=(amount,currencyCode)=>{const numAmount=parseFloat(amount);// Check if the number is an integer\nconst isInteger=Number.isInteger(numAmount);return isInteger?`${numAmount} ${currencyCode}`:`${numAmount.toFixed(2)} ${currencyCode}`;};return /*#__PURE__*/_jsx(Frame,{background:\"none\",width:\"100%\",height:\"100%\",style:{display:\"flex\",justifyContent:\"flex-start\",alignItems:\"center\",textAlign:\"left\",...font,color:textColor||\"#333\"},children:price?/*#__PURE__*/_jsx(\"span\",{children:formatPrice(price,currency)}):/*#__PURE__*/_jsxs(\"span\",{children:[fallbackAmount,\" SEK\"]})});}// Default Props\nPriceDisplay.defaultProps={productId:\"gid://shopify/Product/9472636191057\",fallbackAmount:\"0\",textColor:\"#333\",font:{fontFamily:\"Inter\",fontWeight:\"600\",fontSize:16,lineHeight:\"1.5em\",fontStyle:\"normal\",letterSpacing:\"normal\",textTransform:\"none\",textDecoration:\"none\"}};// Property Controls\naddPropertyControls(PriceDisplay,{productId:{type:ControlType.String,title:\"Product ID\",defaultValue:\"gid://shopify/Product/9472636191057\",placeholder:\"gid://shopify/Product/9472636191057\",group:\"Settings\"},fallbackAmount:{type:ControlType.String,title:\"Fallback Amount\",defaultValue:\"0\",placeholder:\"100\",group:\"Settings\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#333\",optional:true,group:\"Font\"},font:{type:ControlType.Font,title:\"Font\",defaultValue:PriceDisplay.defaultProps.font,controls:\"extended\",group:\"Font\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"PriceDisplay\":{\"type\":\"reactComponent\",\"name\":\"PriceDisplay\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PriceDisplay.map", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"UqNiTtf2Z\",\"h09JrvXGx\",\"blATvsSlD\",\"RI2pXTMtO\"];const serializationHash=\"framer-8Pttl\";const variantClassNames={blATvsSlD:\"framer-v-14xvjai\",h09JrvXGx:\"framer-v-s8bhqc\",RI2pXTMtO:\"framer-v-1kssjip\",UqNiTtf2Z:\"framer-v-110spld\"};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:.4,delay:0,duration:.8,type:\"spring\"};const transition2={bounce:.3,delay:0,duration:.6,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};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={Active:\"h09JrvXGx\",Inactive:\"blATvsSlD\",NonClick:\"RI2pXTMtO\",Selected:\"UqNiTtf2Z\"};const getProps=({backgroundColor,click,closeButton,fontSize,height,id,padding,primaryColor,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,euBnKSt4p:(_ref=title!==null&&title!==void 0?title:props.euBnKSt4p)!==null&&_ref!==void 0?_ref:\"Tag\",MglukPl4_:click!==null&&click!==void 0?click:props.MglukPl4_,nPv58hpzm:(_ref1=padding!==null&&padding!==void 0?padding:props.nPv58hpzm)!==null&&_ref1!==void 0?_ref1:\"2px 10px 3px 10px\",PbBl3shHC:(_ref2=primaryColor!==null&&primaryColor!==void 0?primaryColor:props.PbBl3shHC)!==null&&_ref2!==void 0?_ref2:\"rgb(25, 91, 168)\",qNZOUv2_j:(_ref3=fontSize!==null&&fontSize!==void 0?fontSize:props.qNZOUv2_j)!==null&&_ref3!==void 0?_ref3:16,UHu8MQt_6:(_ref4=closeButton!==null&&closeButton!==void 0?closeButton:props.UHu8MQt_6)!==null&&_ref4!==void 0?_ref4:true,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"UqNiTtf2Z\",XpdSl1nIq:(_ref6=backgroundColor!==null&&backgroundColor!==void 0?backgroundColor:props.XpdSl1nIq)!==null&&_ref6!==void 0?_ref6:\"rgb(198, 231, 240)\"};};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,XpdSl1nIq,PbBl3shHC,euBnKSt4p,MglukPl4_,qNZOUv2_j,nPv58hpzm,UHu8MQt_6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UqNiTtf2Z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapvci5jh=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MglukPl4_){const res=await MglukPl4_(...args);if(res===false)return false;}setVariant(\"h09JrvXGx\");});const onTap1qanfgn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MglukPl4_){const res=await MglukPl4_(...args);if(res===false)return false;}setVariant(\"UqNiTtf2Z\");});const ref1=React.useRef(null);const isDisplayed=value=>{if(baseVariant===\"RI2pXTMtO\")return value;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({blATvsSlD:{value:transition2},h09JrvXGx:{value:transition2},RI2pXTMtO:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-110spld\",className,classNames),\"data-framer-name\":\"Selected\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UqNiTtf2Z\",onTap:onTapvci5jh,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({blATvsSlD:{\"data-framer-name\":\"Inactive\",onTap:onTap1qanfgn},h09JrvXGx:{\"data-framer-name\":\"Active\",onTap:onTap1qanfgn},RI2pXTMtO:{\"data-framer-name\":\"NonClick\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12xbkqv\",\"data-framer-name\":\"Filter Wrapper\",layoutDependency:layoutDependency,layoutId:\"Y_lP3mZ5o\",style:{\"--mw1z7x\":numberToPixelString(nPv58hpzm),backgroundColor:XpdSl1nIq,borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},variants:{blATvsSlD:{backgroundColor:\"var(--token-67c83975-831f-45a2-baed-b95455a1d53f, rgb(26, 26, 26))\"},RI2pXTMtO:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-PbBl3shHC-k8gR8Xn0X))\"},children:\"Developed\"})}),className:\"framer-1xrilhi\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"rKCU_AbHO\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-PbBl3shHC-k8gR8Xn0X)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-PbBl3shHC-k8gR8Xn0X\":PbBl3shHC,\"--variable-reference-qNZOUv2_j-k8gR8Xn0X\":qNZOUv2_j},text:euBnKSt4p,variants:{blATvsSlD:{\"--extracted-r6o4lv\":\"var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgb(128, 128, 128))\"},RI2pXTMtO:{\"--variable-reference-qNZOUv2_j-k8gR8Xn0X\":qNZOUv2_j}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({blATvsSlD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgb(128, 128, 128)))\"},children:\"Tag\"})})},RI2pXTMtO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-qNZOUv2_j-k8gR8Xn0X) * 1px)\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-PbBl3shHC-k8gR8Xn0X))\"},children:\"Tag\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14usvco\",\"data-framer-name\":\"Close Wrapper\",layoutDependency:layoutDependency,layoutId:\"QUwVax_zU\",children:isDisplayed(UHu8MQt_6)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-k2a85\",\"data-framer-name\":\"Close Button\",layoutDependency:layoutDependency,layoutId:\"wlU1M0Wkq\",style:{backgroundColor:XpdSl1nIq,borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26},variants:{blATvsSlD:{backgroundColor:\"var(--token-67c83975-831f-45a2-baed-b95455a1d53f, rgb(230, 230, 230))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1omt0tj-container\",layoutDependency:layoutDependency,layoutId:\"Uvs8FM2UJ-container\",style:{opacity:1,rotate:0},variants:{blATvsSlD:{opacity:0,rotate:-90},h09JrvXGx:{opacity:0,rotate:-90},RI2pXTMtO:{opacity:0,rotate:-90}},children:/*#__PURE__*/_jsx(Material,{color:PbBl3shHC,height:\"100%\",iconSearch:\"Home\",iconSelection:\"Close\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Uvs8FM2UJ\",layoutId:\"Uvs8FM2UJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8Pttl.framer-1rc5ptr, .framer-8Pttl .framer-1rc5ptr { display: block; }\",\".framer-8Pttl.framer-110spld { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Pttl .framer-12xbkqv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 21px; justify-content: flex-start; overflow: hidden; padding: 0px 10px 3px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-8Pttl .framer-1xrilhi { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-8Pttl .framer-14usvco { flex: none; height: 21px; overflow: visible; position: relative; width: 26px; z-index: 0; }\",\".framer-8Pttl .framer-k2a85 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 21px); justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; width: 21px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8Pttl .framer-1omt0tj-container { flex: none; height: 15px; position: relative; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8Pttl.framer-110spld, .framer-8Pttl .framer-12xbkqv, .framer-8Pttl .framer-k2a85 { gap: 0px; } .framer-8Pttl.framer-110spld > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8Pttl.framer-110spld > :first-child, .framer-8Pttl .framer-12xbkqv > :first-child, .framer-8Pttl .framer-k2a85 > :first-child { margin-left: 0px; } .framer-8Pttl.framer-110spld > :last-child, .framer-8Pttl .framer-12xbkqv > :last-child, .framer-8Pttl .framer-k2a85 > :last-child { margin-right: 0px; } .framer-8Pttl .framer-12xbkqv > *, .framer-8Pttl .framer-k2a85 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-8Pttl.framer-v-s8bhqc .framer-14usvco, .framer-8Pttl.framer-v-14xvjai .framer-14usvco, .framer-8Pttl.framer-v-1kssjip .framer-14usvco { width: 1px; }\",\".framer-8Pttl.framer-v-1kssjip.framer-110spld { cursor: unset; }\",\".framer-8Pttl.framer-v-1kssjip .framer-12xbkqv { height: min-content; padding: var(--mw1z7x); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 71\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"h09JrvXGx\":{\"layout\":[\"auto\",\"auto\"]},\"blATvsSlD\":{\"layout\":[\"auto\",\"auto\"]},\"RI2pXTMtO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XpdSl1nIq\":\"backgroundColor\",\"PbBl3shHC\":\"primaryColor\",\"euBnKSt4p\":\"title\",\"MglukPl4_\":\"click\",\"qNZOUv2_j\":\"fontSize\",\"nPv58hpzm\":\"padding\",\"UHu8MQt_6\":\"closeButton\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk8gR8Xn0X=withCSS(Component,css,\"framer-8Pttl\");export default Framerk8gR8Xn0X;Framerk8gR8Xn0X.displayName=\"Tag\";Framerk8gR8Xn0X.defaultProps={height:21,width:71};addPropertyControls(Framerk8gR8Xn0X,{variant:{options:[\"UqNiTtf2Z\",\"h09JrvXGx\",\"blATvsSlD\",\"RI2pXTMtO\"],optionTitles:[\"Selected\",\"Active\",\"Inactive\",\"NonClick\"],title:\"Variant\",type:ControlType.Enum},XpdSl1nIq:{defaultValue:\"rgb(198, 231, 240)\",title:\"Background Color\",type:ControlType.Color},PbBl3shHC:{defaultValue:\"rgb(25, 91, 168)\",title:\"Primary Color\",type:ControlType.Color},euBnKSt4p:{defaultValue:\"Tag\",displayTextArea:false,title:\"Title\",type:ControlType.String},MglukPl4_:{title:\"Click\",type:ControlType.EventHandler},qNZOUv2_j:{defaultValue:16,title:\"Font Size\",type:ControlType.Number},nPv58hpzm:{defaultValue:\"2px 10px 3px 10px\",title:\"Padding\",type:ControlType.Padding},UHu8MQt_6:{defaultValue:true,title:\"Close button\",type:ControlType.Boolean}});addFonts(Framerk8gR8Xn0X,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/6uIfYl8bnz9kOy3KOuV7PxhFPhA.woff2\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk8gR8Xn0X\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h09JrvXGx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"blATvsSlD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RI2pXTMtO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"21\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"71\",\"framerVariables\":\"{\\\"XpdSl1nIq\\\":\\\"backgroundColor\\\",\\\"PbBl3shHC\\\":\\\"primaryColor\\\",\\\"euBnKSt4p\\\":\\\"title\\\",\\\"MglukPl4_\\\":\\\"click\\\",\\\"qNZOUv2_j\\\":\\\"fontSize\\\",\\\"nPv58hpzm\\\":\\\"padding\\\",\\\"UHu8MQt_6\\\":\\\"closeButton\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k8gR8Xn0X.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"AIlnP8D6J\",\"kjZDzIi0I\",\"NZYq0mFLd\",\"L9Sd3CvxR\",\"A6bdwBzdc\"];const serializationHash=\"framer-oPiJT\";const variantClassNames={A6bdwBzdc:\"framer-v-wooxqf\",AIlnP8D6J:\"framer-v-1xe4d5y\",kjZDzIi0I:\"framer-v-1nt01e4\",L9Sd3CvxR:\"framer-v-1nbez4l\",NZYq0mFLd:\"framer-v-18que4j\"};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={\"NonClick Small\":\"A6bdwBzdc\",Active:\"AIlnP8D6J\",Inactive:\"NZYq0mFLd\",NonClick:\"L9Sd3CvxR\",Selected:\"kjZDzIi0I\"};const getProps=({click,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CmAtylbhA:(_ref=title!==null&&title!==void 0?title:props.CmAtylbhA)!==null&&_ref!==void 0?_ref:\"Tag\",RrK_ohoU3:click!==null&&click!==void 0?click:props.RrK_ohoU3,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"AIlnP8D6J\"};};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,RrK_ohoU3,CmAtylbhA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AIlnP8D6J\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MglukPl4_ko4qrd=activeVariantCallback(async(...args)=>{if(RrK_ohoU3){const res=await RrK_ohoU3(...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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xe4d5y\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"AIlnP8D6J\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({A6bdwBzdc:{\"data-framer-name\":\"NonClick Small\"},kjZDzIi0I:{\"data-framer-name\":\"Selected\"},L9Sd3CvxR:{\"data-framer-name\":\"NonClick\"},NZYq0mFLd:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||21)-0-21)/2),...addPropertyOverrides({A6bdwBzdc:{height:16,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||16)-0-16)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebgqkl-container\",\"data-framer-name\":\"Developed\",layoutDependency:layoutDependency,layoutId:\"WjD2pv7C5-container\",name:\"Developed\",children:/*#__PURE__*/_jsx(Tag,{euBnKSt4p:CmAtylbhA,height:\"100%\",id:\"WjD2pv7C5\",layoutId:\"WjD2pv7C5\",MglukPl4_:MglukPl4_ko4qrd,name:\"Developed\",nPv58hpzm:\"2px 10px 3px 10px\",PbBl3shHC:\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",qNZOUv2_j:16,style:{height:\"100%\"},UHu8MQt_6:true,variant:\"h09JrvXGx\",width:\"100%\",XpdSl1nIq:\"var(--token-62446960-d58d-467c-bfc9-6739c456e138, rgb(238, 234, 222))\",...addPropertyOverrides({A6bdwBzdc:{nPv58hpzm:\"2px 7px 2px 7px\",qNZOUv2_j:12,UHu8MQt_6:false,variant:\"RI2pXTMtO\"},kjZDzIi0I:{variant:\"UqNiTtf2Z\"},L9Sd3CvxR:{variant:\"RI2pXTMtO\"},NZYq0mFLd:{variant:\"blATvsSlD\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oPiJT.framer-1eafxnh, .framer-oPiJT .framer-1eafxnh { display: block; }\",\".framer-oPiJT.framer-1xe4d5y { 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: 0px; position: relative; width: min-content; }\",\".framer-oPiJT .framer-1ebgqkl-container { flex: none; height: 21px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oPiJT.framer-1xe4d5y { gap: 0px; } .framer-oPiJT.framer-1xe4d5y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oPiJT.framer-1xe4d5y > :first-child { margin-left: 0px; } .framer-oPiJT.framer-1xe4d5y > :last-child { margin-right: 0px; } }\",\".framer-oPiJT.framer-v-wooxqf .framer-1ebgqkl-container { height: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 46\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kjZDzIi0I\":{\"layout\":[\"auto\",\"auto\"]},\"NZYq0mFLd\":{\"layout\":[\"auto\",\"auto\"]},\"L9Sd3CvxR\":{\"layout\":[\"auto\",\"auto\"]},\"A6bdwBzdc\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RrK_ohoU3\":\"click\",\"CmAtylbhA\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameril_1udogW=withCSS(Component,css,\"framer-oPiJT\");export default Frameril_1udogW;Frameril_1udogW.displayName=\"Tag Custom\";Frameril_1udogW.defaultProps={height:21,width:46};addPropertyControls(Frameril_1udogW,{variant:{options:[\"AIlnP8D6J\",\"kjZDzIi0I\",\"NZYq0mFLd\",\"L9Sd3CvxR\",\"A6bdwBzdc\"],optionTitles:[\"Active\",\"Selected\",\"Inactive\",\"NonClick\",\"NonClick Small\"],title:\"Variant\",type:ControlType.Enum},RrK_ohoU3:{title:\"Click\",type:ControlType.EventHandler},CmAtylbhA:{defaultValue:\"Tag\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Frameril_1udogW,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameril_1udogW\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"RrK_ohoU3\\\":\\\"click\\\",\\\"CmAtylbhA\\\":\\\"title\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kjZDzIi0I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NZYq0mFLd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"L9Sd3CvxR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A6bdwBzdc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"46\",\"framerIntrinsicHeight\":\"21\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d22d44)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"x8vEIcLvC\",\"ME3yzn2MB\",\"IVxbV3YLR\",\"dNboWp2r1\",\"TSCFMAdZL\"];const serializationHash=\"framer-OYTQO\";const variantClassNames={dNboWp2r1:\"framer-v-1ffear4\",IVxbV3YLR:\"framer-v-1itr2h2\",ME3yzn2MB:\"framer-v-130pjih\",TSCFMAdZL:\"framer-v-rbe04j\",x8vEIcLvC:\"framer-v-456waw\"};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={\"NonClick Small\":\"TSCFMAdZL\",Active:\"x8vEIcLvC\",Inactive:\"IVxbV3YLR\",NonClick:\"dNboWp2r1\",Selected:\"ME3yzn2MB\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,RrK_ohoU3:click!==null&&click!==void 0?click:props.RrK_ohoU3,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"x8vEIcLvC\"};};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,RrK_ohoU3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x8vEIcLvC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MglukPl4_ko4qrd=activeVariantCallback(async(...args)=>{if(RrK_ohoU3){const res=await RrK_ohoU3(...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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-456waw\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"x8vEIcLvC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dNboWp2r1:{\"data-framer-name\":\"NonClick\"},IVxbV3YLR:{\"data-framer-name\":\"Inactive\"},ME3yzn2MB:{\"data-framer-name\":\"Selected\"},TSCFMAdZL:{\"data-framer-name\":\"NonClick Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||21)-0-21)/2),...addPropertyOverrides({TSCFMAdZL:{height:16,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||16)-0-16)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lbxnod-container\",\"data-framer-name\":\"Developed\",layoutDependency:layoutDependency,layoutId:\"EVp0OkE6y-container\",name:\"Developed\",children:/*#__PURE__*/_jsx(Tag,{euBnKSt4p:\"New\",height:\"100%\",id:\"EVp0OkE6y\",layoutId:\"EVp0OkE6y\",MglukPl4_:MglukPl4_ko4qrd,name:\"Developed\",nPv58hpzm:\"2px 10px 3px 10px\",PbBl3shHC:\"var(--token-418f4c2a-2de8-4849-9bfd-2ef45f64951b, rgb(161, 116, 45))\",qNZOUv2_j:16,style:{height:\"100%\"},UHu8MQt_6:true,variant:\"h09JrvXGx\",width:\"100%\",XpdSl1nIq:\"var(--token-4e5839d3-70e9-4985-8ddd-d8b8c3103684, rgb(255, 246, 176))\",...addPropertyOverrides({dNboWp2r1:{variant:\"RI2pXTMtO\"},IVxbV3YLR:{variant:\"blATvsSlD\"},ME3yzn2MB:{variant:\"UqNiTtf2Z\"},TSCFMAdZL:{nPv58hpzm:\"2px 7px 2px 7px\",qNZOUv2_j:12,UHu8MQt_6:false,variant:\"RI2pXTMtO\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OYTQO.framer-166mg6p, .framer-OYTQO .framer-166mg6p { display: block; }\",\".framer-OYTQO.framer-456waw { 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: 0px; position: relative; width: min-content; }\",\".framer-OYTQO .framer-1lbxnod-container { flex: none; height: 21px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OYTQO.framer-456waw { gap: 0px; } .framer-OYTQO.framer-456waw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OYTQO.framer-456waw > :first-child { margin-left: 0px; } .framer-OYTQO.framer-456waw > :last-child { margin-right: 0px; } }\",\".framer-OYTQO.framer-v-rbe04j .framer-1lbxnod-container { height: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 53\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ME3yzn2MB\":{\"layout\":[\"auto\",\"auto\"]},\"IVxbV3YLR\":{\"layout\":[\"auto\",\"auto\"]},\"dNboWp2r1\":{\"layout\":[\"auto\",\"auto\"]},\"TSCFMAdZL\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RrK_ohoU3\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSX19qd8DS=withCSS(Component,css,\"framer-OYTQO\");export default FramerSX19qd8DS;FramerSX19qd8DS.displayName=\"Tag New\";FramerSX19qd8DS.defaultProps={height:21,width:53};addPropertyControls(FramerSX19qd8DS,{variant:{options:[\"x8vEIcLvC\",\"ME3yzn2MB\",\"IVxbV3YLR\",\"dNboWp2r1\",\"TSCFMAdZL\"],optionTitles:[\"Active\",\"Selected\",\"Inactive\",\"NonClick\",\"NonClick Small\"],title:\"Variant\",type:ControlType.Enum},RrK_ohoU3:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerSX19qd8DS,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSX19qd8DS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ME3yzn2MB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IVxbV3YLR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dNboWp2r1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TSCFMAdZL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"RrK_ohoU3\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"53\",\"framerIntrinsicHeight\":\"21\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SX19qd8DS.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"FjSKvZBXJ\",\"K5pUiSJRe\",\"GoAJ3j9T7\",\"NIymNLEtn\",\"iaVx5vHwQ\"];const serializationHash=\"framer-q7evu\";const variantClassNames={FjSKvZBXJ:\"framer-v-172d1yg\",GoAJ3j9T7:\"framer-v-19ivzq4\",iaVx5vHwQ:\"framer-v-37l3zy\",K5pUiSJRe:\"framer-v-1aal1rc\",NIymNLEtn:\"framer-v-1v3w5t6\"};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={\"NonClick Small\":\"iaVx5vHwQ\",Active:\"FjSKvZBXJ\",Inactive:\"GoAJ3j9T7\",NonClick:\"NIymNLEtn\",Selected:\"K5pUiSJRe\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,RrK_ohoU3:click!==null&&click!==void 0?click:props.RrK_ohoU3,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"FjSKvZBXJ\"};};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,RrK_ohoU3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FjSKvZBXJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MglukPl4_ko4qrd=activeVariantCallback(async(...args)=>{if(RrK_ohoU3){const res=await RrK_ohoU3(...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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-172d1yg\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"FjSKvZBXJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({GoAJ3j9T7:{\"data-framer-name\":\"Inactive\"},iaVx5vHwQ:{\"data-framer-name\":\"NonClick Small\"},K5pUiSJRe:{\"data-framer-name\":\"Selected\"},NIymNLEtn:{\"data-framer-name\":\"NonClick\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||21)-0-21)/2),...addPropertyOverrides({iaVx5vHwQ:{height:16,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||16)-0-16)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxg0yc-container\",\"data-framer-name\":\"Developed\",layoutDependency:layoutDependency,layoutId:\"Tdxx0T9z6-container\",name:\"Developed\",children:/*#__PURE__*/_jsx(Tag,{euBnKSt4p:\"Preorder\",height:\"100%\",id:\"Tdxx0T9z6\",layoutId:\"Tdxx0T9z6\",MglukPl4_:MglukPl4_ko4qrd,name:\"Developed\",nPv58hpzm:\"2px 10px 3px 10px\",PbBl3shHC:\"var(--token-81d7efbd-ac2b-460a-a697-c6e513b9a5c1, rgb(255, 255, 255))\",qNZOUv2_j:16,style:{height:\"100%\"},UHu8MQt_6:true,variant:\"h09JrvXGx\",width:\"100%\",XpdSl1nIq:\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",...addPropertyOverrides({GoAJ3j9T7:{variant:\"blATvsSlD\"},iaVx5vHwQ:{nPv58hpzm:\"2px 7px 2px 7px\",qNZOUv2_j:12,UHu8MQt_6:false,variant:\"RI2pXTMtO\"},K5pUiSJRe:{variant:\"UqNiTtf2Z\"},NIymNLEtn:{variant:\"RI2pXTMtO\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q7evu.framer-llinwb, .framer-q7evu .framer-llinwb { display: block; }\",\".framer-q7evu.framer-172d1yg { 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: 0px; position: relative; width: min-content; }\",\".framer-q7evu .framer-1fxg0yc-container { flex: none; height: 21px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-q7evu.framer-172d1yg { gap: 0px; } .framer-q7evu.framer-172d1yg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-q7evu.framer-172d1yg > :first-child { margin-left: 0px; } .framer-q7evu.framer-172d1yg > :last-child { margin-right: 0px; } }\",\".framer-q7evu.framer-v-37l3zy .framer-1fxg0yc-container { height: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 83\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"K5pUiSJRe\":{\"layout\":[\"auto\",\"auto\"]},\"GoAJ3j9T7\":{\"layout\":[\"auto\",\"auto\"]},\"NIymNLEtn\":{\"layout\":[\"auto\",\"auto\"]},\"iaVx5vHwQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RrK_ohoU3\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertwNeXLpk7=withCSS(Component,css,\"framer-q7evu\");export default FramertwNeXLpk7;FramertwNeXLpk7.displayName=\"Tag Preorder\";FramertwNeXLpk7.defaultProps={height:21,width:83};addPropertyControls(FramertwNeXLpk7,{variant:{options:[\"FjSKvZBXJ\",\"K5pUiSJRe\",\"GoAJ3j9T7\",\"NIymNLEtn\",\"iaVx5vHwQ\"],optionTitles:[\"Active\",\"Selected\",\"Inactive\",\"NonClick\",\"NonClick Small\"],title:\"Variant\",type:ControlType.Enum},RrK_ohoU3:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramertwNeXLpk7,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertwNeXLpk7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"21\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K5pUiSJRe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GoAJ3j9T7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NIymNLEtn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iaVx5vHwQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"RrK_ohoU3\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"83\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"EsaTF9pxb\",\"ul245yRxU\",\"hARF40K12\",\"hb6crnjlc\",\"mI3T6E1_s\"];const serializationHash=\"framer-Ox2oe\";const variantClassNames={EsaTF9pxb:\"framer-v-1pambu9\",hARF40K12:\"framer-v-1ybqe18\",hb6crnjlc:\"framer-v-1g06t8d\",mI3T6E1_s:\"framer-v-lkhml6\",ul245yRxU:\"framer-v-38j43w\"};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={\"NonClick Small\":\"mI3T6E1_s\",Active:\"EsaTF9pxb\",Inactive:\"hARF40K12\",NonClick:\"hb6crnjlc\",Selected:\"ul245yRxU\"};const getProps=({click,height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,RrK_ohoU3:click!==null&&click!==void 0?click:props.RrK_ohoU3,RvOgc0ttG:(_ref=title!==null&&title!==void 0?title:props.RvOgc0ttG)!==null&&_ref!==void 0?_ref:\"Seasonal\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"EsaTF9pxb\"};};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,RrK_ohoU3,RvOgc0ttG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EsaTF9pxb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MglukPl4_ko4qrd=activeVariantCallback(async(...args)=>{if(RrK_ohoU3){const res=await RrK_ohoU3(...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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1pambu9\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"EsaTF9pxb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({hARF40K12:{\"data-framer-name\":\"Inactive\"},hb6crnjlc:{\"data-framer-name\":\"NonClick\"},mI3T6E1_s:{\"data-framer-name\":\"NonClick Small\"},ul245yRxU:{\"data-framer-name\":\"Selected\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||21)-0-21)/2),...addPropertyOverrides({mI3T6E1_s:{height:16,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||16)-0-16)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17863or-container\",\"data-framer-name\":\"Developed\",layoutDependency:layoutDependency,layoutId:\"MzXDdAx7Y-container\",name:\"Developed\",children:/*#__PURE__*/_jsx(Tag,{euBnKSt4p:RvOgc0ttG,height:\"100%\",id:\"MzXDdAx7Y\",layoutId:\"MzXDdAx7Y\",MglukPl4_:MglukPl4_ko4qrd,name:\"Developed\",nPv58hpzm:\"2px 10px 3px 10px\",PbBl3shHC:\"var(--token-90463d3d-15b1-4465-8ef2-48b1563ae621, rgb(104, 34, 33))\",qNZOUv2_j:16,style:{height:\"100%\"},UHu8MQt_6:true,variant:\"h09JrvXGx\",width:\"100%\",XpdSl1nIq:\"var(--token-f1e6f545-1054-453d-9adf-1e5399719d55, rgb(255, 222, 236))\",...addPropertyOverrides({hARF40K12:{variant:\"blATvsSlD\"},hb6crnjlc:{variant:\"RI2pXTMtO\"},mI3T6E1_s:{nPv58hpzm:\"2px 7px 2px 7px\",qNZOUv2_j:12,UHu8MQt_6:false,variant:\"RI2pXTMtO\"},ul245yRxU:{variant:\"UqNiTtf2Z\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ox2oe.framer-1m4fqwu, .framer-Ox2oe .framer-1m4fqwu { display: block; }\",\".framer-Ox2oe.framer-1pambu9 { 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: 0px; position: relative; width: min-content; }\",\".framer-Ox2oe .framer-17863or-container { flex: none; height: 21px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ox2oe.framer-1pambu9 { gap: 0px; } .framer-Ox2oe.framer-1pambu9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ox2oe.framer-1pambu9 > :first-child { margin-left: 0px; } .framer-Ox2oe.framer-1pambu9 > :last-child { margin-right: 0px; } }\",\".framer-Ox2oe.framer-v-lkhml6 .framer-17863or-container { height: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 86\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ul245yRxU\":{\"layout\":[\"auto\",\"auto\"]},\"hARF40K12\":{\"layout\":[\"auto\",\"auto\"]},\"hb6crnjlc\":{\"layout\":[\"auto\",\"auto\"]},\"mI3T6E1_s\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RrK_ohoU3\":\"click\",\"RvOgc0ttG\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW7054lFax=withCSS(Component,css,\"framer-Ox2oe\");export default FramerW7054lFax;FramerW7054lFax.displayName=\"Tag Seasonal\";FramerW7054lFax.defaultProps={height:21,width:86};addPropertyControls(FramerW7054lFax,{variant:{options:[\"EsaTF9pxb\",\"ul245yRxU\",\"hARF40K12\",\"hb6crnjlc\",\"mI3T6E1_s\"],optionTitles:[\"Active\",\"Selected\",\"Inactive\",\"NonClick\",\"NonClick Small\"],title:\"Variant\",type:ControlType.Enum},RrK_ohoU3:{title:\"Click\",type:ControlType.EventHandler},RvOgc0ttG:{defaultValue:\"Seasonal\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerW7054lFax,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW7054lFax\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ul245yRxU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hARF40K12\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hb6crnjlc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mI3T6E1_s\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"RrK_ohoU3\\\":\\\"click\\\",\\\"RvOgc0ttG\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"86\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"21\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Tag from\"https://framerusercontent.com/modules/ye7B7HcvcFFbQk4f5wPS/mvUKciaTENUc5jlQOs70/k8gR8Xn0X.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"MXvMwvOVi\",\"NSdIF7W42\",\"VlXm1MBWm\",\"jOYIuL8sc\",\"x9cJIW6ii\"];const serializationHash=\"framer-QYgcL\";const variantClassNames={jOYIuL8sc:\"framer-v-18a10oe\",MXvMwvOVi:\"framer-v-x7aed6\",NSdIF7W42:\"framer-v-hazchu\",VlXm1MBWm:\"framer-v-1613ns3\",x9cJIW6ii:\"framer-v-11w8jp9\"};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={\"NonClick Small\":\"x9cJIW6ii\",Active:\"MXvMwvOVi\",Inactive:\"VlXm1MBWm\",NonClick:\"jOYIuL8sc\",Selected:\"NSdIF7W42\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,RrK_ohoU3:click!==null&&click!==void 0?click:props.RrK_ohoU3,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"MXvMwvOVi\"};};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,RrK_ohoU3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MXvMwvOVi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const MglukPl4_ko4qrd=activeVariantCallback(async(...args)=>{if(RrK_ohoU3){const res=await RrK_ohoU3(...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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x7aed6\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"MXvMwvOVi\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jOYIuL8sc:{\"data-framer-name\":\"NonClick\"},NSdIF7W42:{\"data-framer-name\":\"Selected\"},VlXm1MBWm:{\"data-framer-name\":\"Inactive\"},x9cJIW6ii:{\"data-framer-name\":\"NonClick Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||21)-0-21)/2),...addPropertyOverrides({x9cJIW6ii:{height:16,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||16)-0-16)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1krdrzq-container\",\"data-framer-name\":\"Developed\",layoutDependency:layoutDependency,layoutId:\"OHm2wKNvA-container\",name:\"Developed\",children:/*#__PURE__*/_jsx(Tag,{euBnKSt4p:\"Developed\",height:\"100%\",id:\"OHm2wKNvA\",layoutId:\"OHm2wKNvA\",MglukPl4_:MglukPl4_ko4qrd,name:\"Developed\",nPv58hpzm:\"2px 10px 3px 10px\",PbBl3shHC:\"var(--token-39d43921-5285-42eb-aa92-99f96c2147d1, rgb(28, 90, 169))\",qNZOUv2_j:16,style:{height:\"100%\"},UHu8MQt_6:true,variant:\"h09JrvXGx\",width:\"100%\",XpdSl1nIq:\"var(--token-f40922df-09bb-418f-843f-22e3d6985cff, rgb(198, 230, 236))\",...addPropertyOverrides({jOYIuL8sc:{variant:\"RI2pXTMtO\"},NSdIF7W42:{variant:\"UqNiTtf2Z\"},VlXm1MBWm:{variant:\"blATvsSlD\"},x9cJIW6ii:{nPv58hpzm:\"2px 7px 2px 7px\",qNZOUv2_j:12,UHu8MQt_6:false,variant:\"RI2pXTMtO\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QYgcL.framer-rp6udy, .framer-QYgcL .framer-rp6udy { display: block; }\",\".framer-QYgcL.framer-x7aed6 { 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: 0px; position: relative; width: min-content; }\",\".framer-QYgcL .framer-1krdrzq-container { flex: none; height: 21px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QYgcL.framer-x7aed6 { gap: 0px; } .framer-QYgcL.framer-x7aed6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QYgcL.framer-x7aed6 > :first-child { margin-left: 0px; } .framer-QYgcL.framer-x7aed6 > :last-child { margin-right: 0px; } }\",\".framer-QYgcL.framer-v-11w8jp9 .framer-1krdrzq-container { height: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NSdIF7W42\":{\"layout\":[\"auto\",\"auto\"]},\"VlXm1MBWm\":{\"layout\":[\"auto\",\"auto\"]},\"jOYIuL8sc\":{\"layout\":[\"auto\",\"auto\"]},\"x9cJIW6ii\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"RrK_ohoU3\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerywnvYi_0m=withCSS(Component,css,\"framer-QYgcL\");export default FramerywnvYi_0m;FramerywnvYi_0m.displayName=\"Tag Developed\";FramerywnvYi_0m.defaultProps={height:21,width:97};addPropertyControls(FramerywnvYi_0m,{variant:{options:[\"MXvMwvOVi\",\"NSdIF7W42\",\"VlXm1MBWm\",\"jOYIuL8sc\",\"x9cJIW6ii\"],optionTitles:[\"Active\",\"Selected\",\"Inactive\",\"NonClick\",\"NonClick Small\"],title:\"Variant\",type:ControlType.Enum},RrK_ohoU3:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerywnvYi_0m,[{explicitInter:true,fonts:[]},...TagFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerywnvYi_0m\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"RrK_ohoU3\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NSdIF7W42\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VlXm1MBWm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jOYIuL8sc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"x9cJIW6ii\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"21\",\"framerIntrinsicWidth\":\"97\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TagCustom from\"https://framerusercontent.com/modules/ZvqccqJeDm9kqLlx7z97/AyxDT7kDI2xG7S5YROzi/il_1udogW.js\";import TagNew from\"https://framerusercontent.com/modules/KHZUayWaPaej3Z9mM1zJ/ofmkFPbvhFkNidowzSqA/SX19qd8DS.js\";import TagPreorder from\"https://framerusercontent.com/modules/UgmBCGq9CDQ2btUFtqXg/eIW294f9pONawDeuLysg/twNeXLpk7.js\";import TagSeasonal from\"https://framerusercontent.com/modules/PBfDoA2xJX08rvuF3sOt/IhVpkp4wyFCvW5FxEKdX/W7054lFax.js\";import TagDeveloped from\"https://framerusercontent.com/modules/vf3zmf2D5j6KEZMkOlsb/jjfeGvhcaP35SGPxKDjk/ywnvYi_0m.js\";const TagNewFonts=getFonts(TagNew);const TagDevelopedFonts=getFonts(TagDeveloped);const TagSeasonalFonts=getFonts(TagSeasonal);const TagCustomFonts=getFonts(TagCustom);const TagPreorderFonts=getFonts(TagPreorder);const cycleOrder=[\"sDPFdS1AJ\",\"NzMak6lt6\"];const serializationHash=\"framer-O16vX\";const variantClassNames={NzMak6lt6:\"framer-v-1a6uaaz\",sDPFdS1AJ:\"framer-v-1umhrtm\"};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={Default:\"sDPFdS1AJ\",Small:\"NzMak6lt6\"};const getProps=({customTag,customTagTitle,developed,height,id,new1,preorder,seasonal,seasonalTitle,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,AMfayfeQy:customTag!==null&&customTag!==void 0?customTag:props.AMfayfeQy,gfup1yKH1:new1!==null&&new1!==void 0?new1:props.gfup1yKH1,Lwq381jka:(_ref=customTagTitle!==null&&customTagTitle!==void 0?customTagTitle:props.Lwq381jka)!==null&&_ref!==void 0?_ref:\"Tag\",mValOcoJ0:developed!==null&&developed!==void 0?developed:props.mValOcoJ0,OEHy_bGK7:(_ref1=seasonalTitle!==null&&seasonalTitle!==void 0?seasonalTitle:props.OEHy_bGK7)!==null&&_ref1!==void 0?_ref1:\"Seasonal\",qJTE_Knj2:preorder!==null&&preorder!==void 0?preorder:props.qJTE_Knj2,ukNLh2xeC:seasonal!==null&&seasonal!==void 0?seasonal:props.ukNLh2xeC,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"sDPFdS1AJ\"};};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,gfup1yKH1,mValOcoJ0,ukNLh2xeC,OEHy_bGK7,AMfayfeQy,Lwq381jka,qJTE_Knj2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sDPFdS1AJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1umhrtm\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sDPFdS1AJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NzMak6lt6:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[gfup1yKH1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||5)-0-21)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-132xl8v-container\",layoutDependency:layoutDependency,layoutId:\"yyhIxeWxx-container\",children:/*#__PURE__*/_jsx(TagNew,{height:\"100%\",id:\"yyhIxeWxx\",layoutId:\"yyhIxeWxx\",variant:\"dNboWp2r1\",width:\"100%\",...addPropertyOverrides({NzMak6lt6:{variant:\"TSCFMAdZL\"}},baseVariant,gestureVariant)})})}),mValOcoJ0&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||5)-0-21)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g78dsj-container\",layoutDependency:layoutDependency,layoutId:\"Mw5PJtGZX-container\",children:/*#__PURE__*/_jsx(TagDeveloped,{height:\"100%\",id:\"Mw5PJtGZX\",layoutId:\"Mw5PJtGZX\",variant:\"jOYIuL8sc\",width:\"100%\",...addPropertyOverrides({NzMak6lt6:{variant:\"x9cJIW6ii\"}},baseVariant,gestureVariant)})})}),ukNLh2xeC&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||5)-0-21)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cwa0q2-container\",layoutDependency:layoutDependency,layoutId:\"Cvvo7adxS-container\",children:/*#__PURE__*/_jsx(TagSeasonal,{height:\"100%\",id:\"Cvvo7adxS\",layoutId:\"Cvvo7adxS\",RvOgc0ttG:OEHy_bGK7,variant:\"hb6crnjlc\",width:\"100%\",...addPropertyOverrides({NzMak6lt6:{variant:\"mI3T6E1_s\"}},baseVariant,gestureVariant)})})}),AMfayfeQy&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||5)-0-21)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10jwyji-container\",layoutDependency:layoutDependency,layoutId:\"hih0RCSTV-container\",children:/*#__PURE__*/_jsx(TagCustom,{CmAtylbhA:Lwq381jka,height:\"100%\",id:\"hih0RCSTV\",layoutId:\"hih0RCSTV\",variant:\"L9Sd3CvxR\",width:\"100%\",...addPropertyOverrides({NzMak6lt6:{variant:\"A6bdwBzdc\"}},baseVariant,gestureVariant)})})}),qJTE_Knj2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||5)-0-21)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7r34av-container\",layoutDependency:layoutDependency,layoutId:\"VMNEtKVnS-container\",children:/*#__PURE__*/_jsx(TagPreorder,{height:\"100%\",id:\"VMNEtKVnS\",layoutId:\"VMNEtKVnS\",variant:\"NIymNLEtn\",width:\"100%\",...addPropertyOverrides({NzMak6lt6:{variant:\"iaVx5vHwQ\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O16vX.framer-9n7q8d, .framer-O16vX .framer-9n7q8d { display: block; }\",\".framer-O16vX.framer-1umhrtm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-end; min-height: 5px; min-width: 137px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-O16vX .framer-132xl8v-container, .framer-O16vX .framer-g78dsj-container, .framer-O16vX .framer-cwa0q2-container, .framer-O16vX .framer-10jwyji-container, .framer-O16vX .framer-7r34av-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O16vX.framer-1umhrtm { gap: 0px; } .framer-O16vX.framer-1umhrtm > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-O16vX.framer-1umhrtm > :first-child { margin-left: 0px; } .framer-O16vX.framer-1umhrtm > :last-child { margin-right: 0px; } }\",\".framer-O16vX.framer-v-1a6uaaz.framer-1umhrtm { min-width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5\n * @framerIntrinsicWidth 137\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NzMak6lt6\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"gfup1yKH1\":\"new1\",\"mValOcoJ0\":\"developed\",\"ukNLh2xeC\":\"seasonal\",\"OEHy_bGK7\":\"seasonalTitle\",\"AMfayfeQy\":\"customTag\",\"Lwq381jka\":\"customTagTitle\",\"qJTE_Knj2\":\"preorder\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqhwio4EnS=withCSS(Component,css,\"framer-O16vX\");export default Framerqhwio4EnS;Framerqhwio4EnS.displayName=\"Product Tags\";Framerqhwio4EnS.defaultProps={height:5,width:137};addPropertyControls(Framerqhwio4EnS,{variant:{options:[\"sDPFdS1AJ\",\"NzMak6lt6\"],optionTitles:[\"Default\",\"Small\"],title:\"Variant\",type:ControlType.Enum},gfup1yKH1:{defaultValue:false,title:\"New\",type:ControlType.Boolean},mValOcoJ0:{defaultValue:false,title:\"Developed\",type:ControlType.Boolean},ukNLh2xeC:{defaultValue:false,title:\"Seasonal\",type:ControlType.Boolean},OEHy_bGK7:{defaultValue:\"Seasonal\",displayTextArea:false,title:\"Seasonal Title\",type:ControlType.String},AMfayfeQy:{defaultValue:false,title:\"Custom Tag\",type:ControlType.Boolean},Lwq381jka:{defaultValue:\"Tag\",displayTextArea:false,title:\"Custom Tag Title\",type:ControlType.String},qJTE_Knj2:{defaultValue:false,title:\"Preorder\",type:ControlType.Boolean}});addFonts(Framerqhwio4EnS,[{explicitInter:true,fonts:[]},...TagNewFonts,...TagDevelopedFonts,...TagSeasonalFonts,...TagCustomFonts,...TagPreorderFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqhwio4EnS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"137\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NzMak6lt6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"gfup1yKH1\\\":\\\"new1\\\",\\\"mValOcoJ0\\\":\\\"developed\\\",\\\"ukNLh2xeC\\\":\\\"seasonal\\\",\\\"OEHy_bGK7\\\":\\\"seasonalTitle\\\",\\\"AMfayfeQy\\\":\\\"customTag\\\",\\\"Lwq381jka\\\":\\\"customTagTitle\\\",\\\"qJTE_Knj2\\\":\\\"preorder\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{PriceDisplay}from\"https://framerusercontent.com/modules/ggQ9ljNENhnY2PQucyiS/3BWxkUzBy5uTvX2az76y/PriceDisplay.js\";import ProductTags from\"https://framerusercontent.com/modules/fXgG0f3MCnjjI4wtvo2v/sxxfvgWRvRZJefBIrxBS/qhwio4EnS.js\";const ProductTagsFonts=getFonts(ProductTags);const PriceDisplayFonts=getFonts(PriceDisplay);const cycleOrder=[\"kLxhAPGgt\",\"lErsWylnI\"];const serializationHash=\"framer-6qR7P\";const variantClassNames={kLxhAPGgt:\"framer-v-vvtdhr\",lErsWylnI:\"framer-v-3wrc00\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Coffee:\"kLxhAPGgt\",Objects:\"lErsWylnI\"};const getProps=({amount,countryBrand,customTag,customTagTitle,developed,hasVariants,height,id,image,imagePadding,new1,preorder,process,productID,productName,seasonal,seasonalTitle,variety,varietyShort,varietyShortVisible,varietyVisible,width,...props})=>{return{...props,b8WYAA6h2:developed??props.b8WYAA6h2,BeWt3VJfT:varietyShort??props.BeWt3VJfT??\"Short\",cQ4GVBMpB:hasVariants??props.cQ4GVBMpB,ebIkM5CpS:imagePadding??props.ebIkM5CpS??\"40px\",EdMOXoLkn:new1??props.EdMOXoLkn,EvH3I8ZQn:varietyShortVisible??props.EvH3I8ZQn,F2VQnvoqg:varietyVisible??props.F2VQnvoqg??true,foZQx1DvF:seasonalTitle??props.foZQx1DvF??\"Seasonal\",FsEfulW5a:preorder??props.FsEfulW5a,h6oP45Z_e:customTagTitle??props.h6oP45Z_e??\"Tag\",hAdfXMfOJ:seasonal??props.hAdfXMfOJ,HnNmrUqOe:variety??props.HnNmrUqOe??\"Variety\",HRiFqWhBu:productID??props.HRiFqWhBu??\"gid://shopify/Product/9472636191057\",Iofvy6bmA:countryBrand??props.Iofvy6bmA??\"Country/Brand\",l2aFZTon7:image??props.l2aFZTon7??{src:\"https://framerusercontent.com/images/RbqRy9hZq7x3wKYVPNgtOp3x7g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RbqRy9hZq7x3wKYVPNgtOp3x7g.png?scale-down-to=512 512w,https://framerusercontent.com/images/RbqRy9hZq7x3wKYVPNgtOp3x7g.png 800w\"},Mwj1Y_7L4:productName??props.Mwj1Y_7L4??\"Product Name\",QmFBZTkqs:customTag??props.QmFBZTkqs,tRLik4QST:process??props.tRLik4QST??\"Process\",variant:humanReadableVariantMap[props.variant]??props.variant??\"kLxhAPGgt\",volTDOoQ9:amount??props.volTDOoQ9??\"0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Mwj1Y_7L4,l2aFZTon7,ebIkM5CpS,Iofvy6bmA,cQ4GVBMpB,HnNmrUqOe,F2VQnvoqg,BeWt3VJfT,EvH3I8ZQn,tRLik4QST,volTDOoQ9,HRiFqWhBu,b8WYAA6h2,EdMOXoLkn,hAdfXMfOJ,foZQx1DvF,QmFBZTkqs,h6oP45Z_e,FsEfulW5a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kLxhAPGgt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"lErsWylnI\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vvtdhr\",className,classNames),\"data-framer-name\":\"Coffee\",layoutDependency:layoutDependency,layoutId:\"kLxhAPGgt\",ref:refBinding,style:{...style},...addPropertyOverrides({lErsWylnI:{\"data-framer-name\":\"Objects\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ghufui\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"j8LXIaey0\",style:{\"--m12ym9\":numberToPixelString(ebIkM5CpS),backgroundColor:\"rgba(240, 236, 224, 0.5)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:805,intrinsicWidth:805,pixelHeight:514,pixelWidth:800,...toResponsiveImage(l2aFZTon7),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-fgxxr1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"kJiBZBwIy\",...addPropertyOverrides({lErsWylnI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:805,intrinsicWidth:805,pixelHeight:1091,pixelWidth:1091,...toResponsiveImage(l2aFZTon7)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s748jk\",\"data-framer-name\":\"Product Info wrapper\",layoutDependency:layoutDependency,layoutId:\"aUjAYdfCf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vedujb\",\"data-framer-name\":\"Product info\",layoutDependency:layoutDependency,layoutId:\"ubj_lRx7n\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fvq9ob\",\"data-framer-name\":\"Name Country Tag Wrapper\",layoutDependency:layoutDependency,layoutId:\"rxL8MwaTe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qy7rnh\",\"data-framer-name\":\"Country Tag\",layoutDependency:layoutDependency,layoutId:\"Z2Zqcuj_D\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pZ3JhIEl0YWxpYyBFeHRyYWxpZ2h0IEl0YWxpYw==\",\"--framer-font-family\":'\"Migra Italic Extralight Italic\", \"Migra Italic Extralight Italic Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0)))\"},children:\"Country/Brand\"})}),className:\"framer-1vxc2z0\",fonts:[\"CUSTOM;Migra Italic Extralight Italic\"],layoutDependency:layoutDependency,layoutId:\"GzQw6id1Y\",style:{\"--extracted-r6o4lv\":\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Iofvy6bmA,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lErsWylnI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01pZ3JhIEl0YWxpYyBFeHRyYWxpZ2h0IEl0YWxpYw==\",\"--framer-font-family\":'\"Migra Italic Extralight Italic\", \"Migra Italic Extralight Italic Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0)))\"},children:\"Brand\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:5,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||280)-0-455)/2+200+0)+20+0+0+0+0+0+0+75,...addPropertyOverrides({lErsWylnI:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||254)-0-429)/2+200+0)+20+0+0+0+0+0+0+75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r9p9bq-container\",layoutDependency:layoutDependency,layoutId:\"QluQxOHhM-container\",nodeId:\"QluQxOHhM\",rendersWithMotion:true,scopeId:\"aanop2WaK\",children:/*#__PURE__*/_jsx(ProductTags,{AMfayfeQy:QmFBZTkqs,gfup1yKH1:EdMOXoLkn,height:\"100%\",id:\"QluQxOHhM\",layoutId:\"QluQxOHhM\",Lwq381jka:h6oP45Z_e,mValOcoJ0:b8WYAA6h2,OEHy_bGK7:foZQx1DvF,qJTE_Knj2:FsEfulW5a,style:{width:\"100%\"},ukNLh2xeC:hAdfXMfOJ,variant:\"NzMak6lt6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0)))\"},children:\"Product Name\"})}),className:\"framer-x64325\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"xX7zu2lNp\",style:{\"--extracted-r6o4lv\":\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Mwj1Y_7L4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iooeug\",\"data-framer-name\":\"Variety price process Wrapper\",layoutDependency:layoutDependency,layoutId:\"KQqrDiF7c\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pad34\",\"data-framer-name\":\"Variety Process\",layoutDependency:layoutDependency,layoutId:\"q3eyUsHQH\",children:[F2VQnvoqg&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgQm9vaw==\",\"--framer-font-family\":'\"PP Neue Montreal Book\", \"PP Neue Montreal Book Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5)))\"},children:\"Variety\"})}),className:\"framer-1nvhnaq\",fonts:[\"CUSTOM;PP Neue Montreal Book\"],layoutDependency:layoutDependency,layoutId:\"RJYSehUAx\",style:{\"--extracted-r6o4lv\":\"var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HnNmrUqOe,verticalAlignment:\"top\",withExternalLayout:true}),EvH3I8ZQn&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgQm9vaw==\",\"--framer-font-family\":'\"PP Neue Montreal Book\", \"PP Neue Montreal Book Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5)))\"},children:\"Short\"})}),className:\"framer-w0x86o\",fonts:[\"CUSTOM;PP Neue Montreal Book\"],layoutDependency:layoutDependency,layoutId:\"viB8PfJyq\",style:{\"--extracted-r6o4lv\":\"var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BeWt3VJfT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgQm9vaw==\",\"--framer-font-family\":'\"PP Neue Montreal Book\", \"PP Neue Montreal Book Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5)))\"},children:\"|\"})}),className:\"framer-v9lhy8\",fonts:[\"CUSTOM;PP Neue Montreal Book\"],layoutDependency:layoutDependency,layoutId:\"OO6k7FNej\",style:{\"--extracted-r6o4lv\":\"var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5))\",\"--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,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgQm9vaw==\",\"--framer-font-family\":'\"PP Neue Montreal Book\", \"PP Neue Montreal Book Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5)))\"},children:\"Process\"})}),className:\"framer-rfblql\",fonts:[\"CUSTOM;PP Neue Montreal Book\"],layoutDependency:layoutDependency,layoutId:\"Q6L9nZVQV\",style:{\"--extracted-r6o4lv\":\"var(--token-ab7737c0-da16-4973-aeb7-202ccbff8688, rgba(0, 0, 0, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tRLik4QST,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14e23m5\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"NxO3YmHfS\",children:[cQ4GVBMpB&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0)))\"},children:\"From \"})}),className:\"framer-l5ib57\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"pqgZf0t6X\",style:{\"--extracted-r6o4lv\":\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8e6rfl-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"i8_cujEPP-container\",nodeId:\"i8_cujEPP\",rendersWithMotion:true,scopeId:\"aanop2WaK\",children:/*#__PURE__*/_jsx(PriceDisplay,{fallbackAmount:volTDOoQ9,font:{fontFamily:'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',fontSize:\"12px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"i8_cujEPP\",layoutId:\"i8_cujEPP\",productId:HRiFqWhBu,style:{height:\"100%\",width:\"100%\"},textColor:\"var(--token-5e356086-fc6d-4b2a-a883-0281b3aed73e, rgb(0, 0, 0))\",width:\"100%\"})})})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6qR7P.framer-js9ulg, .framer-6qR7P .framer-js9ulg { display: block; }\",\".framer-6qR7P.framer-vvtdhr { 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: 295px; }\",\".framer-6qR7P .framer-ghufui { align-content: center; align-items: center; aspect-ratio: 1.75 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 169px); justify-content: center; overflow: visible; padding: var(--m12ym9); position: relative; width: 100%; }\",\".framer-6qR7P .framer-fgxxr1 { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: visible; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 89px); }\",\".framer-6qR7P .framer-s748jk { 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: center; overflow: visible; padding: 20px 5px 0px 5px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-vedujb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-1fvq9ob { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-qy7rnh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-1vxc2z0 { --framer-text-wrap: balance; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6qR7P .framer-r9p9bq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6qR7P .framer-x64325 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6qR7P .framer-iooeug { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-pad34 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-1nvhnaq, .framer-6qR7P .framer-w0x86o, .framer-6qR7P .framer-rfblql { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6qR7P .framer-v9lhy8 { --framer-text-wrap: balance; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-6qR7P .framer-14e23m5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 12px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6qR7P .framer-l5ib57 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6qR7P .framer-8e6rfl-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6qR7P.framer-vvtdhr, .framer-6qR7P .framer-ghufui, .framer-6qR7P .framer-s748jk, .framer-6qR7P .framer-vedujb, .framer-6qR7P .framer-1fvq9ob, .framer-6qR7P .framer-qy7rnh, .framer-6qR7P .framer-iooeug, .framer-6qR7P .framer-pad34, .framer-6qR7P .framer-14e23m5 { gap: 0px; } .framer-6qR7P.framer-vvtdhr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6qR7P.framer-vvtdhr > :first-child, .framer-6qR7P .framer-s748jk > :first-child, .framer-6qR7P .framer-vedujb > :first-child, .framer-6qR7P .framer-1fvq9ob > :first-child, .framer-6qR7P .framer-iooeug > :first-child { margin-top: 0px; } .framer-6qR7P.framer-vvtdhr > :last-child, .framer-6qR7P .framer-s748jk > :last-child, .framer-6qR7P .framer-vedujb > :last-child, .framer-6qR7P .framer-1fvq9ob > :last-child, .framer-6qR7P .framer-iooeug > :last-child { margin-bottom: 0px; } .framer-6qR7P .framer-ghufui > *, .framer-6qR7P .framer-qy7rnh > *, .framer-6qR7P .framer-pad34 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6qR7P .framer-ghufui > :first-child, .framer-6qR7P .framer-qy7rnh > :first-child, .framer-6qR7P .framer-pad34 > :first-child, .framer-6qR7P .framer-14e23m5 > :first-child { margin-left: 0px; } .framer-6qR7P .framer-ghufui > :last-child, .framer-6qR7P .framer-qy7rnh > :last-child, .framer-6qR7P .framer-pad34 > :last-child, .framer-6qR7P .framer-14e23m5 > :last-child { margin-right: 0px; } .framer-6qR7P .framer-s748jk > *, .framer-6qR7P .framer-iooeug > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6qR7P .framer-vedujb > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-6qR7P .framer-1fvq9ob > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-6qR7P .framer-14e23m5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-6qR7P.framer-v-3wrc00 .framer-vedujb { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6qR7P.framer-v-3wrc00 .framer-vedujb { gap: 0px; } .framer-6qR7P.framer-v-3wrc00 .framer-vedujb > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-6qR7P.framer-v-3wrc00 .framer-vedujb > :first-child { margin-top: 0px; } .framer-6qR7P.framer-v-3wrc00 .framer-vedujb > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 295\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lErsWylnI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Mwj1Y_7L4\":\"productName\",\"l2aFZTon7\":\"image\",\"ebIkM5CpS\":\"imagePadding\",\"Iofvy6bmA\":\"countryBrand\",\"cQ4GVBMpB\":\"hasVariants\",\"HnNmrUqOe\":\"variety\",\"F2VQnvoqg\":\"varietyVisible\",\"BeWt3VJfT\":\"varietyShort\",\"EvH3I8ZQn\":\"varietyShortVisible\",\"tRLik4QST\":\"process\",\"volTDOoQ9\":\"amount\",\"HRiFqWhBu\":\"productID\",\"b8WYAA6h2\":\"developed\",\"EdMOXoLkn\":\"new1\",\"hAdfXMfOJ\":\"seasonal\",\"foZQx1DvF\":\"seasonalTitle\",\"QmFBZTkqs\":\"customTag\",\"h6oP45Z_e\":\"customTagTitle\",\"FsEfulW5a\":\"preorder\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameraanop2WaK=withCSS(Component,css,\"framer-6qR7P\");export default Frameraanop2WaK;Frameraanop2WaK.displayName=\"Product Card\";Frameraanop2WaK.defaultProps={height:280,width:295};addPropertyControls(Frameraanop2WaK,{variant:{options:[\"kLxhAPGgt\",\"lErsWylnI\"],optionTitles:[\"Coffee\",\"Objects\"],title:\"Variant\",type:ControlType.Enum},Mwj1Y_7L4:{defaultValue:\"Product Name\",displayTextArea:false,title:\"Product Name\",type:ControlType.String},l2aFZTon7:{__defaultAssetReference:\"data:framer/asset-reference,RbqRy9hZq7x3wKYVPNgtOp3x7g.png?originalFilename=o+Shadow-07.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},ebIkM5CpS:{defaultValue:\"40px\",title:\"Image Padding\",type:ControlType.Padding},Iofvy6bmA:{defaultValue:\"Country/Brand\",displayTextArea:false,title:\"Country/Brand\",type:ControlType.String},cQ4GVBMpB:{defaultValue:false,title:\"Has Variants\",type:ControlType.Boolean},HnNmrUqOe:{defaultValue:\"Variety\",displayTextArea:false,title:\"Variety\",type:ControlType.String},F2VQnvoqg:{defaultValue:true,title:\"Variety Visible\",type:ControlType.Boolean},BeWt3VJfT:{defaultValue:\"Short\",displayTextArea:false,title:\"Variety Short\",type:ControlType.String},EvH3I8ZQn:{defaultValue:false,title:\"Variety Short Visible\",type:ControlType.Boolean},tRLik4QST:{defaultValue:\"Process\",displayTextArea:false,title:\"Process\",type:ControlType.String},volTDOoQ9:{defaultValue:\"0\",displayTextArea:false,title:\"Amount\",type:ControlType.String},HRiFqWhBu:{defaultValue:\"gid://shopify/Product/9472636191057\",placeholder:\"gid://shopify/Product/9472636191057\",title:\"Product ID\",type:ControlType.String},b8WYAA6h2:{defaultValue:false,title:\"Developed\",type:ControlType.Boolean},EdMOXoLkn:{defaultValue:false,title:\"New\",type:ControlType.Boolean},hAdfXMfOJ:{defaultValue:false,title:\"Seasonal\",type:ControlType.Boolean},foZQx1DvF:{defaultValue:\"Seasonal\",displayTextArea:false,title:\"Seasonal Title\",type:ControlType.String},QmFBZTkqs:{defaultValue:false,title:\"Custom Tag\",type:ControlType.Boolean},h6oP45Z_e:{defaultValue:\"Tag\",displayTextArea:false,title:\"Custom Tag Title\",type:ControlType.String},FsEfulW5a:{defaultValue:false,title:\"Preorder\",type:ControlType.Boolean}});addFonts(Frameraanop2WaK,[{explicitInter:true,fonts:[{family:\"Migra Italic Extralight Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/l48cYjIwX30iX7WsPWWBOmkDSg.woff2\"},{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/6uIfYl8bnz9kOy3KOuV7PxhFPhA.woff2\"},{family:\"PP Neue Montreal Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/yUScEiZtXZCqdRimefTfBx1Q4.woff2\"}]},...ProductTagsFonts,...PriceDisplayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameraanop2WaK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"295\",\"framerIntrinsicHeight\":\"280\",\"framerVariables\":\"{\\\"Mwj1Y_7L4\\\":\\\"productName\\\",\\\"l2aFZTon7\\\":\\\"image\\\",\\\"ebIkM5CpS\\\":\\\"imagePadding\\\",\\\"Iofvy6bmA\\\":\\\"countryBrand\\\",\\\"cQ4GVBMpB\\\":\\\"hasVariants\\\",\\\"HnNmrUqOe\\\":\\\"variety\\\",\\\"F2VQnvoqg\\\":\\\"varietyVisible\\\",\\\"BeWt3VJfT\\\":\\\"varietyShort\\\",\\\"EvH3I8ZQn\\\":\\\"varietyShortVisible\\\",\\\"tRLik4QST\\\":\\\"process\\\",\\\"volTDOoQ9\\\":\\\"amount\\\",\\\"HRiFqWhBu\\\":\\\"productID\\\",\\\"b8WYAA6h2\\\":\\\"developed\\\",\\\"EdMOXoLkn\\\":\\\"new1\\\",\\\"hAdfXMfOJ\\\":\\\"seasonal\\\",\\\"foZQx1DvF\\\":\\\"seasonalTitle\\\",\\\"QmFBZTkqs\\\":\\\"customTag\\\",\\\"h6oP45Z_e\\\":\\\"customTagTitle\\\",\\\"FsEfulW5a\\\":\\\"preorder\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lErsWylnI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aanop2WaK.map"],
  "mappings": "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",
  "names": ["API_CONFIG", "IntegratedRead", "key", "sessionValue", "window", "keys", "callback", "sameTabHandler", "event", "value", "crossTabHandler", "PriceDisplay", "props", "productId", "fallbackAmount", "textColor", "font", "price", "setPrice", "ye", "currency", "setCurrency", "fetchMinVariantPrice", "countryCode", "query", "variables", "_data_data_product_priceRange", "_data_data_product", "minPrice", "error", "ue", "selectedCurrency", "handleCurrencyChange", "newCountryIso", "unsubscribe", "formatPrice", "amount", "currencyCode", "numAmount", "p", "Frame", "u", "addPropertyControls", "ControlType", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundColor", "click", "closeButton", "fontSize", "height", "id", "padding", "primaryColor", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XpdSl1nIq", "PbBl3shHC", "euBnKSt4p", "MglukPl4_", "qNZOUv2_j", "nPv58hpzm", "UHu8MQt_6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapvci5jh", "args", "onTap1qanfgn", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerk8gR8Xn0X", "withCSS", "k8gR8Xn0X_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "k8gR8Xn0X_default", "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", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RrK_ohoU3", "CmAtylbhA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MglukPl4_ko4qrd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "Frameril_1udogW", "withCSS", "il_1udogW_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "k8gR8Xn0X_default", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RrK_ohoU3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MglukPl4_ko4qrd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerSX19qd8DS", "withCSS", "SX19qd8DS_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "k8gR8Xn0X_default", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RrK_ohoU3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MglukPl4_ko4qrd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramertwNeXLpk7", "withCSS", "twNeXLpk7_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "k8gR8Xn0X_default", "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", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RrK_ohoU3", "RvOgc0ttG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MglukPl4_ko4qrd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerW7054lFax", "withCSS", "W7054lFax_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "k8gR8Xn0X_default", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RrK_ohoU3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "MglukPl4_ko4qrd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerywnvYi_0m", "withCSS", "ywnvYi_0m_default", "addPropertyControls", "ControlType", "addFonts", "TagNewFonts", "getFonts", "SX19qd8DS_default", "TagDevelopedFonts", "ywnvYi_0m_default", "TagSeasonalFonts", "W7054lFax_default", "TagCustomFonts", "il_1udogW_default", "TagPreorderFonts", "twNeXLpk7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "customTag", "customTagTitle", "developed", "height", "id", "new1", "preorder", "seasonal", "seasonalTitle", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gfup1yKH1", "mValOcoJ0", "ukNLh2xeC", "OEHy_bGK7", "AMfayfeQy", "Lwq381jka", "qJTE_Knj2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "Framerqhwio4EnS", "withCSS", "qhwio4EnS_default", "addPropertyControls", "ControlType", "addFonts", "ProductTagsFonts", "getFonts", "qhwio4EnS_default", "PriceDisplayFonts", "PriceDisplay", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "countryBrand", "customTag", "customTagTitle", "developed", "hasVariants", "height", "id", "image", "imagePadding", "new1", "preorder", "process", "productID", "productName", "seasonal", "seasonalTitle", "variety", "varietyShort", "varietyShortVisible", "varietyVisible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Mwj1Y_7L4", "l2aFZTon7", "ebIkM5CpS", "Iofvy6bmA", "cQ4GVBMpB", "HnNmrUqOe", "F2VQnvoqg", "BeWt3VJfT", "EvH3I8ZQn", "tRLik4QST", "volTDOoQ9", "HRiFqWhBu", "b8WYAA6h2", "EdMOXoLkn", "hAdfXMfOJ", "foZQx1DvF", "QmFBZTkqs", "h6oP45Z_e", "FsEfulW5a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Frameraanop2WaK", "withCSS", "aanop2WaK_default", "addPropertyControls", "ControlType", "addFonts"]
}
