{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js", "ssg:https://framerusercontent.com/modules/PZD7hiVrzaQJDdatSPmH/fxKGygT356tutVckclBI/kZVsYLCC5.js", "ssg:https://framerusercontent.com/modules/kw5YoHltrN3fi8oyr8FD/GyiQjC9W9GfSsw7trEQK/YqiYz4h9f.js", "ssg:https://framerusercontent.com/modules/bE9j5xHnfvbocquAF3SV/YxPdOVPUiKThd5K66NrH/twlQzHp43.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;const calculateTimeLeft=(difference,digitCount)=>{if(difference>0){return{days:minTwoDigits(Math.floor(difference/(1e3*60*60*24)),digitCount),hours:minTwoDigits(Math.floor(difference/(1e3*60*60)%24),digitCount),minutes:minTwoDigits(Math.floor(difference/1e3/60%60),digitCount),seconds:minTwoDigits(Math.floor(difference/1e3%60),digitCount)};}return{days:0,hours:0,minutes:0,seconds:0};};function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function minTwoDigits(number,digitCount){if(digitCount)return number;else return(number<10?\"0\":\"\")+number;}function wrapInSpan(colorValue,string){return /*#__PURE__*/_jsx(\"span\",{style:{color:colorValue},children:string});}function createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor){// Dots as default labels\nlet days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,space,showHours?wrapInSpan(labelColor,`:`):``]});let hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,space,showMinutes?wrapInSpan(labelColor,`:`):``]}):``;let minutes=showHours&&showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,space,showSeconds?wrapInSpan(labelColor,`:`):``]}):``;let seconds=showHours&&showMinutes&&showSeconds?timeLeft.seconds:``;// Custom labels have different logic\n// Dots you want to hide depending on the next item, but labels you do not\n// For example, 20D 4H is a common notation, but you do not want 20:4:, you want 20:4\nif(!labelType){days=/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.days,spaceForLabel,wrapInSpan(labelColor,dayLabel)]});hours=showHours?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.hours,spaceForLabel,wrapInSpan(labelColor,hourLabel)]}):``;minutes=showMinutes?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.minutes,spaceForLabel,wrapInSpan(labelColor,minuteLabel)]}):``;seconds=showSeconds?/*#__PURE__*/_jsxs(_Fragment,{children:[timeLeft.seconds,spaceForLabel,wrapInSpan(labelColor,secondLabel)]}):``;}return /*#__PURE__*/_jsxs(_Fragment,{children:[days,space,hours,space,minutes,space,seconds]});}/**\n * COUNTDOWN\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function CountdownTimer(props){const{date,pickTime,font,color,labelColor,displayProps,onComplete}=props;const{digitCount,labelType,numberSpace,labelSpace,dayLabel,hourLabel,minuteLabel,secondLabel,showHours,showMinutes,showSeconds,tabularFont}=displayProps;const{fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,lineHeight}=font;const[visible,setIsVisible]=useState(false);const difference=+new Date(date).setUTCHours(pickTime)-+new Date;if(difference<=0){onComplete===null||onComplete===void 0?void 0:onComplete();}const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();useEffect(()=>{setIsVisible(true);// Don\u2019t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);const timeLeft=calculateTimeLeft(difference,digitCount);const space=numberSpace?\"\":\" \";const spaceForLabel=labelSpace?\"\":\" \";const emptyString=`00:00:00:00`;const timeString=createCountdownString(timeLeft,{showHours,showMinutes,showSeconds},{dayLabel,hourLabel,minuteLabel,secondLabel},{space,spaceForLabel,labelType},labelColor);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,...font,margin:0,padding:0,visibility:visible?\"visible\":\"hidden\",fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:difference>0?timeString:emptyString});}CountdownTimer.displayName=\"Countdown\";const defaultDate=new Date;defaultDate.setDate(defaultDate.getDate()+2);/* Property Controls */addPropertyControls(CountdownTimer,{date:{type:ControlType.Date,title:\"Date\",defaultValue:defaultDate.toISOString()},pickTime:{type:ControlType.Number,min:0,max:24,defaultValue:0,step:1,displayStepper:true,title:\"UTC\",unit:\":00\"},displayProps:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Dots, Labels\",icon:\"boolean\",controls:{digitCount:{title:\"Digits\",type:ControlType.Boolean,enabledTitle:\"One\",disabledTitle:\"Two\",defaultValue:false},labelType:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Dots\",disabledTitle:\"Custom\",defaultValue:true},numberSpace:{type:ControlType.Boolean,title:\"Number\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:false},labelSpace:{type:ControlType.Boolean,title:\"Label\",enabledTitle:\"Auto\",disabledTitle:\"Space\",defaultValue:true,hidden:props=>props.labelType},dayLabel:{type:ControlType.String,title:\"Days\",defaultValue:\"D\",placeholder:\"D\",hidden:props=>props.labelType},showHours:{title:\"Hours\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},hourLabel:{type:ControlType.String,title:\" \",defaultValue:\"H\",placeholder:\"H\",hidden:props=>props.labelType||!props.showHours},showMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours},minuteLabel:{type:ControlType.String,title:\" \",defaultValue:\"M\",placeholder:\"M\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true,hidden:props=>!props.showHours||!props.showMinutes},secondLabel:{type:ControlType.String,title:\" \",defaultValue:\"S\",placeholder:\"S\",hidden:props=>props.labelType||!props.showHours||!props.showMinutes||!props.showSeconds},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true}}},font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#999\"},labelColor:{title:\"Label\",type:ControlType.Color,defaultValue:\"rgba(153,153,153,0.5)\"},onComplete:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Countdown.map", "// Generated by Framer (d65f646)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-NdCTa .framer-styles-preset-1ps8our:not(.rich-text-wrapper), .framer-NdCTa .framer-styles-preset-1ps8our.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-13f77768-cca6-421b-a59e-609684e25ad3, #ffffff); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-13f77768-cca6-421b-a59e-609684e25ad3, #ffffff); --framer-link-text-decoration: none; }\"];export const className=\"framer-NdCTa\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-aA2Dp .framer-styles-preset-b4oymk:not(.rich-text-wrapper), .framer-aA2Dp .framer-styles-preset-b4oymk.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0.02em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-13f77768-cca6-421b-a59e-609684e25ad3, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-aA2Dp\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Countdown from\"https://framerusercontent.com/modules/YA3iK3Afo27kYzYjpTSi/wzOjO4NRX4sgx6glGj2D/Countdown.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/PZD7hiVrzaQJDdatSPmH/fxKGygT356tutVckclBI/kZVsYLCC5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kw5YoHltrN3fi8oyr8FD/GyiQjC9W9GfSsw7trEQK/YqiYz4h9f.js\";const CountdownFonts=getFonts(Countdown);const cycleOrder=[\"BaNbWIHJy\",\"Y8GKRawf6\",\"Cl0bLemlO\",\"Dti18NAjU\",\"T2_Ht9md5\",\"l6_EfyI5y\",\"KEcX74P0p\",\"k4ywvGvWS\",\"QIOTWAdBE\",\"Y8Rv4l1Ta\",\"MlLra6cEf\",\"DqnEeGk01\",\"qFAFboG3U\",\"UIW_oKo3V\",\"ayNKckJnd\",\"yTlR_6OZP\",\"ddE9wLpBP\",\"pl5bPvN6G\",\"EQF3cJcaS\",\"PJzVv7pkS\"];const serializationHash=\"framer-40yyC\";const variantClassNames={ayNKckJnd:\"framer-v-1ghom0x\",BaNbWIHJy:\"framer-v-1pg45vt\",Cl0bLemlO:\"framer-v-jczj0v\",ddE9wLpBP:\"framer-v-1w2amfs\",DqnEeGk01:\"framer-v-1k2z7ru\",Dti18NAjU:\"framer-v-8n4vad\",EQF3cJcaS:\"framer-v-1gsb9pj\",k4ywvGvWS:\"framer-v-1rjwuru\",KEcX74P0p:\"framer-v-gwumca\",l6_EfyI5y:\"framer-v-19dnuxr\",MlLra6cEf:\"framer-v-1mstt91\",PJzVv7pkS:\"framer-v-7wucnr\",pl5bPvN6G:\"framer-v-1wspfag\",qFAFboG3U:\"framer-v-1vs0sts\",QIOTWAdBE:\"framer-v-pdb2c1\",T2_Ht9md5:\"framer-v-1ql5rxd\",UIW_oKo3V:\"framer-v-vqnzeo\",Y8GKRawf6:\"framer-v-pidpk4\",Y8Rv4l1Ta:\"framer-v-orszmc\",yTlR_6OZP:\"framer-v-zou4dj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Memorial Day Timer - Mobile\":\"ddE9wLpBP\",\"Memorial Day Timer\":\"yTlR_6OZP\",\"Oral Semaglutide\":\"T2_Ht9md5\",\"Sale - Promo\":\"Dti18NAjU\",\"Tirzepitide Banner\":\"BaNbWIHJy\",\"Weight Management\":\"Y8GKRawf6\",FIRSTMONTH100:\"ayNKckJnd\",Kyzatrex:\"l6_EfyI5y\",None:\"PJzVv7pkS\",ORALTRT:\"KEcX74P0p\",Provider100:\"UIW_oKo3V\",Referral100:\"qFAFboG3U\",Sale:\"Cl0bLemlO\",Save100Off:\"DqnEeGk01\",SIS:\"EQF3cJcaS\",TEG:\"pl5bPvN6G\",TV100:\"Y8Rv4l1Ta\",TVSave100:\"QIOTWAdBE\",TVSave50:\"k4ywvGvWS\",YouTube:\"MlLra6cEf\"};const getProps=({click,height,id,width,...props})=>{return{...props,lRIdPmoUP:click??props.lRIdPmoUP,variant:humanReadableVariantMap[props.variant]??props.variant??\"BaNbWIHJy\"};};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,lRIdPmoUP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BaNbWIHJy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1oi9xvo=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(lRIdPmoUP){const res=await lRIdPmoUP(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const isDisplayed=()=>{if(baseVariant===\"PJzVv7pkS\")return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if([\"yTlR_6OZP\",\"ddE9wLpBP\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pg45vt\",className,classNames),\"data-framer-name\":\"Tirzepitide Banner\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BaNbWIHJy\",onTap:onTap1oi9xvo,ref:refBinding,style:{backgroundColor:\"var(--token-38ac2736-6571-41a4-b205-79f39791f93f, rgb(0, 131, 108))\",...style},...addPropertyOverrides({ayNKckJnd:{\"data-framer-name\":\"FIRSTMONTH100\"},Cl0bLemlO:{\"data-framer-name\":\"Sale\"},ddE9wLpBP:{\"data-framer-name\":\"Memorial Day Timer - Mobile\"},DqnEeGk01:{\"data-framer-name\":\"Save100Off\"},Dti18NAjU:{\"data-framer-name\":\"Sale - Promo\"},EQF3cJcaS:{\"data-framer-name\":\"SIS\"},k4ywvGvWS:{\"data-framer-name\":\"TVSave50\"},KEcX74P0p:{\"data-framer-name\":\"ORALTRT\"},l6_EfyI5y:{\"data-framer-name\":\"Kyzatrex\"},MlLra6cEf:{\"data-framer-name\":\"YouTube\"},pl5bPvN6G:{\"data-framer-name\":\"TEG\"},qFAFboG3U:{\"data-framer-name\":\"Referral100\"},QIOTWAdBE:{\"data-framer-name\":\"TVSave100\"},T2_Ht9md5:{\"data-framer-name\":\"Oral Semaglutide\"},UIW_oKo3V:{\"data-framer-name\":\"Provider100\"},Y8GKRawf6:{\"data-framer-name\":\"Weight Management\"},Y8Rv4l1Ta:{\"data-framer-name\":\"TV100\"},yTlR_6OZP:{\"data-framer-name\":\"Memorial Day Timer\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"./tirzepatide/\",motionChild:true,nodeId:\"ejv14W1zW\",openInNewTab:false,scopeId:\"twlQzHp43\",...addPropertyOverrides({ayNKckJnd:{href:undefined},Cl0bLemlO:{href:\"./promo/\"},ddE9wLpBP:{href:undefined},DqnEeGk01:{href:undefined},Dti18NAjU:{href:undefined},EQF3cJcaS:{href:undefined},k4ywvGvWS:{href:undefined},KEcX74P0p:{href:undefined},l6_EfyI5y:{href:undefined},MlLra6cEf:{href:undefined},pl5bPvN6G:{href:undefined},qFAFboG3U:{href:undefined},QIOTWAdBE:{href:undefined},T2_Ht9md5:{href:\"./semaglutide-oral/\"},UIW_oKo3V:{href:undefined},Y8GKRawf6:{href:\"./weight-management/\"},Y8Rv4l1Ta:{href:undefined},yTlR_6OZP:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e7b7m8 framer-1kl91eg\",layoutDependency:layoutDependency,layoutId:\"ejv14W1zW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Compounded Tirzepatide Program Now Available \u2192\"})}),className:\"framer-5fuz01\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a8vaHs_IK\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ayNKckJnd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special Offer! $100 Off - Use Code \"FirstMonth100\"'})})},Cl0bLemlO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Save up to $100 off your first month!\"})})},ddE9wLpBP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:[\"Memorial Day Sale!\",/*#__PURE__*/_jsx(motion.br,{}),\"$100 Off First Month Ends Soon!\"]})})},DqnEeGk01:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special Offer! $100 Off - Use Code \"Save100Off\"'})})},Dti18NAjU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Save up to $100 off your first month!\"})})},EQF3cJcaS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\" For SIS Members - Save up to $600 Annually\"})})},k4ywvGvWS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special TV Offer!  $50 Off - Use Code \"TVSave50\"'})})},KEcX74P0p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Try New Oral TRT & Save $150 with our Introductory Offer!\"})})},l6_EfyI5y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Oral Testosterone Treatment Now Available \u2192\"})})},MlLra6cEf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"e27eX6tlY\"},motionChild:true,nodeId:\"a8vaHs_IK\",openInNewTab:false,scopeId:\"twlQzHp43\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ps8our\",\"data-styles-preset\":\"kZVsYLCC5\",children:\"First Month Sale\"})}),' - Use Coupon \"YouTube100\" for $100 off']})})},pl5bPvN6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\" For TEG Members - Save up to $600 Annually\"})})},qFAFboG3U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special Offer! $100 Off - Use Code \"Refer100\"'})})},QIOTWAdBE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:' Special TV Offer! $100 Off - Use Code  \"TVSave100\"'})})},T2_Ht9md5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Oral Semaglutide Program Now Available \u2192\"})})},UIW_oKo3V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special Offer! $100 Off - Use Code \"Provider100\"'})})},Y8GKRawf6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",style:{\"--framer-text-alignment\":\"center\"},children:\"Compare our GLP-1 Weight Management Treatments\u2192\"})})},Y8Rv4l1Ta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:'Special TV Offer! $100 Off - Use Code \"TV100\"'})})},yTlR_6OZP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-b4oymk\",\"data-styles-preset\":\"YqiYz4h9f\",children:\"Memorial Day Sale! $100 Off First Month Ends Soon!\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12mqw64-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"weYSREVoA-container\",nodeId:\"weYSREVoA\",rendersWithMotion:true,scopeId:\"twlQzHp43\",children:/*#__PURE__*/_jsx(Countdown,{color:\"var(--token-13f77768-cca6-421b-a59e-609684e25ad3, rgb(255, 255, 255))\",date:\"2024-05-28T00:00:00.000Z\",displayProps:{dayLabel:\"d\",digitCount:true,hourLabel:\"h\",labelSpace:true,labelType:false,minuteLabel:\"m\",numberSpace:false,secondLabel:\"s\",showHours:true,showMinutes:true,showSeconds:true,tabularFont:true},font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"weYSREVoA\",labelColor:\"var(--token-f8e987d7-4b79-4992-80a6-bb5d68c6f53a, rgb(204, 230, 225))\",layoutId:\"weYSREVoA\",pickTime:24,width:\"100%\"})})})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-40yyC.framer-1kl91eg, .framer-40yyC .framer-1kl91eg { display: block; }\",\".framer-40yyC.framer-1pg45vt { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 32px; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-40yyC .framer-1e7b7m8 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 5px 16px 5px 16px; position: relative; text-decoration: none; width: 1px; }\",\".framer-40yyC .framer-5fuz01 { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-40yyC .framer-12mqw64-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-40yyC.framer-v-jczj0v .framer-1e7b7m8 { padding: 5px; }\",\".framer-40yyC.framer-v-jczj0v .framer-5fuz01, .framer-40yyC.framer-v-1ql5rxd .framer-5fuz01, .framer-40yyC.framer-v-19dnuxr .framer-5fuz01, .framer-40yyC.framer-v-gwumca .framer-5fuz01, .framer-40yyC.framer-v-1rjwuru .framer-5fuz01, .framer-40yyC.framer-v-pdb2c1 .framer-5fuz01, .framer-40yyC.framer-v-orszmc .framer-5fuz01, .framer-40yyC.framer-v-1k2z7ru .framer-5fuz01, .framer-40yyC.framer-v-1vs0sts .framer-5fuz01, .framer-40yyC.framer-v-vqnzeo .framer-5fuz01, .framer-40yyC.framer-v-1ghom0x .framer-5fuz01, .framer-40yyC.framer-v-1wspfag .framer-5fuz01, .framer-40yyC.framer-v-1gsb9pj .framer-5fuz01 { cursor: unset; }\",\".framer-40yyC.framer-v-8n4vad .framer-1e7b7m8 { align-self: unset; height: min-content; padding: 5px; }\",\".framer-40yyC.framer-v-1mstt91 .framer-5fuz01 { --framer-custom-cursors: pointer; cursor: unset; }\",\".framer-40yyC.framer-v-zou4dj .framer-5fuz01, .framer-40yyC.framer-v-1w2amfs .framer-5fuz01 { cursor: unset; flex: none; white-space: pre; width: auto; }\",\".framer-40yyC.framer-v-1wspfag .framer-1e7b7m8 { align-self: unset; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"Y8GKRawf6\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"Cl0bLemlO\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"Dti18NAjU\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"T2_Ht9md5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"l6_EfyI5y\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"KEcX74P0p\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"k4ywvGvWS\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"QIOTWAdBE\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"Y8Rv4l1Ta\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"MlLra6cEf\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"DqnEeGk01\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"qFAFboG3U\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"UIW_oKo3V\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"ayNKckJnd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"yTlR_6OZP\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"ddE9wLpBP\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"pl5bPvN6G\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"EQF3cJcaS\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]},\"PJzVv7pkS\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"32px\",null]}}}\n * @framerVariables {\"lRIdPmoUP\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramertwlQzHp43=withCSS(Component,css,\"framer-40yyC\");export default FramertwlQzHp43;FramertwlQzHp43.displayName=\"Banner\";FramertwlQzHp43.defaultProps={height:32,width:1200};addPropertyControls(FramertwlQzHp43,{variant:{options:[\"BaNbWIHJy\",\"Y8GKRawf6\",\"Cl0bLemlO\",\"Dti18NAjU\",\"T2_Ht9md5\",\"l6_EfyI5y\",\"KEcX74P0p\",\"k4ywvGvWS\",\"QIOTWAdBE\",\"Y8Rv4l1Ta\",\"MlLra6cEf\",\"DqnEeGk01\",\"qFAFboG3U\",\"UIW_oKo3V\",\"ayNKckJnd\",\"yTlR_6OZP\",\"ddE9wLpBP\",\"pl5bPvN6G\",\"EQF3cJcaS\",\"PJzVv7pkS\"],optionTitles:[\"Tirzepitide Banner\",\"Weight Management\",\"Sale\",\"Sale - Promo\",\"Oral Semaglutide\",\"Kyzatrex\",\"ORALTRT\",\"TVSave50\",\"TVSave100\",\"TV100\",\"YouTube\",\"Save100Off\",\"Referral100\",\"Provider100\",\"FIRSTMONTH100\",\"Memorial Day Timer\",\"Memorial Day Timer - Mobile\",\"TEG\",\"SIS\",\"None\"],title:\"Variant\",type:ControlType.Enum},lRIdPmoUP:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramertwlQzHp43,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...CountdownFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertwlQzHp43\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"Y8GKRawf6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"Cl0bLemlO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"Dti18NAjU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"T2_Ht9md5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"l6_EfyI5y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"KEcX74P0p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"k4ywvGvWS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"QIOTWAdBE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"Y8Rv4l1Ta\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"MlLra6cEf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"DqnEeGk01\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"qFAFboG3U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"UIW_oKo3V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"ayNKckJnd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"yTlR_6OZP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"ddE9wLpBP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"pl5bPvN6G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"EQF3cJcaS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]},\\\"PJzVv7pkS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"32px\\\",null]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"lRIdPmoUP\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./twlQzHp43.map"],
  "mappings": "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",
  "names": ["fontStack", "calculateTimeLeft", "difference", "digitCount", "minTwoDigits", "useForceRender", "_", "set", "ye", "te", "v", "number", "wrapInSpan", "colorValue", "string", "p", "createCountdownString", "timeLeft", "showHours", "showMinutes", "showSeconds", "dayLabel", "hourLabel", "minuteLabel", "secondLabel", "space", "spaceForLabel", "labelType", "labelColor", "days", "u", "l", "hours", "minutes", "seconds", "CountdownTimer", "props", "date", "pickTime", "font", "color", "displayProps", "onComplete", "numberSpace", "labelSpace", "tabularFont", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "lineHeight", "visible", "setIsVisible", "isCanvas", "RenderTarget", "render", "ue", "int", "emptyString", "timeString", "defaultDate", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "CountdownFonts", "getFonts", "CountdownTimer", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lRIdPmoUP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1oi9xvo", "args", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramertwlQzHp43", "withCSS", "twlQzHp43_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
