{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/lMIRtTnU78OYN6DqnbKR/Mpc9hkbr1r2b5Jk63lA9/CountdownToDate.js", "ssg:https://framerusercontent.com/modules/yfhKmhR5oH7CqjznanUl/vT1g9i56MVBuyWOVLJh5/mUuB_hzoM.js", "ssg:https://framerusercontent.com/modules/BmVzBnOhfw7JsPUVfVLc/1IRcHTPfFPa6uJWOVUXv/O8O0lOujq.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function CountdownTimerComponent({deadline,fontSize,color,fontFamily,letterSpacing}){const[timeLeft,setTimeLeft]=useState(calculateTimeLeft(deadline));useEffect(()=>{const timer=setInterval(()=>{setTimeLeft(calculateTimeLeft(deadline));},1e3);return()=>clearInterval(timer);},[deadline]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,color:color,fontFamily:fontFamily,letterSpacing:`${letterSpacing}px`,textAlign:\"center\"},children:formatTimeLeft(timeLeft)});}function calculateTimeLeft(deadline){const difference=new Date(deadline)-new Date;let timeLeft={};if(difference>0){timeLeft={days:Math.floor(difference/(1e3*60*60*24)),hours:Math.floor(difference/(1e3*60*60)%24),minutes:Math.floor(difference/1e3/60%60),seconds:Math.floor(difference/1e3%60)};}else{timeLeft={days:0,hours:0,minutes:0,seconds:0};}return timeLeft;}function formatTimeLeft(timeLeft){return`${timeLeft.days} days, ${timeLeft.hours} hours, ${timeLeft.minutes} minutes, ${timeLeft.seconds} seconds`;}// Add property controls for the component\naddPropertyControls(CountdownTimerComponent,{deadline:{type:ControlType.String,title:\"Deadline\",defaultValue:\"2024-12-31T23:59:59\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24,min:10,max:100,unit:\"px\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial, sans-serif\"},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:0,min:-5,max:20,unit:\"px\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"CountdownTimerComponent\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimerComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CountdownToDate.map", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,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 Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{CountdownTimerComponent}from\"https://framerusercontent.com/modules/lMIRtTnU78OYN6DqnbKR/Mpc9hkbr1r2b5Jk63lA9/CountdownToDate.js\";const TickerFonts=getFonts(Ticker);const Ticker1Fonts=getFonts(Ticker1);const FeatherFonts=getFonts(Feather);const CountdownTimerComponentFonts=getFonts(CountdownTimerComponent);const cycleOrder=[\"oIkwb6VAM\",\"qdVDNdgWo\",\"tHRWKaVdI\",\"Z2ScT8ld7\",\"ueZQMIpIs\",\"MOktVIqwr\",\"DNIRpeF4D\",\"qZkaynkYs\",\"iC7q2lCLs\",\"UXAalWMnU\",\"uZ838CEar\",\"JtwtWHTo9\",\"L1u2qELdn\",\"tl3Xj7g5F\",\"zOtNng0i7\",\"yfasn7_c4\",\"U8FWazvmL\",\"Y_G86NHZf\"];const serializationHash=\"framer-9P49R\";const variantClassNames={DNIRpeF4D:\"framer-v-nqa59u\",iC7q2lCLs:\"framer-v-oxpsm7\",JtwtWHTo9:\"framer-v-1j6evwf\",L1u2qELdn:\"framer-v-1vsgqc1\",MOktVIqwr:\"framer-v-97svwt\",oIkwb6VAM:\"framer-v-1q5din0\",qdVDNdgWo:\"framer-v-47oem8\",qZkaynkYs:\"framer-v-1nturd1\",tHRWKaVdI:\"framer-v-o4hclq\",tl3Xj7g5F:\"framer-v-9ft82\",U8FWazvmL:\"framer-v-14bu91q\",ueZQMIpIs:\"framer-v-uz99dn\",UXAalWMnU:\"framer-v-dbldjn\",uZ838CEar:\"framer-v-3hpace\",Y_G86NHZf:\"framer-v-6pyts7\",yfasn7_c4:\"framer-v-1nxv6hn\",Z2ScT8ld7:\"framer-v-1lkw5y8\",zOtNng0i7:\"framer-v-1mequk6\"};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={\"Black Friday Desktop\":\"Z2ScT8ld7\",\"Black Friday Mobile\":\"MOktVIqwr\",\"Black Friday Tablet\":\"ueZQMIpIs\",\"CLOSED - Desktop\":\"L1u2qELdn\",\"CLOSED - Mobile\":\"zOtNng0i7\",\"CLOSED - Tablet\":\"tl3Xj7g5F\",\"Closes Soon - Desktop\":\"DNIRpeF4D\",\"Closes Soon - Mobile\":\"iC7q2lCLs\",\"Closes Soon - Tablet\":\"qZkaynkYs\",\"Early  Bird Tablet\":\"qdVDNdgWo\",\"Early Bird Desktop\":\"oIkwb6VAM\",\"Early Bird Mobile\":\"tHRWKaVdI\",\"Now Open - Desktop\":\"UXAalWMnU\",\"Now Open - Mobile\":\"uZ838CEar\",\"Now Open - Tablet\":\"JtwtWHTo9\",\"VIP Waitlist - Desktop\":\"yfasn7_c4\",\"Waitlist Ticker - Mobile\":\"Y_G86NHZf\",\"Waitlist Ticker - Tablet\":\"U8FWazvmL\"};const getProps=({announcementBarLink,backgroundColor,doorsCloseText,height,id,smoothScroll,visible,width,...props})=>{return{...props,h9K0IHjVy:doorsCloseText??props.h9K0IHjVy??\"Doors close in:\",Qt9Khud2Y:smoothScroll??props.Qt9Khud2Y,RB8gmzfPu:backgroundColor??props.RB8gmzfPu??\"rgb(255, 203, 194)\",TWH3beQzh:announcementBarLink??props.TWH3beQzh,variant:humanReadableVariantMap[props.variant]??props.variant??\"oIkwb6VAM\",VmX5LOTnc:visible??props.VmX5LOTnc??true};};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,VmX5LOTnc,TWH3beQzh,RB8gmzfPu,h9K0IHjVy,Qt9Khud2Y,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oIkwb6VAM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Z2ScT8ld7\",\"ueZQMIpIs\",\"MOktVIqwr\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"yfasn7_c4\",\"U8FWazvmL\",\"Y_G86NHZf\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"Z2ScT8ld7\",\"ueZQMIpIs\",\"MOktVIqwr\",\"yfasn7_c4\",\"U8FWazvmL\",\"Y_G86NHZf\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"qdVDNdgWo\",\"tHRWKaVdI\",\"qZkaynkYs\",\"iC7q2lCLs\",\"uZ838CEar\",\"JtwtWHTo9\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"Z2ScT8ld7\",\"ueZQMIpIs\",\"MOktVIqwr\",\"L1u2qELdn\",\"tl3Xj7g5F\",\"zOtNng0i7\",\"yfasn7_c4\",\"U8FWazvmL\",\"Y_G86NHZf\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"DNIRpeF4D\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"DNIRpeF4D\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:VmX5LOTnc&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TWH3beQzh,motionChild:true,nodeId:\"oIkwb6VAM\",scopeId:\"mUuB_hzoM\",...addPropertyOverrides({JtwtWHTo9:{openInNewTab:false},L1u2qELdn:{smoothScroll:Qt9Khud2Y},qdVDNdgWo:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1q5din0\",className,classNames)} framer-kg0nt`,\"data-framer-name\":\"Early Bird Desktop\",layoutDependency:layoutDependency,layoutId:\"oIkwb6VAM\",ref:refBinding,style:{backgroundColor:RB8gmzfPu,...style},variants:{DNIRpeF4D:{backgroundColor:\"rgb(255, 203, 194)\"},iC7q2lCLs:{backgroundColor:\"rgb(255, 203, 194)\"},JtwtWHTo9:{backgroundColor:\"var(--token-ffb87468-3920-4a5e-876a-152a211bf7c2, rgb(255, 237, 165))\"},L1u2qELdn:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},MOktVIqwr:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},qZkaynkYs:{backgroundColor:\"rgb(255, 203, 194)\"},tl3Xj7g5F:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},U8FWazvmL:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},ueZQMIpIs:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},UXAalWMnU:{backgroundColor:\"var(--token-ffb87468-3920-4a5e-876a-152a211bf7c2, rgb(255, 237, 165))\"},uZ838CEar:{backgroundColor:\"var(--token-ffb87468-3920-4a5e-876a-152a211bf7c2, rgb(255, 237, 165))\"},Y_G86NHZf:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},yfasn7_c4:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},Z2ScT8ld7:{backgroundColor:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},zOtNng0i7:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"}},...addPropertyOverrides({DNIRpeF4D:{\"data-framer-name\":\"Closes Soon - Desktop\"},iC7q2lCLs:{\"data-framer-name\":\"Closes Soon - Mobile\"},JtwtWHTo9:{\"data-framer-name\":\"Now Open - Tablet\"},L1u2qELdn:{\"data-framer-name\":\"CLOSED - Desktop\"},MOktVIqwr:{\"data-framer-name\":\"Black Friday Mobile\"},qdVDNdgWo:{\"data-framer-name\":\"Early  Bird Tablet\"},qZkaynkYs:{\"data-framer-name\":\"Closes Soon - Tablet\"},tHRWKaVdI:{\"data-framer-name\":\"Early Bird Mobile\"},tl3Xj7g5F:{\"data-framer-name\":\"CLOSED - Tablet\"},U8FWazvmL:{\"data-framer-name\":\"Waitlist Ticker - Tablet\"},ueZQMIpIs:{\"data-framer-name\":\"Black Friday Tablet\"},UXAalWMnU:{\"data-framer-name\":\"Now Open - Desktop\"},uZ838CEar:{\"data-framer-name\":\"Now Open - Mobile\"},Y_G86NHZf:{\"data-framer-name\":\"Waitlist Ticker - Mobile\"},yfasn7_c4:{\"data-framer-name\":\"VIP Waitlist - Desktop\"},Z2ScT8ld7:{\"data-framer-name\":\"Black Friday Desktop\"},zOtNng0i7:{\"data-framer-name\":\"CLOSED - Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pr8fs6\",layoutDependency:layoutDependency,layoutId:\"v8ngVOLWX\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dykxfy-container\",\"data-framer-name\":\"BF Ticker\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kgF3qVgOL-container\",name:\"BF Ticker\",nodeId:\"kgF3qVgOL\",rendersWithMotion:true,scopeId:\"mUuB_hzoM\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"kgF3qVgOL\",layoutId:\"kgF3qVgOL\",name:\"BF Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c5o46k\",layoutDependency:layoutDependency,layoutId:\"YXjpqE4YJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sbsr1z\",layoutDependency:layoutDependency,layoutId:\"gBaJ8HdlZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Black Friday / Cyber Monday Sale\"})}),className:\"framer-1xxym1b\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"knOUeZ3BW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--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:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"80.1%\"},children:\"\uD83C\uDF9F\uFE0F\"})}),className:\"framer-1fgsaz0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tGLBZadsC\",style:{\"--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\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get 75% off our Calm Launch Formula course!\"})}),className:\"framer-8eo4cb\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"vGOVFJiOq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--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:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"80%\"},children:\"\uD83E\uDD73\"})}),className:\"framer-1sdrbnj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KE0PV0B1B\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11i9edy-container\",\"data-framer-name\":\"Waitlist Ticker\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TcXl7WkRo-container\",name:\"Waitlist Ticker\",nodeId:\"TcXl7WkRo\",rendersWithMotion:true,scopeId:\"mUuB_hzoM\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"TcXl7WkRo\",layoutId:\"TcXl7WkRo\",name:\"Waitlist Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t16j3u\",layoutDependency:layoutDependency,layoutId:\"CGiXlHEuv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-po3yzc\",layoutDependency:layoutDependency,layoutId:\"sFwmpPTvi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"LAST LAUNCH of our coaching program, WAIM Unlimited opens June 9th!\"})}),className:\"framer-cp07pa\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"Zh3HItmdX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--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:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"80.1%\"},children:\"\uD83C\uDF9F\uFE0F\"})}),className:\"framer-1fet520\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7AtHGgt0\",style:{\"--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\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Click here to get first access and VIP bonuses!\"})}),className:\"framer-p11z5g\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"oJOIqo6Ei\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--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:{\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"80%\"},children:\"\uD83E\uDD73\"})}),className:\"framer-1om0oz4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KSWQQ6hUR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a362ox\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"FqkvrLuEL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i26tte\",layoutDependency:layoutDependency,layoutId:\"b322_1c0q\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eu3ba6\",\"data-framer-name\":\"Message\",layoutDependency:layoutDependency,layoutId:\"X_rhW9rRZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-216)/2)+0+0+88.8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"},className:\"framer-1j4kas\",layoutDependency:layoutDependency,layoutId:\"N66vjmWow\",...addPropertyOverrides({DNIRpeF4D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-216)/2)+0+0+88.8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},iC7q2lCLs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},JtwtWHTo9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},L1u2qELdn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-54.4)/2)+0+0+8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}},qdVDNdgWo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},qZkaynkYs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},tHRWKaVdI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},tl3Xj7g5F:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-54.4)/2)+0+0+8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}},uZ838CEar:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},zOtNng0i7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||105.5)-0-162.4)/2)+0+0+8+0+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited Enrollment is open!\"})}),className:\"framer-ylz1i\",fonts:[\"CUSTOM;Komika Display Kaps Regular\"],layoutDependency:layoutDependency,layoutId:\"ULVJ6tn19\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DNIRpeF4D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited closes soon!\"})})},iC7q2lCLs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited closes soon!\"})})},JtwtWHTo9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited Enrollment is open!\"})})},L1u2qELdn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Sorry Charlie! WAIM Unlimited is now closed!\"})})},qdVDNdgWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited Enrollment is open!\"})})},qZkaynkYs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited closes soon!\"})})},tHRWKaVdI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited Enrollment is open!\"})})},tl3Xj7g5F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Sorry Charlie! WAIM Unlimited is now closed!\"})})},uZ838CEar:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"WAIM Unlimited Enrollment is open!\"})})},zOtNng0i7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Sorry Charlie! WAIM Unlimited is now closed!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-216)/2)+0+0+88.8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"},className:\"framer-m44gxn\",layoutDependency:layoutDependency,layoutId:\"Xs1lgkTZz\",...addPropertyOverrides({DNIRpeF4D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-216)/2)+0+0+88.8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},iC7q2lCLs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},JtwtWHTo9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},L1u2qELdn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-54.4)/2)+0+0+8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}},qdVDNdgWo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},qZkaynkYs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||45)-0-216)/2)+0+0+93.5+0+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/0s3Z7C3v7nod7uLai3SUEvdtZLU.gif\"}},tHRWKaVdI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},tl3Xj7g5F:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||55)-0-54.4)/2)+0+0+8+4.7+0),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}},uZ838CEar:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||75)-0-331.2)/2)+0+0+8+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/Be5MKMSblAs6TiQZccZls7pQw.gif\"}},zOtNng0i7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||105.5)-0-162.4)/2)+0+0+8+0+0+0+36),pixelHeight:480,pixelWidth:480,src:\"https://framerusercontent.com/images/eC6XsIatYElTLpgHr0rmfIOKJk.gif\"}}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ioz2v\",\"data-framer-name\":\"Learn More\",layoutDependency:layoutDependency,layoutId:\"PJVF0pvr7\",style:{backgroundColor:\"rgba(239, 248, 248, 0.5)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{MOktVIqwr:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},U8FWazvmL:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},ueZQMIpIs:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},UXAalWMnU:{backgroundColor:\"rgba(255, 255, 255, 0.6)\"},Y_G86NHZf:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},yfasn7_c4:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"},Z2ScT8ld7:{backgroundColor:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"learn More\"})}),className:\"framer-hzwm7a\",fonts:[\"CUSTOM;Komika Display Kaps Regular\"],layoutDependency:layoutDependency,layoutId:\"hFJ8qlIMj\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({L1u2qELdn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Get updated when it's available\"})})},MOktVIqwr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"learn More\"})})},tl3Xj7g5F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Get updated when it's available\"})})},U8FWazvmL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"learn More\"})})},ueZQMIpIs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"learn More\"})})},Y_G86NHZf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"learn More\"})})},zOtNng0i7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Get updated when it's available\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cbs151-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JTBw9cJDA-container\",nodeId:\"JTBw9cJDA\",rendersWithMotion:true,scopeId:\"mUuB_hzoM\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"JTBw9cJDA\",layoutId:\"JTBw9cJDA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x1mekr\",\"data-framer-name\":\"Countdown\",layoutDependency:layoutDependency,layoutId:\"SmhO46nj6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})}),className:\"framer-hjtv5o\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"mRN4zTQoH\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:h9K0IHjVy,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iC7q2lCLs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})},JtwtWHTo9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})},qdVDNdgWo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})},qZkaynkYs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})},tHRWKaVdI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})},uZ838CEar:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Early Bird pricing ends in:\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a341g3\",layoutDependency:layoutDependency,layoutId:\"u5CRwLWsu\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-156iw16-container\",\"data-framer-name\":\"Early Bird - Countdown\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"iaRy6Ebak-container\",name:\"Early Bird - Countdown\",nodeId:\"iaRy6Ebak\",rendersWithMotion:true,scopeId:\"mUuB_hzoM\",children:/*#__PURE__*/_jsx(CountdownTimerComponent,{color:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",deadline:\"2025-02-25T09:00:00\",fontFamily:\"Satoshi, sans-serif\",fontSize:14,height:\"100%\",id:\"iaRy6Ebak\",layoutId:\"iaRy6Ebak\",letterSpacing:0,name:\"Early Bird - Countdown\",width:\"100%\",...addPropertyOverrides({iC7q2lCLs:{deadline:\"2025-03-11T09:00:00\",fontSize:12},JtwtWHTo9:{deadline:\"2025-03-11T11:00:00\",fontSize:12},qdVDNdgWo:{fontSize:12},qZkaynkYs:{deadline:\"2025-03-11T09:00:00\",fontSize:12},tHRWKaVdI:{fontSize:12},UXAalWMnU:{deadline:\"2025-03-11T11:00:00\"},uZ838CEar:{deadline:\"2025-03-11T11:00:00\",fontSize:12}},baseVariant,gestureVariant)})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17j4rfs-container\",\"data-framer-name\":\"End - Countdown\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"H8Far0G93-container\",name:\"End - Countdown\",nodeId:\"H8Far0G93\",rendersWithMotion:true,scopeId:\"mUuB_hzoM\",children:/*#__PURE__*/_jsx(CountdownTimerComponent,{color:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",deadline:\"2025-03-11T09:00:00\",fontFamily:\"Satoshi, sans-serif\",fontSize:14,height:\"100%\",id:\"H8Far0G93\",layoutId:\"H8Far0G93\",letterSpacing:0,name:\"End - Countdown\",width:\"100%\"})})})]})]})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9P49R.framer-kg0nt, .framer-9P49R .framer-kg0nt { display: block; }\",\".framer-9P49R.framer-1q5din0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1200px; }\",\".framer-9P49R .framer-pr8fs6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9P49R .framer-dykxfy-container, .framer-9P49R .framer-11i9edy-container { flex: none; height: 58px; position: relative; width: 100%; }\",\".framer-9P49R .framer-1c5o46k, .framer-9P49R .framer-1t16j3u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: min-content; }\",\".framer-9P49R .framer-sbsr1z, .framer-9P49R .framer-po3yzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9P49R .framer-1xxym1b, .framer-9P49R .framer-8eo4cb, .framer-9P49R .framer-cp07pa, .framer-9P49R .framer-p11z5g, .framer-9P49R .framer-ylz1i, .framer-9P49R .framer-hzwm7a, .framer-9P49R .framer-hjtv5o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9P49R .framer-1fgsaz0, .framer-9P49R .framer-1sdrbnj, .framer-9P49R .framer-1fet520, .framer-9P49R .framer-1om0oz4 { flex: none; height: 15px; position: relative; white-space: pre-wrap; width: 13px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P49R .framer-a362ox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 8px 24px 8px 24px; position: relative; width: 100%; }\",\".framer-9P49R .framer-1i26tte, .framer-9P49R .framer-1eu3ba6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9P49R .framer-1j4kas, .framer-9P49R .framer-m44gxn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 29px; }\",\".framer-9P49R .framer-7ioz2v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 18px 8px 18px; position: relative; width: min-content; }\",\".framer-9P49R .framer-cbs151-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 20px; }\",\".framer-9P49R .framer-x1mekr { align-content: center; align-items: center; display: flex; flex: none; 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-9P49R .framer-1a341g3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 259px; }\",\".framer-9P49R .framer-156iw16-container, .framer-9P49R .framer-17j4rfs-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9P49R.framer-v-47oem8.framer-1q5din0, .framer-9P49R.framer-v-uz99dn.framer-1q5din0, .framer-9P49R.framer-v-1nturd1.framer-1q5din0, .framer-9P49R.framer-v-1j6evwf.framer-1q5din0, .framer-9P49R.framer-v-9ft82.framer-1q5din0, .framer-9P49R.framer-v-14bu91q.framer-1q5din0 { width: 810px; }\",\".framer-9P49R.framer-v-47oem8 .framer-1a341g3, .framer-9P49R.framer-v-o4hclq .framer-1a341g3, .framer-9P49R.framer-v-1nturd1 .framer-1a341g3, .framer-9P49R.framer-v-oxpsm7 .framer-1a341g3, .framer-9P49R.framer-v-3hpace .framer-1a341g3, .framer-9P49R.framer-v-1j6evwf .framer-1a341g3 { width: 223px; }\",\".framer-9P49R.framer-v-o4hclq.framer-1q5din0, .framer-9P49R.framer-v-oxpsm7.framer-1q5din0, .framer-9P49R.framer-v-3hpace.framer-1q5din0, .framer-9P49R.framer-v-1mequk6.framer-1q5din0 { width: 380px; }\",\".framer-9P49R.framer-v-o4hclq .framer-a362ox, .framer-9P49R.framer-v-oxpsm7 .framer-a362ox, .framer-9P49R.framer-v-3hpace .framer-a362ox, .framer-9P49R.framer-v-1mequk6 .framer-a362ox { flex-direction: column; gap: 0px; padding: 8px; }\",\".framer-9P49R.framer-v-o4hclq .framer-1i26tte, .framer-9P49R.framer-v-oxpsm7 .framer-1i26tte, .framer-9P49R.framer-v-3hpace .framer-1i26tte, .framer-9P49R.framer-v-1mequk6 .framer-1eu3ba6 { width: 100%; }\",\".framer-9P49R.framer-v-o4hclq .framer-1eu3ba6, .framer-9P49R.framer-v-1lkw5y8 .framer-dykxfy-container, .framer-9P49R.framer-v-uz99dn .framer-dykxfy-container, .framer-9P49R.framer-v-oxpsm7 .framer-1eu3ba6, .framer-9P49R.framer-v-3hpace .framer-1eu3ba6, .framer-9P49R.framer-v-1nxv6hn .framer-11i9edy-container, .framer-9P49R.framer-v-14bu91q .framer-11i9edy-container { flex: 1 0 0px; width: 1px; }\",\".framer-9P49R.framer-v-o4hclq .framer-1j4kas, .framer-9P49R.framer-v-o4hclq .framer-m44gxn, .framer-9P49R.framer-v-oxpsm7 .framer-1j4kas, .framer-9P49R.framer-v-oxpsm7 .framer-m44gxn, .framer-9P49R.framer-v-3hpace .framer-1j4kas, .framer-9P49R.framer-v-3hpace .framer-m44gxn, .framer-9P49R.framer-v-1mequk6 .framer-1j4kas, .framer-9P49R.framer-v-1mequk6 .framer-m44gxn { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; }\",\".framer-9P49R.framer-v-o4hclq .framer-ylz1i, .framer-9P49R.framer-v-oxpsm7 .framer-ylz1i, .framer-9P49R.framer-v-3hpace .framer-ylz1i, .framer-9P49R.framer-v-1mequk6 .framer-ylz1i { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9P49R.framer-v-o4hclq .framer-x1mekr, .framer-9P49R.framer-v-oxpsm7 .framer-x1mekr, .framer-9P49R.framer-v-3hpace .framer-x1mekr, .framer-9P49R.framer-v-1mequk6 .framer-1i26tte { flex-direction: column; width: 100%; }\",\".framer-9P49R.framer-v-1lkw5y8 .framer-pr8fs6, .framer-9P49R.framer-v-1nxv6hn .framer-pr8fs6 { flex-direction: row; max-width: 1248px; order: 0; }\",\".framer-9P49R.framer-v-1lkw5y8 .framer-a362ox, .framer-9P49R.framer-v-uz99dn .framer-a362ox, .framer-9P49R.framer-v-1nxv6hn .framer-a362ox, .framer-9P49R.framer-v-14bu91q .framer-a362ox { width: min-content; }\",\".framer-9P49R.framer-v-uz99dn .framer-pr8fs6, .framer-9P49R.framer-v-14bu91q .framer-pr8fs6 { flex-direction: row; order: 0; }\",\".framer-9P49R.framer-v-97svwt.framer-1q5din0, .framer-9P49R.framer-v-6pyts7.framer-1q5din0 { flex-direction: column; gap: 0px; width: 380px; }\",\".framer-9P49R.framer-v-97svwt .framer-pr8fs6, .framer-9P49R.framer-v-6pyts7 .framer-pr8fs6 { flex: none; order: 0; width: 100%; }\",\".framer-9P49R.framer-v-97svwt .framer-a362ox, .framer-9P49R.framer-v-6pyts7 .framer-a362ox { padding: 8px 24px 16px 24px; width: min-content; }\",\".framer-9P49R.framer-v-1vsgqc1 .framer-1i26tte { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qdVDNdgWo\":{\"layout\":[\"fixed\",\"auto\"]},\"tHRWKaVdI\":{\"layout\":[\"fixed\",\"auto\"]},\"Z2ScT8ld7\":{\"layout\":[\"fixed\",\"auto\"]},\"ueZQMIpIs\":{\"layout\":[\"fixed\",\"auto\"]},\"MOktVIqwr\":{\"layout\":[\"fixed\",\"auto\"]},\"DNIRpeF4D\":{\"layout\":[\"fixed\",\"auto\"]},\"qZkaynkYs\":{\"layout\":[\"fixed\",\"auto\"]},\"iC7q2lCLs\":{\"layout\":[\"fixed\",\"auto\"]},\"UXAalWMnU\":{\"layout\":[\"fixed\",\"auto\"]},\"uZ838CEar\":{\"layout\":[\"fixed\",\"auto\"]},\"JtwtWHTo9\":{\"layout\":[\"fixed\",\"auto\"]},\"L1u2qELdn\":{\"layout\":[\"fixed\",\"auto\"]},\"tl3Xj7g5F\":{\"layout\":[\"fixed\",\"auto\"]},\"zOtNng0i7\":{\"layout\":[\"fixed\",\"auto\"]},\"yfasn7_c4\":{\"layout\":[\"fixed\",\"auto\"]},\"U8FWazvmL\":{\"layout\":[\"fixed\",\"auto\"]},\"Y_G86NHZf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VmX5LOTnc\":\"visible\",\"TWH3beQzh\":\"announcementBarLink\",\"RB8gmzfPu\":\"backgroundColor\",\"h9K0IHjVy\":\"doorsCloseText\",\"Qt9Khud2Y\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermUuB_hzoM=withCSS(Component,css,\"framer-9P49R\");export default FramermUuB_hzoM;FramermUuB_hzoM.displayName=\"Announcement Bar\";FramermUuB_hzoM.defaultProps={height:55,width:1200};addPropertyControls(FramermUuB_hzoM,{variant:{options:[\"oIkwb6VAM\",\"qdVDNdgWo\",\"tHRWKaVdI\",\"Z2ScT8ld7\",\"ueZQMIpIs\",\"MOktVIqwr\",\"DNIRpeF4D\",\"qZkaynkYs\",\"iC7q2lCLs\",\"UXAalWMnU\",\"uZ838CEar\",\"JtwtWHTo9\",\"L1u2qELdn\",\"tl3Xj7g5F\",\"zOtNng0i7\",\"yfasn7_c4\",\"U8FWazvmL\",\"Y_G86NHZf\"],optionTitles:[\"Early Bird Desktop\",\"Early  Bird Tablet\",\"Early Bird Mobile\",\"Black Friday Desktop\",\"Black Friday Tablet\",\"Black Friday Mobile\",\"Closes Soon - Desktop\",\"Closes Soon - Tablet\",\"Closes Soon - Mobile\",\"Now Open - Desktop\",\"Now Open - Mobile\",\"Now Open - Tablet\",\"CLOSED - Desktop\",\"CLOSED - Tablet\",\"CLOSED - Mobile\",\"VIP Waitlist - Desktop\",\"Waitlist Ticker - Tablet\",\"Waitlist Ticker - Mobile\"],title:\"Variant\",type:ControlType.Enum},VmX5LOTnc:{defaultValue:true,title:\"Visible?\",type:ControlType.Boolean},TWH3beQzh:{title:\"Announcement Bar Link\",type:ControlType.Link},RB8gmzfPu:{defaultValue:\"rgb(255, 203, 194)\",title:\"Background Color\",type:ControlType.Color},h9K0IHjVy:{defaultValue:\"Doors close in:\",displayTextArea:false,title:\"Doors Close Text\",type:ControlType.String},Qt9Khud2Y:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramermUuB_hzoM,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{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:\"Komika Display Kaps Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/hFMkNcz5G82RNX0SWf5kBGBp27k.woff2\"}]},...TickerFonts,...Ticker1Fonts,...FeatherFonts,...CountdownTimerComponentFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermUuB_hzoM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qdVDNdgWo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tHRWKaVdI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z2ScT8ld7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ueZQMIpIs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MOktVIqwr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DNIRpeF4D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qZkaynkYs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iC7q2lCLs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UXAalWMnU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uZ838CEar\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JtwtWHTo9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L1u2qELdn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tl3Xj7g5F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zOtNng0i7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yfasn7_c4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U8FWazvmL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y_G86NHZf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"55\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"VmX5LOTnc\\\":\\\"visible\\\",\\\"TWH3beQzh\\\":\\\"announcementBarLink\\\",\\\"RB8gmzfPu\\\":\\\"backgroundColor\\\",\\\"h9K0IHjVy\\\":\\\"doorsCloseText\\\",\\\"Qt9Khud2Y\\\":\\\"smoothScroll\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mUuB_hzoM.map", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnnouncementBar from\"https://framerusercontent.com/modules/yfhKmhR5oH7CqjznanUl/vT1g9i56MVBuyWOVLJh5/mUuB_hzoM.js\";const AnnouncementBarFonts=getFonts(AnnouncementBar);const cycleOrder=[\"Wi8V3GT8T\",\"C4QahjycZ\",\"iVG0rObbE\",\"tUCfuEgg6\"];const serializationHash=\"framer-gbURU\";const variantClassNames={C4QahjycZ:\"framer-v-6xoo74\",iVG0rObbE:\"framer-v-1d9x9lp\",tUCfuEgg6:\"framer-v-1e5eanm\",Wi8V3GT8T:\"framer-v-zp10gy\"};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 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={Desktop:\"Wi8V3GT8T\",Phone:\"iVG0rObbE\",Tablet:\"C4QahjycZ\",XL:\"tUCfuEgg6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Wi8V3GT8T\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wi8V3GT8T\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-zp10gy\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Wi8V3GT8T\",ref:refBinding,style:{...style},...addPropertyOverrides({C4QahjycZ:{\"data-framer-name\":\"Tablet\"},iVG0rObbE:{\"data-framer-name\":\"Phone\"},tUCfuEgg6:{\"data-framer-name\":\"XL\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wap8Sx9wG\"},implicitPathVariables:undefined},{href:{webPageId:\"wap8Sx9wG\"},implicitPathVariables:undefined},{href:{webPageId:\"wap8Sx9wG\"},implicitPathVariables:undefined},{href:{webPageId:\"wap8Sx9wG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||58)-0-55)/2),...addPropertyOverrides({iVG0rObbE:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||131)-0-55)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m5ag71-container\",layoutDependency:layoutDependency,layoutId:\"wuNuUwfCy-container\",nodeId:\"wuNuUwfCy\",rendersWithMotion:true,scopeId:\"O8O0lOujq\",children:/*#__PURE__*/_jsx(AnnouncementBar,{h9K0IHjVy:\"Doors close in:\",height:\"100%\",id:\"wuNuUwfCy\",layoutId:\"wuNuUwfCy\",Qt9Khud2Y:false,RB8gmzfPu:\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\",style:{width:\"100%\"},TWH3beQzh:resolvedLinks[0],variant:\"yfasn7_c4\",VmX5LOTnc:true,width:\"100%\",...addPropertyOverrides({C4QahjycZ:{TWH3beQzh:resolvedLinks[1],variant:\"U8FWazvmL\"},iVG0rObbE:{TWH3beQzh:resolvedLinks[2],variant:\"Y_G86NHZf\"},tUCfuEgg6:{TWH3beQzh:resolvedLinks[3]}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gbURU.framer-yslrau, .framer-gbURU .framer-yslrau { display: block; }\",\".framer-gbURU.framer-zp10gy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gbURU .framer-m5ag71-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-gbURU.framer-v-6xoo74.framer-zp10gy { width: 810px; }\",\".framer-gbURU.framer-v-1d9x9lp.framer-zp10gy { width: 390px; }\",\".framer-gbURU.framer-v-1e5eanm.framer-zp10gy { width: 1440px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"C4QahjycZ\":{\"layout\":[\"fixed\",\"auto\"]},\"iVG0rObbE\":{\"layout\":[\"fixed\",\"auto\"]},\"tUCfuEgg6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerO8O0lOujq=withCSS(Component,css,\"framer-gbURU\");export default FramerO8O0lOujq;FramerO8O0lOujq.displayName=\"[Root] Announcement Bar Container\";FramerO8O0lOujq.defaultProps={height:58,width:1200};addPropertyControls(FramerO8O0lOujq,{variant:{options:[\"Wi8V3GT8T\",\"C4QahjycZ\",\"iVG0rObbE\",\"tUCfuEgg6\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"XL\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO8O0lOujq,[{explicitInter:true,fonts:[]},...AnnouncementBarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO8O0lOujq\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"58\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C4QahjycZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iVG0rObbE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tUCfuEgg6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O8O0lOujq.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "CountdownTimerComponent", "deadline", "fontSize", "color", "fontFamily", "letterSpacing", "timeLeft", "setTimeLeft", "ye", "calculateTimeLeft", "ue", "timer", "p", "formatTimeLeft", "difference", "addPropertyControls", "ControlType", "TickerFonts", "getFonts", "Ticker", "Ticker1Fonts", "FeatherFonts", "Icon", "CountdownTimerComponentFonts", "CountdownTimerComponent", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "announcementBarLink", "backgroundColor", "doorsCloseText", "height", "id", "smoothScroll", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "VmX5LOTnc", "TWH3beQzh", "RB8gmzfPu", "h9K0IHjVy", "Qt9Khud2Y", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramermUuB_hzoM", "withCSS", "mUuB_hzoM_default", "addPropertyControls", "ControlType", "addFonts", "AnnouncementBarFonts", "getFonts", "mUuB_hzoM_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", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerO8O0lOujq", "withCSS", "O8O0lOujq_default", "addPropertyControls", "ControlType", "addFonts"]
}
