{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/hZG4Wp2gp9ursJZb4GVO/XLI98SZsqnmrMir805c9/JdKglnOo2.js", "ssg:https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js", "ssg:https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){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]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as i,cx as n,Image as o,Link as l,RichText as s,useLocaleInfo as d,useVariantState as f,withCSS as m}from\"framer\";import{LayoutGroup as p,motion as c,MotionConfigContext as u}from\"framer-motion\";import*as g from\"react\";let h={tjadBLFfB:{hover:!0}},v=[\"CsaphUa6A\",\"tjadBLFfB\",\"oF1HrpIjg\",\"UFSvxd5GD\",\"FDORazcvH\"],x=\"framer-jYHo6\",b={CsaphUa6A:\"framer-v-opfgyt\",FDORazcvH:\"framer-v-s0sfet\",oF1HrpIjg:\"framer-v-1n4hpes\",tjadBLFfB:\"framer-v-3c336o\",UFSvxd5GD:\"framer-v-1071ey0\"};function y(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let F={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},j=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,R=({value:r,children:t})=>{let a=g.useContext(u),i=null!=r?r:a.transition,n=g.useMemo(()=>({...a,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/e(u.Provider,{value:n,children:t});},H={\"Desktop Invert\":\"tjadBLFfB\",\"Desktop Primary\":\"CsaphUa6A\",\"Mobile Invert\":\"UFSvxd5GD\",Mobile:\"oF1HrpIjg\",Round:\"FDORazcvH\"},I=({height:e,id:r,image:t,title:a,width:i,...n})=>{var o,l,s,d;return{...n,LlNz79XDh:null!==(o=null!=t?t:n.LlNz79XDh)&&void 0!==o?o:{src:\"https://framerusercontent.com/images/VQP47XKEhbkqHheXNeEDedIVWnY.png\"},PzRqnpxib:null!==(l=null!=a?a:n.PzRqnpxib)&&void 0!==l?l:\"START FOR \\xa31\",variant:null!==(d=null!==(s=H[n.variant])&&void 0!==s?s:n.variant)&&void 0!==d?d:\"CsaphUa6A\"};},S=(e,r)=>r.join(\"-\")+e.layoutDependency,B=/*#__PURE__*/g.forwardRef(function(t,a){let{activeLocale:i}=d(),{style:m,className:u,layoutId:x,variant:H,PzRqnpxib:B,LlNz79XDh:k,...D}=I(t),{baseVariant:T,classNames:z,gestureVariant:N,setGestureState:O,setVariant:w,transition:A,variants:M}=f({cycleOrder:v,defaultVariant:\"CsaphUa6A\",enabledGestures:h,transitions:F,variant:H,variantClassNames:b}),Y=S(t,M),C=g.useRef(null),L=g.useId();return /*#__PURE__*/e(p,{id:null!=x?x:L,children:/*#__PURE__*/e(c.div,{initial:H,animate:M,onHoverStart:()=>O({isHovered:!0}),onHoverEnd:()=>O({isHovered:!1}),onTapStart:()=>O({isPressed:!0}),onTap:()=>O({isPressed:!1}),onTapCancel:()=>O({isPressed:!1}),className:n(\"framer-jYHo6\",...[],z),style:{display:\"contents\"},children:/*#__PURE__*/e(R,{value:A,children:/*#__PURE__*/e(l,{href:\"https://signup.bloklondon.com/digital\",openInNewTab:!1,...y({FDORazcvH:{smoothScroll:!0}},T,N),children:/*#__PURE__*/r(c.a,{...D,className:`${n(\"framer-opfgyt\",u)} framer-1mx5ai5`,\"data-framer-name\":\"Desktop Primary\",layoutDependency:Y,layoutId:\"CsaphUa6A\",ref:null!=a?a:C,style:{backdropFilter:\"none\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,filter:\"none\",WebkitBackdropFilter:\"none\",WebkitFilter:\"none\",...m},variants:{\"tjadBLFfB-hover\":{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},FDORazcvH:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},tjadBLFfB:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.9)\",WebkitBackdropFilter:\"blur(10px)\"},UFSvxd5GD:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}},...y({\"tjadBLFfB-hover\":{\"data-framer-name\":void 0},FDORazcvH:{\"data-framer-name\":\"Round\"},oF1HrpIjg:{\"data-framer-name\":\"Mobile\"},tjadBLFfB:{\"data-framer-name\":\"Desktop Invert\"},UFSvxd5GD:{\"data-framer-name\":\"Mobile Invert\"}},T,N),children:[\"FDORazcvH\"!==T&&/*#__PURE__*/e(s,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"right\"},children:\"START FOR \\xa31\"})}),className:\"framer-1ojgysa\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:Y,layoutId:\"Nzh_HBcfd\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:B,variants:{tjadBLFfB:{\"--extracted-r6o4lv\":\"var(--token-4a6b677e-8171-4a07-b049-3d708e9575db, rgb(0, 0, 0))\"}},verticalAlignment:\"center\",withExternalLayout:!0,...y({oF1HrpIjg:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"right\"},children:\"START FOR \\xa31\"})})},tjadBLFfB:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a6b677e-8171-4a07-b049-3d708e9575db, rgb(0, 0, 0)))\"},children:\"START FOR \\xa31\"})})},UFSvxd5GD:{children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", \"Suisse Intl Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"right\"},children:\"START FOR \\xa31\"})})}},T,N)}),/*#__PURE__*/e(o,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:72,intrinsicWidth:72,pixelHeight:72,pixelWidth:72,sizes:\"26px\",...j(k)},className:\"framer-1g10iu0\",layoutDependency:Y,layoutId:\"JlQcF5qOK\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}})]})})})})});}),k=['.framer-jYHo6 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jYHo6 .framer-1mx5ai5 { display: block; }\",\".framer-jYHo6 .framer-opfgyt { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 70px; justify-content: center; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-jYHo6 .framer-1ojgysa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jYHo6 .framer-1g10iu0 { flex: none; height: 20px; position: relative; width: 26px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYHo6 .framer-opfgyt { gap: 0px; } .framer-jYHo6 .framer-opfgyt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jYHo6 .framer-opfgyt > :first-child { margin-left: 0px; } .framer-jYHo6 .framer-opfgyt > :last-child { margin-right: 0px; } }\",\".framer-jYHo6.framer-v-3c336o .framer-opfgyt { cursor: pointer; }\",\".framer-jYHo6.framer-v-1n4hpes .framer-opfgyt, .framer-jYHo6.framer-v-1071ey0 .framer-opfgyt { height: 54px; padding: 0px 32px 0px 32px; }\",\".framer-jYHo6.framer-v-s0sfet .framer-opfgyt { height: 54px; padding: 0px 0px 0px 0px; width: 54px; }\"],D=m(B,k,\"framer-jYHo6\");export default D;D.displayName=\"Sticky Button Digital Only\",D.defaultProps={height:70,width:254},a(D,{variant:{options:[\"CsaphUa6A\",\"tjadBLFfB\",\"oF1HrpIjg\",\"UFSvxd5GD\",\"FDORazcvH\"],optionTitles:[\"Desktop Primary\",\"Desktop Invert\",\"Mobile\",\"Mobile Invert\",\"Round\"],title:\"Variant\",type:i.Enum},PzRqnpxib:{defaultValue:\"START FOR \\xa31\",displayTextArea:!1,title:\"Title\",type:i.String},LlNz79XDh:{__defaultAssetReference:\"data:framer/asset-reference,VQP47XKEhbkqHheXNeEDedIVWnY.png?originalFilename=slide+to+pay+arrow.png&preferredSize=auto\",title:\"Image\",type:i.ResponsiveImage}}),t(D,[{family:\"Suisse Intl Medium\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/JdKglnOo2:default\",url:\"https://framerusercontent.com/assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\"},url:\"https://framerusercontent.com/assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJdKglnOo2\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"PzRqnpxib\\\":\\\"title\\\",\\\"LlNz79XDh\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"254\",\"framerIntrinsicHeight\":\"70\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tjadBLFfB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oF1HrpIjg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"UFSvxd5GD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FDORazcvH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xHBoSVnIu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JdKglnOo2.map", "// Generated by Framer (7aa0232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={XWPioNtS9:{hover:true}};const cycleOrder=[\"XWPioNtS9\"];const variantClassNames={XWPioNtS9:\"framer-v-1thjd37\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,image,title,width,...props})=>{var ref,ref1;return{...props,N6YGbzJbM:(ref=image!==null&&image!==void 0?image:props.N6YGbzJbM)!==null&&ref!==void 0?ref:{src:new URL(\"assets/512/mnvp1IZCUdZlfUqdbbQMdaP77R8.jpg\",\"https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js\").href,srcSet:`${new URL(\"assets/512/mnvp1IZCUdZlfUqdbbQMdaP77R8.jpg\",\"https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js\").href} 512w, ${new URL(\"assets/mnvp1IZCUdZlfUqdbbQMdaP77R8.jpg\",\"https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js\").href} 1024w`},soKWVjySI:(ref1=title!==null&&title!==void 0?title:props.soKWVjySI)!==null&&ref1!==void 0?ref1:\"Jonny's Hits\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,soKWVjySI,N6YGbzJbM,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"XWPioNtS9\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-OSX2R\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1thjd37\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XWPioNtS9\",ref:ref,style:{...style},...addPropertyOverrides({\"XWPioNtS9-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"min(120px, 100vw)\",...toResponsiveImage(N6YGbzJbM)},className:\"framer-713pf2\",layoutDependency:layoutDependency,layoutId:\"VYA8Ij0K8\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},...addPropertyOverrides({\"XWPioNtS9-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"min(135px, 100vw)\",...toResponsiveImage(N6YGbzJbM)}}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Jonny's Hits\"})}),className:\"framer-150kh39\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"OeH7UTBy4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:soKWVjySI,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-OSX2R [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OSX2R .framer-15lar6p { display: block; }\",\".framer-OSX2R .framer-1thjd37 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 120px; }\",\".framer-OSX2R .framer-713pf2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 100%; }\",\".framer-OSX2R .framer-150kh39 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OSX2R .framer-v-1thjd37 .framer-1thjd37 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OSX2R .framer-1thjd37 { gap: 0px; } .framer-OSX2R .framer-1thjd37 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-OSX2R .framer-1thjd37 > :first-child { margin-top: 0px; } .framer-OSX2R .framer-1thjd37 > :last-child { margin-bottom: 0px; } }\",\".framer-OSX2R.framer-v-1thjd37.hover .framer-1thjd37 { width: 135px; }\",\".framer-OSX2R.framer-v-1thjd37.hover .framer-713pf2 { height: var(--framer-aspect-ratio-supported, 135px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 143\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KZ0TJ7mXR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"soKWVjySI\":\"title\",\"N6YGbzJbM\":\"image\"}\n */ const FramerErcZd3GeX=withCSS(Component,css,\"framer-OSX2R\");export default FramerErcZd3GeX;FramerErcZd3GeX.displayName=\"Playlist\";FramerErcZd3GeX.defaultProps={height:143,width:120};addPropertyControls(FramerErcZd3GeX,{soKWVjySI:{defaultValue:\"Jonny's Hits\",displayTextArea:false,title:\"Title\",type:ControlType.String},N6YGbzJbM:{__defaultAssetReference:\"data:framer/asset-reference,mnvp1IZCUdZlfUqdbbQMdaP77R8.jpg?originalFilename=Jonny+Caguioa.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerErcZd3GeX,[{family:\"Suisse Intl Medium\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/ErcZd3GeX:default\",url:\"assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\"},url:new URL(\"assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\",\"https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js\").href}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerErcZd3GeX\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KZ0TJ7mXR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"120\",\"framerIntrinsicHeight\":\"143\",\"framerVariables\":\"{\\\"soKWVjySI\\\":\\\"title\\\",\\\"N6YGbzJbM\\\":\\\"image\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ErcZd3GeX.map", "// Generated by Framer (7aa0232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Playlist from\"https://framerusercontent.com/modules/7qKNTIOCvZAGwsx6b05w/WJs1m5KrXDy7T0Rr1rEZ/ErcZd3GeX.js\";const PlaylistFonts=getFonts(Playlist);const cycleOrder=[\"SLtVOANcS\",\"p1RW6xUer\"];const variantClassNames={p1RW6xUer:\"framer-v-1xyooqw\",SLtVOANcS:\"framer-v-wevcuh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"SLtVOANcS\",\"Variant 2\":\"p1RW6xUer\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"SLtVOANcS\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"SLtVOANcS\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"p1RW6xUer\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"p1RW6xUer\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-8LBEM\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-wevcuh\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SLtVOANcS\",ref:ref,style:{...style},...addPropertyOverrides({p1RW6xUer:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-176ut96-container\",layoutDependency:layoutDependency,layoutId:\"vzQxpZ4hF-container\",children:/*#__PURE__*/ _jsx(Playlist,{height:\"100%\",id:\"vzQxpZ4hF\",layoutId:\"vzQxpZ4hF\",style:{width:\"100%\"},title:\"Jonny's Hits\",width:\"100%\"})}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1vwhqfk\",layoutDependency:layoutDependency,layoutId:\"l1dzikZsV\",transformTemplate:transformTemplate,...addPropertyOverrides({p1RW6xUer:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,pixelHeight:480,pixelWidth:480,src:new URL(\"assets/ylkrQBqafGBgJyeoNV4v27lfQ.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href},className:\"framer-14utxsc\",layoutDependency:layoutDependency,layoutId:\"s4_Y6vCKv\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Better Boxing\"})}),className:\"framer-re3m09\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"cq9VrU1BB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-iy3w0v\",layoutDependency:layoutDependency,layoutId:\"iavFZtesC\",children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-o17ves\",layoutDependency:layoutDependency,layoutId:\"xQ8IuxXm4\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Finding Renewal\"})}),className:\"framer-vzj0mb\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"NO2LBiqs4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1didswa\",layoutDependency:layoutDependency,layoutId:\"Mz_NKHbSL\",transformTemplate:transformTemplate1,...addPropertyOverrides({p1RW6xUer:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/kDdVLkbO5casjB2A7S5BLyck6w.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/kDdVLkbO5casjB2A7S5BLyck6w.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/kDdVLkbO5casjB2A7S5BLyck6w.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-8phkhj\",layoutDependency:layoutDependency,layoutId:\"ENXZDHW_2\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Zeal Zone\"})}),className:\"framer-6s025k\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"NYXRECYqL\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-nq0yiy\",layoutDependency:layoutDependency,layoutId:\"zbos_arnK\",transformTemplate:transformTemplate2,...addPropertyOverrides({p1RW6xUer:{transformTemplate}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/8uW6KkQTiHp9KVvfs7j3bjh4o0.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/8uW6KkQTiHp9KVvfs7j3bjh4o0.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/8uW6KkQTiHp9KVvfs7j3bjh4o0.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-1g9j3hw\",layoutDependency:layoutDependency,layoutId:\"s0SShuyWY\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Rachel's Beats\"})}),className:\"framer-jewud6\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"rEZx967mJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-ykllp4\",layoutDependency:layoutDependency,layoutId:\"Xd_yeSsZU\",transformTemplate:transformTemplate1,...addPropertyOverrides({p1RW6xUer:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:480,intrinsicWidth:480,pixelHeight:480,pixelWidth:480,src:new URL(\"assets/b47oDfO7mO9HaS9Kuwq0s2Gi4Eo.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href},className:\"framer-xh5yeb\",layoutDependency:layoutDependency,layoutId:\"VA9L2pT89\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Anna's Tunes\"})}),className:\"framer-15nklhl\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"cXmchDmu6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-hne0td\",layoutDependency:layoutDependency,layoutId:\"tBYZbbF35\",children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/lzSmNhBrylNXWoKdtHualfDqiA.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/lzSmNhBrylNXWoKdtHualfDqiA.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/lzSmNhBrylNXWoKdtHualfDqiA.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-1rzul0w\",layoutDependency:layoutDependency,layoutId:\"v24VUeEFQ\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Daniel's Songs\"})}),className:\"framer-99eyi2\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"j15OzcMZV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1pwcgh0\",layoutDependency:layoutDependency,layoutId:\"WAbdUiFFK\",transformTemplate:transformTemplate,...addPropertyOverrides({p1RW6xUer:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/MX7ygdkT33nZgECMktYSwRpQ.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/MX7ygdkT33nZgECMktYSwRpQ.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/MX7ygdkT33nZgECMktYSwRpQ.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-ka8xld\",layoutDependency:layoutDependency,layoutId:\"wY7_zWM4r\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Knockout Rhyth\u2026\"})}),className:\"framer-l8h7rf\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"AzB4dVc_h\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-18o6ft9\",layoutDependency:layoutDependency,layoutId:\"iNpnp4Y3X\",children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/KW0P2OlHTXdSVLNEjt2rxEpCQo.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/KW0P2OlHTXdSVLNEjt2rxEpCQo.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/KW0P2OlHTXdSVLNEjt2rxEpCQo.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-6ojemf\",layoutDependency:layoutDependency,layoutId:\"BNTWvFhvj\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Ellya's Hits\"})}),className:\"framer-1khard0\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"BZDznvC6t\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1pon6jv\",layoutDependency:layoutDependency,layoutId:\"PaJs5ozu7\",children:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`},className:\"framer-1j0com9\",layoutDependency:layoutDependency,layoutId:\"W7G7a8pJ_\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},...addPropertyOverrides({p1RW6xUer:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"120px\",src:new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href,srcSet:`${new URL(\"assets/512/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 512w, ${new URL(\"assets/dfSEilxjdi0gWgtupgWH4OZduvc.jpg\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href} 1024w`}}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIE1lZGl1bQ==\",\"--framer-font-family\":'\"Suisse Intl Medium\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Finding Renewal\"})}),className:\"framer-w23ue3\",fonts:[\"CUSTOM;Suisse Intl Medium\"],layoutDependency:layoutDependency,layoutId:\"E82L69UYN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-8LBEM [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8LBEM .framer-rpcaw3 { display: block; }\",\".framer-8LBEM .framer-wevcuh { height: 477px; overflow: hidden; position: relative; width: 408px; }\",\".framer-8LBEM .framer-176ut96-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: 120px; }\",\".framer-8LBEM .framer-1vwhqfk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 0px; width: 120px; }\",\".framer-8LBEM .framer-14utxsc, .framer-8LBEM .framer-o17ves, .framer-8LBEM .framer-8phkhj, .framer-8LBEM .framer-1g9j3hw, .framer-8LBEM .framer-xh5yeb, .framer-8LBEM .framer-1rzul0w, .framer-8LBEM .framer-ka8xld, .framer-8LBEM .framer-6ojemf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 100%; }\",\".framer-8LBEM .framer-re3m09, .framer-8LBEM .framer-vzj0mb, .framer-8LBEM .framer-6s025k, .framer-8LBEM .framer-jewud6, .framer-8LBEM .framer-15nklhl, .framer-8LBEM .framer-99eyi2, .framer-8LBEM .framer-l8h7rf, .framer-8LBEM .framer-1khard0, .framer-8LBEM .framer-w23ue3 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8LBEM .framer-iy3w0v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; width: 120px; }\",\".framer-8LBEM .framer-1didswa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: 120px; }\",\".framer-8LBEM .framer-nq0yiy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: 120px; }\",\".framer-8LBEM .framer-ykllp4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 50%; width: 120px; }\",\".framer-8LBEM .framer-hne0td { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; width: 120px; }\",\".framer-8LBEM .framer-1pwcgh0 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; width: 120px; }\",\".framer-8LBEM .framer-18o6ft9 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 0px; width: 120px; }\",\".framer-8LBEM .framer-1pon6jv { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 40px; width: 120px; }\",\".framer-8LBEM .framer-1j0com9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8LBEM .framer-1vwhqfk, .framer-8LBEM .framer-iy3w0v, .framer-8LBEM .framer-1didswa, .framer-8LBEM .framer-nq0yiy, .framer-8LBEM .framer-ykllp4, .framer-8LBEM .framer-hne0td, .framer-8LBEM .framer-1pwcgh0, .framer-8LBEM .framer-18o6ft9, .framer-8LBEM .framer-1pon6jv { gap: 0px; } .framer-8LBEM .framer-1vwhqfk > *, .framer-8LBEM .framer-iy3w0v > *, .framer-8LBEM .framer-1didswa > *, .framer-8LBEM .framer-nq0yiy > *, .framer-8LBEM .framer-ykllp4 > *, .framer-8LBEM .framer-hne0td > *, .framer-8LBEM .framer-1pwcgh0 > *, .framer-8LBEM .framer-18o6ft9 > *, .framer-8LBEM .framer-1pon6jv > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-8LBEM .framer-1vwhqfk > :first-child, .framer-8LBEM .framer-iy3w0v > :first-child, .framer-8LBEM .framer-1didswa > :first-child, .framer-8LBEM .framer-nq0yiy > :first-child, .framer-8LBEM .framer-ykllp4 > :first-child, .framer-8LBEM .framer-hne0td > :first-child, .framer-8LBEM .framer-1pwcgh0 > :first-child, .framer-8LBEM .framer-18o6ft9 > :first-child, .framer-8LBEM .framer-1pon6jv > :first-child { margin-top: 0px; } .framer-8LBEM .framer-1vwhqfk > :last-child, .framer-8LBEM .framer-iy3w0v > :last-child, .framer-8LBEM .framer-1didswa > :last-child, .framer-8LBEM .framer-nq0yiy > :last-child, .framer-8LBEM .framer-ykllp4 > :last-child, .framer-8LBEM .framer-hne0td > :last-child, .framer-8LBEM .framer-1pwcgh0 > :last-child, .framer-8LBEM .framer-18o6ft9 > :last-child, .framer-8LBEM .framer-1pon6jv > :last-child { margin-bottom: 0px; } }\",\".framer-8LBEM.framer-v-1xyooqw .framer-wevcuh { height: 377px; width: 1266px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-1vwhqfk { left: 301px; top: 13px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-1didswa { bottom: 30px; left: 378px; top: unset; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-8phkhj { order: 0; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-6s025k { order: 1; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-nq0yiy { left: 47%; top: 73px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-ykllp4 { right: 213px; top: 85px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-hne0td { bottom: 53px; left: 134px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-1pwcgh0 { bottom: unset; left: unset; right: 386px; top: 13px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-18o6ft9 { bottom: 19px; right: 415px; }\",\".framer-8LBEM.framer-v-1xyooqw .framer-1j0com9 { height: var(--framer-aspect-ratio-supported, 120px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 477\n * @framerIntrinsicWidth 408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"p1RW6xUer\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerSHsPZ3riC=withCSS(Component,css,\"framer-8LBEM\");export default FramerSHsPZ3riC;FramerSHsPZ3riC.displayName=\"Music Playlist Stack\";FramerSHsPZ3riC.defaultProps={height:477,width:408};addPropertyControls(FramerSHsPZ3riC,{variant:{options:[\"SLtVOANcS\",\"p1RW6xUer\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSHsPZ3riC,[{family:\"Suisse Intl Medium\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/SHsPZ3riC:default\",url:\"assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\"},url:new URL(\"assets/I60ut6HTqCBlIvR4XG6iFKT2oA.ttf\",\"https://framerusercontent.com/modules/NYUf0fxXAjA00qlBuHc8/nrCexjyj1zszAq7WKaUQ/SHsPZ3riC.js\").href},...PlaylistFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSHsPZ3riC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p1RW6xUer\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"477\",\"framerIntrinsicWidth\":\"408\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SHsPZ3riC.map"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "h", "v", "b", "y", "e", "t", "r", "F", "j", "R", "a", "re", "MotionConfigContext", "i", "n", "se", "p", "H", "I", "o", "l", "s", "d", "S", "B", "Y", "useLocaleInfo", "m", "u", "x", "k", "D", "T", "z", "N", "O", "w", "A", "M", "useVariantState", "v", "h", "C", "pe", "L", "ae", "LayoutGroup", "motion", "cx", "Link", "RichText2", "Image2", "withCSS", "JdKglnOo2_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "title", "width", "props", "ref", "ref1", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "soKWVjySI", "N6YGbzJbM", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText2", "x", "css", "FramerErcZd3GeX", "withCSS", "ErcZd3GeX_default", "addPropertyControls", "ControlType", "addFonts", "PlaylistFonts", "getFonts", "ErcZd3GeX_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate", "_", "t", "transformTemplate1", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "RichText2", "x", "css", "FramerSHsPZ3riC", "withCSS", "SHsPZ3riC_default", "addPropertyControls", "ControlType", "addFonts"]
}
