{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0JbLZy4cicPNL8ihEfRO/nApVOnbQSRaEXWZIDiOm/Scrollprogress.js", "ssg:https://framerusercontent.com/modules/vtxWF0BN8zsLHlJ4hMJ9/psSDHI4BXm5zZ8BjHuDy/TRrRC7DAi.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";// Code component provided by Eleveight Supply\u2122. All rights reserved 2024.\n/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 1200\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight 100%\n */export default function ScrollProgress(props){const[scrollProgress,setScrollProgress]=useState(0);const progressBarRef=useRef(null);const updateScrollProgress=()=>{const totalPageHeight=document.documentElement.scrollHeight-window.innerHeight;const scrollPosition=window.scrollY;const scrollPercentage=Math.min(scrollPosition/totalPageHeight*100,100);setScrollProgress(scrollPercentage);};useEffect(()=>{window.addEventListener(\"scroll\",updateScrollProgress);return()=>{window.removeEventListener(\"scroll\",updateScrollProgress);};},[]);const controlledGlowSpread=spread=>{return Math.log(spread+1)*10;};// For gradient fills, adjust the angle based on orientation\nconst getBackgroundStyle=()=>{if(props.fillType===\"gradient\"){const angle=props.orientation===\"vertical\"?\"180deg\":\"90deg\";return`linear-gradient(${angle}, ${props.gradientStartColor}, ${props.gradientEndColor})`;}return props.fillColor;};const getGlowStyle=()=>{if(props.fillType===\"gradient\"||!props.glowEnabled)return{};const glowColor=props.glowColor||props.fillColor;return{boxShadow:`0 0 ${controlledGlowSpread(props.glowSpread)}px ${controlledGlowSpread(props.glowSpread)}px ${glowColor}`,opacity:props.glowIntensity/100};};// Determine orientation\nconst isVertical=props.orientation===\"vertical\";// Container style: for vertical we use a fixed width (the bar \"thickness\")\nconst containerStyle=isVertical?{width:`${props.barHeight}px`,height:\"100%\",background:getBackgroundStyle(),position:\"relative\",overflow:\"visible\"}:{width:\"100%\",height:`${props.barHeight}px`,background:getBackgroundStyle(),position:\"relative\",overflow:\"visible\"};return /*#__PURE__*/_jsxs(\"div\",{ref:progressBarRef,style:containerStyle,role:\"progressbar\",\"aria-valuenow\":Math.round(scrollProgress),\"aria-valuemin\":0,\"aria-valuemax\":100,children:[/*#__PURE__*/_jsx(motion.div,{initial:isVertical?{height:\"100%\"}:{width:\"100%\"},animate:isVertical?{height:`${100-scrollProgress}%`}:{width:`${100-scrollProgress}%`},transition:props.transition,style:isVertical?{width:\"100%\",backgroundColor:props.backgroundColor,position:\"absolute\",bottom:0,left:0}:{height:\"100%\",backgroundColor:props.backgroundColor,position:\"absolute\",top:0,right:0}}),props.fillType===\"solid\"&&props.glowEnabled&&/*#__PURE__*/_jsx(motion.div,{initial:isVertical?{height:\"0%\"}:{width:\"0%\"},animate:isVertical?{height:`${scrollProgress}%`}:{width:`${scrollProgress}%`},transition:props.transition,style:isVertical?{width:\"100%\",background:props.fillColor,position:\"absolute\",top:0,left:0,...getGlowStyle(),zIndex:1}:{height:\"100%\",background:props.fillColor,position:\"absolute\",top:0,left:0,...getGlowStyle(),zIndex:1}})]});}addPropertyControls(ScrollProgress,{orientation:{type:ControlType.SegmentedEnum,title:\"Orientation\",defaultValue:\"horizontal\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"]},barHeight:{type:ControlType.Number,defaultValue:2,min:1,max:50,step:1,displayStepper:true,unit:\"px\",title:\"Bar Thickness\"},backgroundColor:{type:ControlType.Color,defaultValue:\"#757575\",title:\"Background\"},fillType:{type:ControlType.SegmentedEnum,title:\"Fill Type\",defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],onChange:(value,props)=>{if(value===\"gradient\"){props.glowEnabled=false;}}},fillColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Fill\",hidden(props){return props.fillType===\"gradient\";}},gradientStartColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Start\",hidden(props){return props.fillType===\"solid\";}},gradientEndColor:{type:ControlType.Color,defaultValue:\"#FF00AA\",title:\"End\",hidden(props){return props.fillType===\"solid\";}},glowEnabled:{type:ControlType.Boolean,title:\"Glow\",defaultValue:false,hidden(props){return props.fillType===\"gradient\";}},glowColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Color\",hidden(props){return props.fillType===\"gradient\"||!props.glowEnabled;}},glowIntensity:{type:ControlType.Number,defaultValue:12,min:0,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Intensity\",hidden(props){return!props.glowEnabled;}},glowSpread:{type:ControlType.Number,defaultValue:3,min:1,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Spread\",hidden(props){return!props.glowEnabled;}},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"tween\",duration:0}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollProgress\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"100%\",\"framerIntrinsicWidth\":\"1200\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"300\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scrollprogress.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrollProgress from\"https://framerusercontent.com/modules/0JbLZy4cicPNL8ihEfRO/nApVOnbQSRaEXWZIDiOm/Scrollprogress.js\";import{LikeCounter}from\"https://framerusercontent.com/modules/RtzNcozjSV6yAZCe1WpR/DIXSASvFlrylq9E3CWBn/Likenew.js\";import GoBack from\"https://framerusercontent.com/modules/wbP84VggLmMBBZenUosd/2OvcDWkFVk6QlcQ03AHs/GoBack.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/a71RdQMMh/a71RdQMMh.js\";import OutlinedDigitalPromo from\"#framer/local/canvasComponent/b0HfWaywZ/b0HfWaywZ.js\";import ButtonDefault from\"#framer/local/canvasComponent/d6lxhlxIq/d6lxhlxIq.js\";import FramerPartnerSignup from\"#framer/local/canvasComponent/iU9Hk2KFS/iU9Hk2KFS.js\";import UnlockPremiumGlitch,*as UnlockPremiumGlitchInfo from\"#framer/local/canvasComponent/MLghOwUWx/MLghOwUWx.js\";import AssetTypeTag from\"#framer/local/canvasComponent/o__X_3bQE/o__X_3bQE.js\";import Scrollprogresmobile from\"#framer/local/canvasComponent/pVzAc4BJM/pVzAc4BJM.js\";import BackButton from\"#framer/local/canvasComponent/ra7APiEo2/ra7APiEo2.js\";import AdjustableProperties from\"#framer/local/canvasComponent/wXIrqA_z9/wXIrqA_z9.js\";import{withActiveLicense,withNoActiveLicense}from\"#framer/local/codeFile/oAQ5yWS/FramerAuth.js\";import metadataProvider from\"#framer/local/webPageMetadata/TRrRC7DAi/TRrRC7DAi.js\";const BackButtonFonts=getFonts(BackButton);const GoBackFonts=getFonts(GoBack);const ScrollProgressFonts=getFonts(ScrollProgress);const AssetTypeTagFonts=getFonts(AssetTypeTag);const ScrollprogresmobileFonts=getFonts(Scrollprogresmobile);const ButtonFonts=getFonts(Button);const ButtonWithActiveLicenseniznmlWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"NB0tU6XXb\",override:withActiveLicense,scopeId:\"TRrRC7DAi\"}),ButtonInfo);const RichTextWithActiveLicense15z7s4m=withCodeBoundaryForOverrides(RichText,{nodeId:\"diCDKW91s\",override:withActiveLicense,scopeId:\"TRrRC7DAi\"});const UnlockPremiumGlitchFonts=getFonts(UnlockPremiumGlitch);const UnlockPremiumGlitchWithNoActiveLicense1tnfd75WithMappedReactProps13u50co=withMappedReactProps(withCodeBoundaryForOverrides(UnlockPremiumGlitch,{nodeId:\"CUHaTljoA\",override:withNoActiveLicense,scopeId:\"TRrRC7DAi\"}),UnlockPremiumGlitchInfo);const LikeCounterFonts=getFonts(LikeCounter);const FramerPartnerSignupFonts=getFonts(FramerPartnerSignup);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const AdjustablePropertiesFonts=getFonts(AdjustableProperties);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonDefaultFonts=getFonts(ButtonDefault);const OutlinedDigitalPromoFonts=getFonts(OutlinedDigitalPromo);const breakpoints={EynjvA7Kd:\"(min-width: 810px) and (max-width: 1099px)\",mSfKtLZlX:\"(min-width: 1100px)\",xJmjxjT4G:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ItatQ\";const variantClassNames={EynjvA7Kd:\"framer-v-m94kic\",mSfKtLZlX:\"framer-v-tvi1tx\",xJmjxjT4G:\"framer-v-qmdd3t\"};const transition1={damping:30,delay:0,mass:1,stiffness:143,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transition2={damping:30,delay:.1,mass:1,stiffness:143,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.2,mass:1,stiffness:143,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.3,mass:1,stiffness:143,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"mSfKtLZlX\",Phone:\"xJmjxjT4G\",Tablet:\"EynjvA7Kd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mSfKtLZlX\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xJmjxjT4G\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"xJmjxjT4G\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"xJmjxjT4G\",\"EynjvA7Kd\"].includes(baseVariant))return false;return true;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mSfKtLZlX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(13, 13, 13); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-tvi1tx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bapzbl\",\"data-framer-name\":\"Root\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wgqw9r\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gmetci-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vf0FF0i7F\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(GoBack,{fallbackUrl:\"https://eleveight.supply/components\",height:\"100%\",id:\"vf0FF0i7F\",layoutId:\"vf0FF0i7F\",width:\"100%\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"73px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptoeui-container\",inComponentSlot:true,nodeId:\"braEmfaqo\",rendersWithMotion:true,scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(BackButton,{height:\"100%\",id:\"braEmfaqo\",layoutId:\"braEmfaqo\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldwm9m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n8ad7d\",\"data-framer-name\":\"Component\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1fwkfo\",\"data-framer-appear-id\":\"1fwkfo\",\"data-framer-name\":\"Demo area\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cvjwtb\",\"data-border\":true,\"data-framer-name\":\"Component demo\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cnaz0y-container hidden-qmdd3t\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oRfPM8QyD\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(ScrollProgress,{backgroundColor:\"rgb(17, 17, 17)\",barHeight:2,fillColor:\"rgb(199, 199, 199)\",fillType:\"solid\",glowColor:\"rgb(98, 0, 238)\",glowEnabled:false,glowIntensity:12,glowSpread:3,gradientEndColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",gradientStartColor:\"rgb(92, 92, 92)\",height:\"100%\",id:\"oRfPM8QyD\",layoutId:\"oRfPM8QyD\",orientation:\"horizontal\",style:{width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsbtb8-container hidden-qmdd3t\",nodeId:\"U9sqXgBQd\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(AssetTypeTag,{eWA_166Mb:14,height:\"100%\",id:\"U9sqXgBQd\",layoutId:\"U9sqXgBQd\",LMQvsh5qm:\"remix\",variant:\"fzckxT8b1\",width:\"100%\",wkYj6Fpdz:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dry65u hidden-qmdd3t\",\"data-border\":true,\"data-framer-name\":\"Last updated\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5r3p49\",\"data-framer-name\":\"Dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xj37x2\",\"data-framer-name\":\"notification dot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.6em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.54)\"},children:\"updated \u2014 Oct 6\"})}),className:\"framer-gtebw2\",\"data-framer-name\":\"update on (date)\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3ivhu-container hidden-qmdd3t\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CQODI47l0\",rendersWithMotion:true,scopeId:\"TRrRC7DAi\",style:{rotate:90},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ScrollProgress,{backgroundColor:\"rgb(33, 33, 33)\",barHeight:1,fillColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",fillType:\"gradient\",glowColor:\"rgb(98, 0, 238)\",glowEnabled:false,glowIntensity:12,glowSpread:3,gradientEndColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",gradientStartColor:\"rgba(13, 13, 13, 0)\",height:\"100%\",id:\"CQODI47l0\",layoutId:\"CQODI47l0\",orientation:\"horizontal\",style:{width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:283.5,intrinsicWidth:417,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+0+100+217+0+0+0+0+0+363-269.5),pixelHeight:1134,pixelWidth:1668,sizes:\"667px\",src:\"https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=512&lossless=1\",srcSet:\"https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?lossless=1 1668w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:283.5,intrinsicWidth:417,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+217+0+0+0+0+0+430-330.5),pixelHeight:1134,pixelWidth:1668,sizes:\"667px\",src:\"https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=512&lossless=1\",srcSet:\"https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/8dXNVqFP7ojtr2XysPn73fztQs.png?lossless=1 1668w\"},className:\"framer-upnbw2 hidden-qmdd3t\",\"data-framer-name\":\"Browser\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{height:454,width:\"667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t9dzte-container hidden-tvi1tx hidden-m94kic\",nodeId:\"XSJ1DQtuA\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(Scrollprogresmobile,{height:\"100%\",id:\"XSJ1DQtuA\",layoutId:\"XSJ1DQtuA\",style:{height:\"100%\",width:\"100%\"},variant:\"KHPdXCPXW\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nkk7dk-container hidden-tvi1tx hidden-m94kic\",nodeId:\"TGLEWRcu9\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(AssetTypeTag,{eWA_166Mb:12,height:\"100%\",id:\"TGLEWRcu9\",layoutId:\"TGLEWRcu9\",LMQvsh5qm:\"remix\",variant:\"fzckxT8b1\",width:\"100%\",wkYj6Fpdz:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oy8k70 hidden-tvi1tx hidden-m94kic\",\"data-border\":true,\"data-framer-name\":\"Last updated\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13lawzm\",\"data-framer-name\":\"Dot\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvxp7m\",\"data-framer-name\":\"notification dot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"0.6em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.54)\"},children:\"updated \u2014 Oct 6\"})}),className:\"framer-1rklepk\",\"data-framer-name\":\"update on (date)\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(48, 48, 48)\"},children:\"SCROLL \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(48, 48, 48)\"},children:\"SCROLL \"})}),className:\"framer-1p62cdp hidden-qmdd3t\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(48, 48, 48)\"},children:\"->\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(48, 48, 48)\"},children:\"->\"})}),className:\"framer-138acdl hidden-qmdd3t\",fonts:[\"Inter\"],style:{rotate:90},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ruf2q\",\"data-framer-name\":\"Copy/share buttons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14nusys\",\"data-framer-name\":\"Copy CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"400px\",y:(componentViewport?.y||0)+80+0+100+217+0+0+0+0+387+0+0+0+0},xJmjxjT4G:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+120+217+0+0+0+0+454+58+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-niznml-container\",\"data-framer-name\":\"523523fgasd\",name:\"523523fgasd\",nodeId:\"NB0tU6XXb\",rendersWithMotion:true,scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{BupeSkLPM:\"\",variant:\"hrEQl6bXQ\"}},children:/*#__PURE__*/_jsx(ButtonWithActiveLicenseniznmlWithMappedReactProps1v1ipky,{BupeSkLPM:\"https://framer.com/m/Scrollprogress-vtzD.js@kqyQiIq8sWEVe99fFtlN\",height:\"100%\",id:\"NB0tU6XXb\",Jo69kqeQ3:\"\",Jxh8CRDsq:true,layoutId:\"NB0tU6XXb\",name:\"523523fgasd\",skEROqogE:\"rgb(184, 184, 184)\",style:{width:\"100%\"},um8aBAesm:\"Paste it in your Framer project\",variant:\"N18FOJrcS\",ViCPWJm8n:\"rgb(235, 235, 235)\",VPUy2vBvg:\"Copy component\",width:\"100%\",YIZNYh0Fb:\"\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithActiveLicense15z7s4m,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(89, 89, 89)\"},children:\"Please switch to desktop to copy the component.\"})}),className:\"framer-15z7s4m hidden-tvi1tx hidden-m94kic\",\"data-framer-name\":\"Mobile (plase switch to desktop)\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"400px\",y:(componentViewport?.y||0)+80+0+100+217+0+0+0+0+387+0+0+0+43},xJmjxjT4G:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+0+120+217+0+0+0+0+454+58+0+43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tnfd75-container\",nodeId:\"CUHaTljoA\",rendersWithMotion:true,scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(UnlockPremiumGlitchWithNoActiveLicense1tnfd75WithMappedReactProps13u50co,{height:\"100%\",id:\"CUHaTljoA\",layoutId:\"CUHaTljoA\",style:{width:\"100%\"},variant:\"zmhd4ZapF\",width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lkqx6n hidden-qmdd3t hidden-m94kic\",\"data-framer-name\":\"separator\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zvsf87\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0noxj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"257px\",y:(componentViewport?.y||0)+80+0+100+217+0+0+0+0+387+0+92+78.5},xJmjxjT4G:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+120+217+0+0+0+0+454+0+78.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4izpxv-container\",\"data-framer-name\":\"Share CTA\",name:\"Share CTA\",nodeId:\"eVbfGoZSK\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{style:{width:\"100%\"}},xJmjxjT4G:{style:{width:\"100%\"},variant:\"LmWEiqmLD\"}},children:/*#__PURE__*/_jsx(Button,{BupeSkLPM:\"\",height:\"100%\",id:\"eVbfGoZSK\",Jo69kqeQ3:\"Check out this amazing Scroll Progress Bar Framer code component on Eleveight Supply! \",Jxh8CRDsq:true,layoutId:\"eVbfGoZSK\",name:\"Share CTA\",skEROqogE:\"rgb(227, 227, 227)\",um8aBAesm:\"Paste it in your Framer project\",variant:\"jke7dQ3Hw\",ViCPWJm8n:\"rgb(237, 237, 237)\",VPUy2vBvg:\"Share\",width:\"100%\",YIZNYh0Fb:\"https://www.eleveight.supply/components/scrollprogress\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vz5j7p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yvKQhx8bj\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(LikeCounter,{colors:{borderColor:\"rgba(255, 255, 255, 0.06)\",fill:\"rgb(48, 48, 48)\",hoverBorderColor:\"rgba(255, 255, 255, 0.09)\",hoverFill:\"rgb(61, 61, 61)\",likedBorderColor:\"rgba(255, 255, 255, 0.04)\",likedFill:\"rgb(20, 20, 20)\",likedHoverBorderColor:\"rgba(255, 255, 255, 0.04)\",likedHoverFill:\"rgb(26, 26, 26)\",separatorColor:\"rgba(255, 255, 255, 0.09)\",textColor:\"rgb(245, 245, 245)\"},font:{fontFamily:'\"General Sans\", \"General Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.05em\",lineHeight:\"1em\",textAlign:\"left\"},height:\"100%\",icons:{heartColor:\"rgb(135, 135, 135)\",heartFillColor:\"rgb(204, 250, 2)\",iconLabelGap:8,iconSize:19,iconType:\"thumbsUp\"},id:\"yvKQhx8bj\",labels:{label:\"Like\",likedLabel:\"Liked\"},layoutConfig:{borderWidth:1,cornerRadius:10,gapMode:\"gap\",padding:11,paddingBottom:11,paddingLeft:11,paddingRight:11,paddingTop:11,separatorPadding:4,uniformPadding:false},layoutId:\"yvKQhx8bj\",style:{width:\"100%\"},supabaseConfig:{slug:\"scrollprogress\",supabaseKey:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImRyZW9ndmFuc3Z2aGF0eHZ6YnNzIiwicm9sZSI6ImFub24iLCJpYXQiOjE3Mjc5NTU3NDUsImV4cCI6MjA0MzUzMTc0NX0.9dpkyuRqCiiqgsW4s94OZs4Nlq3r0j8PR4VOpfRLcPs\",supabaseUrl:\"https://dreogvansvvhatxvzbss.supabase.co\"},transitions:{transition:{bounce:.4,delay:0,duration:.5,type:\"spring\"}},width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ik3048 hidden-tvi1tx hidden-m94kic\",\"data-framer-name\":\"Mobile (description)\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-585dh5\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y74t7x\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.7em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scroll Progress\"})}),className:\"framer-1wb6m3d\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12jfw4z hidden-qmdd3t\",\"data-framer-name\":\"new tag\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j5tepf\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 68, 0)\"},children:\"new\"})}),className:\"framer-1qipx5\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18nmeh4\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:\"This component visually indicates the user's scroll progress on a page displaying a horizontal or vertical bar that fills as the user scrolls down. Let your visitors know how much they would have to scroll to reach the end of the page with an elegant and subtle cue. Highly customizable to fit any type of design.\"})}),className:\"framer-1vhzd9j\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"400px\",y:(componentViewport?.y||0)+80+0+100+217+0+0+0+0+703}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"580px\",y:(componentViewport?.y||0)+0+0+120+217+0+0+0+0+678,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1georgx-container hidden-qmdd3t\",nodeId:\"vUh5Ux8E7\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{variant:\"Kg4vLdVTu\"}},children:/*#__PURE__*/_jsx(FramerPartnerSignup,{height:\"100%\",id:\"vUh5Ux8E7\",layoutId:\"vUh5Ux8E7\",NnGZjU6Nh:11,style:{width:\"100%\"},variant:\"VC0NJqi_A\",WECkkTuhP:\"Get started on Framer\",width:\"100%\",zGZscRx6P:'Get 3 free months on Yearly Subscription by entering \"partner25proyearly\" code at checkout.'})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqxl9u\",\"data-framer-name\":\"Description/info\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-kcqcxz hidden-qmdd3t\",\"data-framer-appear-id\":\"kcqcxz\",\"data-framer-name\":\"Description\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sude5k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d1podz\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"0.7em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scroll progress\"})}),className:\"framer-vn1zu6\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10dirtu\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:\"This component visually indicates the user's scroll progress on a page displaying a horizontal or vertical bar that fills as the user scrolls down. Let your visitors know how much they would have to scroll to reach the end of the page with an elegant and subtle cue. Highly customizable to fit any type of design.\"})}),className:\"framer-14wacv7\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{animate:animation}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-15zhbum-container\",\"data-framer-appear-id\":\"15zhbum\",initial:animation1,nodeId:\"UIMy5qBGY\",optimized:true,rendersWithMotion:true,scopeId:\"TRrRC7DAi\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AdjustableProperties,{aiUFpfxJk:\"Fill color\",AoAjxdrUx:false,BAeHXpvoO:\"Fill type (solid/gradient)\",DiIDIPLQc:\"\",eCnbx_rrf:\"Backgroud color\",FwgLSQjW7:true,height:\"100%\",iaSMAzmkp:false,id:\"UIMy5qBGY\",Jjdari0FS:true,JZzMMv2WF:true,k0YLHT7oh:true,layoutId:\"UIMy5qBGY\",lORglulon:\"Bar height/width\",qBh7qGlzF:true,Qhr_5ELmR:\"\",qlO4xVE_L:true,rVBl6XnqL:\"Native Framer motion\",style:{width:\"100%\"},u8tqSmZ40:\"Glow\",width:\"100%\",y3p3WrcJJ:false})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-v3mp1g\",\"data-border\":true,\"data-framer-appear-id\":\"v3mp1g\",\"data-framer-name\":\"Instructions\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(219, 219, 219)\"},children:\"How do I use it?\"})}),className:\"framer-1o2tds4\",\"data-framer-name\":\"Header\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9ttoz\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:\"You need to copy the component and then simply paste it in your Framer project. It will automatically import and appear in your left sidebar in the Assets tab under components - Eleveight Supply folder. From there you can drag it into your canvas for a new instance.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(128, 128, 128)\"},children:'Drag it into your Desktop breakpoint and set it on top making sure the position type is set to \"Fixed\".'})]}),className:\"framer-1ctyt2q\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ipaf9x\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4e14ue\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BHJNrVMq0\"},implicitPathVariables:undefined},{href:{webPageId:\"BHJNrVMq0\"},implicitPathVariables:undefined},{href:{webPageId:\"BHJNrVMq0\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"281px\",y:(componentViewport?.y||0)+80+0+100+217+0+0+0+0+561.4+24+112+0+393+0},xJmjxjT4G:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 600px) - 48px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,width:\"322px\",y:(componentViewport?.y||0)+0+0+120+217+0+0+0+0+561.4+24+112+0+393+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bmtwn9-container\",nodeId:\"dElWeEZsh\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{JFMp9zijn:resolvedLinks[2]},xJmjxjT4G:{JFMp9zijn:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonDefault,{height:\"100%\",id:\"dElWeEZsh\",JFMp9zijn:resolvedLinks[0],layoutId:\"dElWeEZsh\",O1JRp3qkY:false,pIb6BVRi_:\"Set up guide for code components\",style:{height:\"100%\",width:\"100%\"},variant:\"SG3LVIfr_\",width:\"100%\"})})})})})})})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qi72kz hidden-tvi1tx hidden-m94kic\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 600px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17iqmvv-container\",nodeId:\"gg61xI5la\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(FramerPartnerSignup,{height:\"100%\",id:\"gg61xI5la\",layoutId:\"gg61xI5la\",NnGZjU6Nh:11,style:{width:\"100%\"},variant:\"Kg4vLdVTu\",WECkkTuhP:\"Get started on Framer\",width:\"100%\",zGZscRx6P:'Get 3 free months on Yearly Subscription by entering \"partner25proyearly\" code at checkout.'})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EynjvA7Kd:{width:\"745px\",y:(componentViewport?.y||0)+80+0+100+217+0+1217.4},xJmjxjT4G:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 600px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:\"966px\",y:(componentViewport?.y||0)+0+0+120+217+0+1217.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c4ftzv-container\",\"data-framer-name\":\"Outlined (sponsor)\",name:\"Outlined (sponsor)\",nodeId:\"f5DKRMImp\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xJmjxjT4G:{variant:\"XahwdYLsU\"}},children:/*#__PURE__*/_jsx(OutlinedDigitalPromo,{ar7vEer7c:\"https://outlined.digital\",bk8qZG1v7:36,height:\"100%\",id:\"f5DKRMImp\",layoutId:\"f5DKRMImp\",name:\"Outlined (sponsor)\",style:{width:\"100%\"},variant:\"dhww2YpQw\",width:\"100%\"})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zgswi-container hidden-tvi1tx hidden-m94kic\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"LuybqU_93\",scopeId:\"TRrRC7DAi\",children:/*#__PURE__*/_jsx(ScrollProgress,{backgroundColor:\"rgb(31, 31, 31)\",barHeight:2,fillColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",fillType:\"solid\",glowColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",glowEnabled:true,glowIntensity:4,glowSpread:6,gradientEndColor:\"var(--token-051bf1d7-fd25-4536-a2ed-d66837851e28, rgb(204, 250, 0))\",gradientStartColor:\"rgb(92, 92, 92)\",height:\"100%\",id:\"LuybqU_93\",layoutId:\"LuybqU_93\",orientation:\"horizontal\",style:{width:\"100%\"},transition:{duration:0,type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ItatQ.framer-15db7b1, .framer-ItatQ .framer-15db7b1 { display: block; }\",\".framer-ItatQ.framer-tvi1tx { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-ItatQ .framer-1bapzbl { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-wgqw9r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 966px; }\",\".framer-ItatQ .framer-gmetci-container, .framer-ItatQ .framer-4izpxv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ItatQ .framer-ptoeui-container { height: auto; position: relative; width: auto; }\",\".framer-ItatQ .framer-ldwm9m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 966px; z-index: 3; }\",\".framer-ItatQ .framer-n8ad7d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ItatQ .framer-1fwkfo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 90px; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-ItatQ .framer-1cvjwtb { --border-bottom-width: 1px; --border-color: #262525; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 430px; justify-content: center; overflow: hidden; padding: 42px 24px 24px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-ItatQ .framer-cnaz0y-container { flex: none; height: auto; position: absolute; right: -80px; top: 123px; width: 579px; z-index: 4; }\",\".framer-ItatQ .framer-1bsbtb8-container { flex: none; height: auto; position: absolute; right: 24px; top: 24px; width: auto; z-index: 1; }\",\".framer-ItatQ .framer-dry65u { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 24px; overflow: hidden; padding: 6px; position: absolute; top: 24px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ItatQ .framer-5r3p49, .framer-ItatQ .framer-13lawzm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 12px; }\",\".framer-ItatQ .framer-1xj37x2, .framer-ItatQ .framer-1qvxp7m { aspect-ratio: 1 / 1; background-color: #fa2a2a; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: var(--framer-aspect-ratio-supported, 9px); overflow: hidden; position: relative; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ItatQ .framer-gtebw2, .framer-ItatQ .framer-1rklepk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-ItatQ .framer-e3ivhu-container { flex: none; height: auto; position: absolute; right: 344px; top: 65%; transform: translateY(-50%); width: 307px; z-index: 6; }\",\".framer-ItatQ .framer-upnbw2 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 28.000000000000004%, rgba(0,0,0,1) 80%) add; aspect-ratio: 1.470899470899471 / 1; bottom: -122px; flex: none; height: var(--framer-aspect-ratio-supported, 454px); mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 28.000000000000004%, rgba(0,0,0,1) 80%) add; overflow: visible; position: absolute; right: -168px; width: 667px; z-index: 1; }\",\".framer-ItatQ .framer-1t9dzte-container { bottom: -170px; flex: none; height: 454px; left: 37px; position: absolute; width: 667px; z-index: 0; }\",\".framer-ItatQ .framer-1nkk7dk-container { flex: none; height: auto; position: absolute; right: 16px; top: 16px; width: auto; z-index: 1; }\",\".framer-ItatQ .framer-oy8k70 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 16px; overflow: hidden; padding: 6px; position: absolute; top: 16px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-ItatQ .framer-1p62cdp { bottom: 41px; flex: none; height: auto; left: 18px; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-ItatQ .framer-138acdl { bottom: 14px; flex: none; height: auto; left: 33px; position: absolute; white-space: pre-wrap; width: 17px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-ItatQ .framer-ruf2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-ItatQ .framer-14nusys { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ItatQ .framer-niznml-container, .framer-ItatQ .framer-1c4ftzv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ItatQ .framer-15z7s4m, .framer-ItatQ .framer-1vhzd9j, .framer-ItatQ .framer-14wacv7, .framer-ItatQ .framer-1ctyt2q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ItatQ .framer-1tnfd75-container { flex: none; height: auto; position: relative; width: 100%; z-index: 7; }\",\".framer-ItatQ .framer-lkqx6n { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 4px 0px 4px; position: relative; width: min-content; }\",\".framer-ItatQ .framer-zvsf87 { background-color: #212121; flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-ItatQ .framer-1r0noxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ItatQ .framer-1vz5j7p-container { flex: none; height: auto; position: relative; width: 135px; z-index: 10; }\",\".framer-ItatQ .framer-ik3048 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ItatQ .framer-585dh5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 8px 16px 8px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-1y74t7x, .framer-ItatQ .framer-1d1podz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-1wb6m3d, .framer-ItatQ .framer-1qipx5, .framer-ItatQ .framer-vn1zu6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ItatQ .framer-12jfw4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ItatQ .framer-1j5tepf { --border-bottom-width: 1px; --border-color: rgba(255, 106, 0, 0.25); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 106, 0, 0.12); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 23px; justify-content: flex-end; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ItatQ .framer-18nmeh4, .framer-ItatQ .framer-10dirtu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-1georgx-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-ItatQ .framer-1dqxl9u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 370px; }\",\".framer-ItatQ .framer-kcqcxz { align-content: flex-start; align-items: flex-start; background-color: #121212; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-ItatQ .framer-1sude5k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-15zhbum-container { flex: none; height: auto; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-ItatQ .framer-v3mp1g { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-ItatQ .framer-1o2tds4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ItatQ .framer-1b9ttoz { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-ipaf9x { background-color: #1f1f1f; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ItatQ .framer-4e14ue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-1bmtwn9-container { flex: 1 0 0px; height: 43px; position: relative; width: 1px; }\",\".framer-ItatQ .framer-qi72kz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ItatQ .framer-17iqmvv-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ItatQ .framer-4zgswi-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 390px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ItatQ.framer-tvi1tx, .framer-ItatQ .framer-1bapzbl, .framer-ItatQ .framer-wgqw9r, .framer-ItatQ .framer-ldwm9m, .framer-ItatQ .framer-n8ad7d, .framer-ItatQ .framer-1fwkfo, .framer-ItatQ .framer-1cvjwtb, .framer-ItatQ .framer-dry65u, .framer-ItatQ .framer-5r3p49, .framer-ItatQ .framer-oy8k70, .framer-ItatQ .framer-13lawzm, .framer-ItatQ .framer-ruf2q, .framer-ItatQ .framer-14nusys, .framer-ItatQ .framer-lkqx6n, .framer-ItatQ .framer-1r0noxj, .framer-ItatQ .framer-ik3048, .framer-ItatQ .framer-585dh5, .framer-ItatQ .framer-1y74t7x, .framer-ItatQ .framer-12jfw4z, .framer-ItatQ .framer-1j5tepf, .framer-ItatQ .framer-18nmeh4, .framer-ItatQ .framer-1dqxl9u, .framer-ItatQ .framer-kcqcxz, .framer-ItatQ .framer-1sude5k, .framer-ItatQ .framer-1d1podz, .framer-ItatQ .framer-10dirtu, .framer-ItatQ .framer-v3mp1g, .framer-ItatQ .framer-1b9ttoz, .framer-ItatQ .framer-4e14ue, .framer-ItatQ .framer-qi72kz { gap: 0px; } .framer-ItatQ.framer-tvi1tx > *, .framer-ItatQ .framer-14nusys > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ItatQ.framer-tvi1tx > :first-child, .framer-ItatQ .framer-1bapzbl > :first-child, .framer-ItatQ .framer-ldwm9m > :first-child, .framer-ItatQ .framer-1fwkfo > :first-child, .framer-ItatQ .framer-1cvjwtb > :first-child, .framer-ItatQ .framer-14nusys > :first-child, .framer-ItatQ .framer-ik3048 > :first-child, .framer-ItatQ .framer-585dh5 > :first-child, .framer-ItatQ .framer-1j5tepf > :first-child, .framer-ItatQ .framer-18nmeh4 > :first-child, .framer-ItatQ .framer-1dqxl9u > :first-child, .framer-ItatQ .framer-kcqcxz > :first-child, .framer-ItatQ .framer-1sude5k > :first-child, .framer-ItatQ .framer-10dirtu > :first-child, .framer-ItatQ .framer-v3mp1g > :first-child, .framer-ItatQ .framer-1b9ttoz > :first-child { margin-top: 0px; } .framer-ItatQ.framer-tvi1tx > :last-child, .framer-ItatQ .framer-1bapzbl > :last-child, .framer-ItatQ .framer-ldwm9m > :last-child, .framer-ItatQ .framer-1fwkfo > :last-child, .framer-ItatQ .framer-1cvjwtb > :last-child, .framer-ItatQ .framer-14nusys > :last-child, .framer-ItatQ .framer-ik3048 > :last-child, .framer-ItatQ .framer-585dh5 > :last-child, .framer-ItatQ .framer-1j5tepf > :last-child, .framer-ItatQ .framer-18nmeh4 > :last-child, .framer-ItatQ .framer-1dqxl9u > :last-child, .framer-ItatQ .framer-kcqcxz > :last-child, .framer-ItatQ .framer-1sude5k > :last-child, .framer-ItatQ .framer-10dirtu > :last-child, .framer-ItatQ .framer-v3mp1g > :last-child, .framer-ItatQ .framer-1b9ttoz > :last-child { margin-bottom: 0px; } .framer-ItatQ .framer-1bapzbl > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-ItatQ .framer-wgqw9r > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-ItatQ .framer-wgqw9r > :first-child, .framer-ItatQ .framer-n8ad7d > :first-child, .framer-ItatQ .framer-dry65u > :first-child, .framer-ItatQ .framer-5r3p49 > :first-child, .framer-ItatQ .framer-oy8k70 > :first-child, .framer-ItatQ .framer-13lawzm > :first-child, .framer-ItatQ .framer-ruf2q > :first-child, .framer-ItatQ .framer-lkqx6n > :first-child, .framer-ItatQ .framer-1r0noxj > :first-child, .framer-ItatQ .framer-1y74t7x > :first-child, .framer-ItatQ .framer-12jfw4z > :first-child, .framer-ItatQ .framer-1d1podz > :first-child, .framer-ItatQ .framer-4e14ue > :first-child, .framer-ItatQ .framer-qi72kz > :first-child { margin-left: 0px; } .framer-ItatQ .framer-wgqw9r > :last-child, .framer-ItatQ .framer-n8ad7d > :last-child, .framer-ItatQ .framer-dry65u > :last-child, .framer-ItatQ .framer-5r3p49 > :last-child, .framer-ItatQ .framer-oy8k70 > :last-child, .framer-ItatQ .framer-13lawzm > :last-child, .framer-ItatQ .framer-ruf2q > :last-child, .framer-ItatQ .framer-lkqx6n > :last-child, .framer-ItatQ .framer-1r0noxj > :last-child, .framer-ItatQ .framer-1y74t7x > :last-child, .framer-ItatQ .framer-12jfw4z > :last-child, .framer-ItatQ .framer-1d1podz > :last-child, .framer-ItatQ .framer-4e14ue > :last-child, .framer-ItatQ .framer-qi72kz > :last-child { margin-right: 0px; } .framer-ItatQ .framer-ldwm9m > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ItatQ .framer-n8ad7d > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ItatQ .framer-1fwkfo > *, .framer-ItatQ .framer-ik3048 > *, .framer-ItatQ .framer-kcqcxz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ItatQ .framer-1cvjwtb > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ItatQ .framer-dry65u > *, .framer-ItatQ .framer-oy8k70 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-ItatQ .framer-5r3p49 > *, .framer-ItatQ .framer-13lawzm > *, .framer-ItatQ .framer-lkqx6n > *, .framer-ItatQ .framer-4e14ue > *, .framer-ItatQ .framer-qi72kz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ItatQ .framer-ruf2q > *, .framer-ItatQ .framer-1r0noxj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ItatQ .framer-585dh5 > *, .framer-ItatQ .framer-18nmeh4 > *, .framer-ItatQ .framer-1dqxl9u > *, .framer-ItatQ .framer-1sude5k > *, .framer-ItatQ .framer-10dirtu > *, .framer-ItatQ .framer-v3mp1g > *, .framer-ItatQ .framer-1b9ttoz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ItatQ .framer-1y74t7x > *, .framer-ItatQ .framer-1d1podz > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ItatQ .framer-12jfw4z > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-ItatQ .framer-1j5tepf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-ItatQ[data-border=\"true\"]::after, .framer-ItatQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-ItatQ.framer-tvi1tx { padding: 80px 0px 0px 0px; width: 390px; } .framer-ItatQ .framer-1bapzbl { padding: 82px 16px 40px 16px; } .framer-ItatQ .framer-wgqw9r { max-width: 600px; width: 100%; } .framer-ItatQ .framer-ldwm9m { gap: 50px; max-width: 600px; width: 100%; } .framer-ItatQ .framer-n8ad7d, .framer-ItatQ .framer-qi72kz { flex-direction: column; } .framer-ItatQ .framer-1fwkfo { flex: none; gap: 8px; position: relative; top: unset; width: 100%; } .framer-ItatQ .framer-1cvjwtb { height: min-content; min-height: 350px; order: 0; padding: 36px 24px 0px 24px; } .framer-ItatQ .framer-ruf2q { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(269px, 1fr)); order: 2; } .framer-ItatQ .framer-14nusys { align-self: start; flex: none; gap: 10px; justify-self: start; order: 0; width: 100%; } .framer-ItatQ .framer-niznml-container { pointer-events: none; } .framer-ItatQ .framer-1r0noxj { align-self: start; justify-self: start; order: 1; width: 100%; } .framer-ItatQ .framer-4izpxv-container { flex: 1 0 0px; width: 1px; } .framer-ItatQ .framer-ik3048 { order: 1; } .framer-ItatQ .framer-1dqxl9u { width: 100%; } .framer-ItatQ .framer-v3mp1g { will-change: var(--framer-will-change-override, transform); } .framer-ItatQ .framer-17iqmvv-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ItatQ .framer-ldwm9m, .framer-ItatQ .framer-n8ad7d, .framer-ItatQ .framer-1fwkfo, .framer-ItatQ .framer-ruf2q, .framer-ItatQ .framer-14nusys, .framer-ItatQ .framer-qi72kz { gap: 0px; } .framer-ItatQ .framer-ldwm9m > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-ItatQ .framer-ldwm9m > :first-child, .framer-ItatQ .framer-n8ad7d > :first-child, .framer-ItatQ .framer-1fwkfo > :first-child, .framer-ItatQ .framer-14nusys > :first-child, .framer-ItatQ .framer-qi72kz > :first-child { margin-top: 0px; } .framer-ItatQ .framer-ldwm9m > :last-child, .framer-ItatQ .framer-n8ad7d > :last-child, .framer-ItatQ .framer-1fwkfo > :last-child, .framer-ItatQ .framer-14nusys > :last-child, .framer-ItatQ .framer-qi72kz > :last-child { margin-bottom: 0px; } .framer-ItatQ .framer-n8ad7d > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ItatQ .framer-1fwkfo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ItatQ .framer-ruf2q > *, .framer-ItatQ .framer-ruf2q > :first-child, .framer-ItatQ .framer-ruf2q > :last-child { margin: 0px; } .framer-ItatQ .framer-14nusys > *, .framer-ItatQ .framer-qi72kz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1099px) { .framer-ItatQ.framer-tvi1tx { padding: 80px 0px 0px 0px; width: 810px; } .framer-ItatQ .framer-1bapzbl { padding: 100px 0px 80px 0px; } .framer-ItatQ .framer-wgqw9r, .framer-ItatQ .framer-ldwm9m { width: 745px; } .framer-ItatQ .framer-1cvjwtb { height: 363px; padding: 50px 24px 24px 24px; } .framer-ItatQ .framer-cnaz0y-container { right: -104px; top: 116px; width: 429px; } .framer-ItatQ .framer-e3ivhu-container { right: 190px; top: 69%; width: 267px; } .framer-ItatQ .framer-upnbw2 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 45%, rgba(0,0,0,1) 80%) add; bottom: -183px; mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 45%, rgba(0,0,0,1) 80%) add; right: -342px; } .framer-ItatQ .framer-1p62cdp { bottom: 40px; } .framer-ItatQ .framer-138acdl { bottom: 18px; left: 31px; } .framer-ItatQ .framer-ruf2q { flex-direction: column; } .framer-ItatQ .framer-14nusys { flex: none; width: 100%; } .framer-ItatQ .framer-1r0noxj { width: 100%; } .framer-ItatQ .framer-4izpxv-container { flex: 1 0 0px; width: 1px; } .framer-ItatQ .framer-1dqxl9u { width: 329px; } .framer-ItatQ .framer-kcqcxz { width: 328px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ItatQ .framer-ruf2q { gap: 0px; } .framer-ItatQ .framer-ruf2q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ItatQ .framer-ruf2q > :first-child { margin-top: 0px; } .framer-ItatQ .framer-ruf2q > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1800\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xJmjxjT4G\":{\"layout\":[\"fixed\",\"auto\"]},\"EynjvA7Kd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerTRrRC7DAi=withCSS(Component,css,\"framer-ItatQ\");export default FramerTRrRC7DAi;FramerTRrRC7DAi.displayName=\"Components / Animatedcounter\";FramerTRrRC7DAi.defaultProps={height:1800,width:1100};addFonts(FramerTRrRC7DAi,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.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/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:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"}]},...BackButtonFonts,...GoBackFonts,...ScrollProgressFonts,...AssetTypeTagFonts,...ScrollprogresmobileFonts,...ButtonFonts,...UnlockPremiumGlitchFonts,...LikeCounterFonts,...FramerPartnerSignupFonts,...AdjustablePropertiesFonts,...ButtonDefaultFonts,...OutlinedDigitalPromoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTRrRC7DAi\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1800\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xJmjxjT4G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EynjvA7Kd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1100\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ScrollProgress", "props", "scrollProgress", "setScrollProgress", "ye", "progressBarRef", "pe", "updateScrollProgress", "totalPageHeight", "window", "scrollPosition", "scrollPercentage", "ue", "controlledGlowSpread", "spread", "getBackgroundStyle", "getGlowStyle", "glowColor", "isVertical", "containerStyle", "u", "p", "motion", "addPropertyControls", "ControlType", "value", "BackButtonFonts", "getFonts", "ra7APiEo2_default", "GoBackFonts", "GoBack", "ScrollProgressFonts", "ScrollProgress", "AssetTypeTagFonts", "o_X_3bQE_default", "ScrollprogresmobileFonts", "pVzAc4BJM_default", "ButtonFonts", "a71RdQMMh_default", "ButtonWithActiveLicenseniznmlWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withActiveLicense", "a71RdQMMh_exports", "RichTextWithActiveLicense15z7s4m", "RichText2", "UnlockPremiumGlitchFonts", "MLghOwUWx_default", "UnlockPremiumGlitchWithNoActiveLicense1tnfd75WithMappedReactProps13u50co", "withNoActiveLicense", "MLghOwUWx_exports", "LikeCounterFonts", "LikeCounter", "FramerPartnerSignupFonts", "iU9Hk2KFS_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "AdjustablePropertiesFonts", "wXIrqA_z9_default", "ContainerWithOptimizedAppearEffect", "Container", "ButtonDefaultFonts", "d6lxhlxIq_default", "OutlinedDigitalPromoFonts", "b0HfWaywZ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "x", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "css", "FramerTRrRC7DAi", "withCSS", "TRrRC7DAi_default", "addFonts", "__FramerMetadata__"]
}
