{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/U0l6i7llVnjIKn68gPSF/hZBhVlMB814Y3p6kXfCp/CWIOBAKfk.js", "ssg:https://framerusercontent.com/modules/QOTPr17SliLRZD7yXmdM/UxTcrqconzjIq3Tjoe7I/g50nYsXrE.js", "ssg:https://framerusercontent.com/modules/ABFhaDg3wZwc5W1u56km/BNggdQpyWhqEq14hJNS6/gETORZ9bu.js", "ssg:https://framerusercontent.com/modules/4nDadFi8xCqwmvXpEscC/0K7URjSzHnTxTzvS1G2s/KgGTyEKvl.js", "ssg:https://framerusercontent.com/modules/pYu6FQCEYQzAMUn50dRp/4nqOC6A8zVVekQFuRlL0/MJ8K8jbhp.js", "ssg:https://framerusercontent.com/modules/aPMkcKq0hsf9v1XEB6P9/klzCapJliqmjnaD2JTiK/mvZkG3VCG.js", "ssg:https://framerusercontent.com/modules/N0w75av7RorEAUtBGQpi/0RtPQUqHFaXHPMPQGsX7/QDglIi_ih.js", "ssg:https://framerusercontent.com/modules/Mtq7dEU8rjjJeVmm6bW5/NXIrRydzy43O2TTPv7EZ/shsxOLAtJ.js", "ssg:https://framerusercontent.com/modules/VxzZbpXnNVTxRUPytvNR/kZdEuUzAOVkTbkfRHw3j/St8UEsHXi.js", "ssg:https://framerusercontent.com/modules/z7jnr4fkZQjWMvA7bPr3/1pl7Gwxzy1ZJKt6ETTWy/xH9jYW1Bb.js", "ssg:https://framerusercontent.com/modules/0RUQuPPmhKqpWe1beve4/YsW7sKbKTTT6CpNjFYSF/bdH28PsI9.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 (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./CWIOBAKfk-0.js\";const enabledGestures={ey9yRuidG:{hover:true}};const cycleOrder=[\"ey9yRuidG\"];const serializationHash=\"framer-nVyNh\";const variantClassNames={ey9yRuidG:\"framer-v-1v0n8yh\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,fUIsBfz2_:(_ref=image!==null&&image!==void 0?image:props.fUIsBfz2_)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/uWCrKiQPdsg81BL06K8FbtkPjI.png\"},OO1YXhlwu:link!==null&&link!==void 0?link:props.OO1YXhlwu};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,OO1YXhlwu,fUIsBfz2_,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ey9yRuidG\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-nVyNh\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:OO1YXhlwu,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:435,pixelHeight:140,pixelWidth:435,sizes:\"min(103px, 100vw)\",...toResponsiveImage(fUIsBfz2_)},className:`${cx(\"framer-1v0n8yh\",className)} framer-1f5kas8`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ey9yRuidG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"ey9yRuidG-hover\":{opacity:1}},...addPropertyOverrides({\"ey9yRuidG-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-nVyNh [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-nVyNh .framer-1f5kas8 { display: block; }\",\".framer-nVyNh .framer-1v0n8yh { cursor: pointer; height: 30px; overflow: visible; position: relative; text-decoration: none; width: 103px; }\",\".framer-nVyNh.framer-v-1v0n8yh.hover .framer-1v0n8yh { aspect-ratio: 3.4285714285714284 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 103\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HiwvhvHlJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"OO1YXhlwu\":\"link\",\"fUIsBfz2_\":\"image\"}\n * @framerImmutableVariables true\n */const FramerCWIOBAKfk=withCSS(Component,css,\"framer-nVyNh\");export default FramerCWIOBAKfk;FramerCWIOBAKfk.displayName=\"Readly\";FramerCWIOBAKfk.defaultProps={height:30,width:103};addPropertyControls(FramerCWIOBAKfk,{OO1YXhlwu:{title:\"Link\",type:ControlType.Link},fUIsBfz2_:{__defaultAssetReference:\"data:framer/asset-reference,uWCrKiQPdsg81BL06K8FbtkPjI.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerCWIOBAKfk,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCWIOBAKfk\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"103\",\"framerVariables\":\"{\\\"OO1YXhlwu\\\":\\\"link\\\",\\\"fUIsBfz2_\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HiwvhvHlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CWIOBAKfk.map", "// Generated by Framer (61bac00)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./g50nYsXrE-0.js\";const enabledGestures={oCDZuA7uV:{hover:true}};const cycleOrder=[\"oCDZuA7uV\"];const serializationHash=\"framer-sA1Fs\";const variantClassNames={oCDZuA7uV:\"framer-v-1uyfb8c\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{return{...props,Gj2aFdTZE:link!==null&&link!==void 0?link:props.Gj2aFdTZE};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Gj2aFdTZE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"oCDZuA7uV\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:Gj2aFdTZE,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1uyfb8c\",className,classNames)} framer-7ai0xt`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"oCDZuA7uV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"oCDZuA7uV-hover\":{opacity:1}},...addPropertyOverrides({\"oCDZuA7uV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-198qsmb\",\"data-framer-name\":\"doktor24\",fill:\"black\",intrinsicHeight:130,intrinsicWidth:511,layoutDependency:layoutDependency,layoutId:\"nbmY54HWx\",svg:'<svg width=\"511\" height=\"130\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M510.407 22.677C510.407 10.153 500.255 0 487.73 0H371.031c-12.525 0-22.677 10.153-22.677 22.677v69.871c-.736 19.116-6.752 28.664-27.411 36.721h27.411v.044h139.377c12.524 0 22.677-10.153 22.677-22.677l-.001-83.959ZM397.16 22.41c8.4 0 14.842 1.92 19.325 5.754 4.483 3.839 6.725 9.312 6.725 16.419v3.635c0 2.907-.545 5.594-1.636 8.057a26.263 26.263 0 0 1-4.362 6.785c-1.816 2.06-3.898 3.938-6.24 5.633a99.084 99.084 0 0 1-7.148 4.726l-9.694 5.817c-2.181 1.292-3.897 2.484-5.149 3.573-1.253 1.093-2.201 2.122-2.848 3.091-.647.968-1.051 1.939-1.212 2.907-.163.97-.241 1.939-.241 2.91v.483h35.016c1.454 0 2.402.264 2.848.788.442.527.666 1.556.666 3.09v5.573c0 1.536-.224 2.565-.666 3.091-.446.525-1.394.786-2.848.786h-46.891c-1.535 0-2.564-.221-3.089-.666-.527-.443-.788-1.394-.788-2.847v-5.938c0-3.634.442-6.885 1.333-9.753.887-2.867 2.079-5.412 3.575-7.635a26.804 26.804 0 0 1 5.27-5.814 46.457 46.457 0 0 1 6.422-4.423l10.298-5.937c1.615-.968 3.17-1.958 4.666-2.968a20.297 20.297 0 0 0 3.937-3.453 16.53 16.53 0 0 0 2.727-4.302c.685-1.575 1.03-3.332 1.03-5.27V45.31c0-7.107-3.878-10.663-11.632-10.663-3.877 0-6.725.77-8.542 2.303-1.819 1.535-3.011 4.24-3.575 8.118-.163.97-.505 1.635-1.029 1.999-.527.364-1.436.545-2.727.545h-6.907c-1.534 0-2.565-.242-3.089-.728-.527-.484-.788-1.493-.788-3.028 0-2.503.485-5.03 1.455-7.573.968-2.544 2.26-4.623 3.877-6.24 5.088-5.09 12.399-7.633 21.931-7.633Zm69.79 20.356v34.046h-23.628l23.628-34.046Zm13.145-17.994c-.525-.442-1.556-.666-3.088-.666h-9.209c-1.132 0-1.96.223-2.484.666-.525.446-1.272 1.354-2.241 2.727l-30.535 44.345c-.647.89-1.051 1.758-1.211 2.606a14.532 14.532 0 0 0-.241 2.725v8.483c0 1.534.221 2.565.665 3.089.444.526 1.394.788 2.847.788h32.352v12.479c0 1.454.261 2.405.788 2.848.524.445 1.555.666 3.089.666h6.18c1.532 0 2.563-.221 3.088-.666.526-.443.788-1.394.788-2.848v-12.48h4.848c1.454 0 2.403-.26 2.847-.787.444-.524.667-1.555.667-3.09V80.69c0-1.533-.223-2.563-.667-3.089-.444-.525-1.393-.788-2.847-.788h-4.848V27.62c0-1.453-.262-2.401-.788-2.847Z\" fill=\"#fff\"/><path d=\"M14.419 78.354c0 11.068 4.401 16.599 13.206 16.599 8.724 0 13.087-5.53 13.087-16.599v-9.209c0-5.573-1.112-9.753-3.332-12.54-2.223-2.787-5.473-4.18-9.755-4.18-8.805 0-13.206 5.533-13.206 16.599v9.33ZM24.96 40.188c6.704 0 11.875 1.816 15.51 5.45V22.617c0-1.372.242-2.301.726-2.787.485-.484 1.533-.726 3.15-.726h6.665c1.614 0 2.665.242 3.15.726.484.486.727 1.415.727 2.787v57.432c0 8.724-2.344 15.41-7.027 20.055-4.686 4.645-11.432 6.966-20.236 6.966-8.644 0-15.408-2.321-20.294-6.966C2.443 95.458 0 89.017 0 80.777V68.902c0-9.288 2.14-16.396 6.421-21.325 4.282-4.925 10.46-7.39 18.539-7.39Zm68.228 54.644c8.724 0 13.085-5.492 13.085-16.477v-9.452c0-10.984-4.361-16.479-13.085-16.479S80.102 57.92 80.102 68.903v9.452c0 10.985 4.362 16.477 13.086 16.477Zm0 12.239c-8.724 0-15.491-2.343-20.295-7.028-4.808-4.684-7.21-11.308-7.21-19.872V68.297c0-8.885 2.402-15.791 7.21-20.72 4.804-4.925 11.57-7.39 20.295-7.39 8.724 0 15.488 2.344 20.296 7.028 4.804 4.685 7.208 11.31 7.208 19.87V78.96c0 8.887-2.404 15.792-7.208 20.719-4.808 4.928-11.572 7.392-20.296 7.392Zm52.706-39.743 21.084-22.537c1.372-1.455 2.382-2.301 3.028-2.545.646-.242 1.455-.363 2.424-.363h9.087c1.939 0 2.908.688 2.908 2.06 0 .727-.364 1.453-1.089 2.181l-19.024 19.144 21.93 35.866c.486.889.728 1.616.728 2.18 0 1.376-.969 2.06-2.909 2.06h-9.693c-1.132 0-1.938-.2-2.423-.606-.484-.404-1.051-1.17-1.696-2.301l-15.993-27.143-8.362 8.481v18.054c0 1.455-.262 2.405-.786 2.848-.527.445-1.558.667-3.091.667h-6.664c-1.536 0-2.565-.222-3.089-.667-.527-.443-.788-1.393-.788-2.848V22.617c0-1.454.261-2.402.788-2.846.524-.444 1.553-.667 3.089-.667h6.664c1.533 0 2.564.223 3.091.667.524.444.786 1.392.786 2.846v44.711Zm73.426 38.046c-3.556 0-6.524-.443-8.907-1.334-2.383-.888-4.301-2.16-5.755-3.816-1.453-1.656-2.484-3.654-3.089-5.997-.607-2.343-.909-4.968-.909-7.877V53.758h-6.422c-1.212 0-2.02-.222-2.424-.667-.405-.443-.605-1.352-.605-2.727v-5.09c0-1.371.2-2.28.605-2.724.404-.444 1.212-.667 2.424-.667h6.422V27.585c0-1.454.261-2.402.788-2.848.524-.442 1.554-.666 3.089-.666h6.664c1.535 0 2.564.224 3.091.666.524.446.786 1.394.786 2.849v14.297h11.027c1.212 0 2.019.222 2.423.666.402.444.606 1.354.606 2.726v5.09c0 1.374-.204 2.283-.606 2.726-.404.445-1.211.666-2.423.666h-11.027V84.17c0 3.07.504 5.29 1.515 6.663 1.009 1.375 2.727 2.06 5.149 2.06h4.363c1.212 0 2.019.225 2.423.667.402.445.606 1.353.606 2.727v5.693c0 1.375-.182 2.284-.545 2.727-.364.445-1.193.667-2.484.667h-6.785Zm44.59-10.542c8.724 0 13.085-5.492 13.085-16.477v-9.452c0-10.984-4.361-16.479-13.085-16.479s-13.086 5.495-13.086 16.479v9.452c0 10.985 4.362 16.477 13.086 16.477Zm0 12.239c-8.724 0-15.491-2.343-20.296-7.028-4.807-4.684-7.21-11.308-7.21-19.872V68.297c0-8.885 2.403-15.791 7.21-20.72 4.805-4.925 11.572-7.39 20.296-7.39s15.486 2.344 20.294 7.028c4.804 4.685 7.211 11.31 7.211 19.87V78.96c0 8.887-2.407 15.792-7.211 20.719-4.808 4.928-11.57 7.392-20.294 7.392Zm52.341-55.858c1.372-2.667 3.432-4.887 6.18-6.666 2.744-1.774 5.653-2.665 8.724-2.665h2.665c1.212 0 2.017.224 2.423.667.404.445.605 1.354.605 2.726v6.543c0 1.375-.201 2.284-.605 2.727-.406.445-1.211.666-2.423.666h-3.392c-4.12 0-7.473 1.354-10.057 4.059-2.587 2.707-3.878 6.281-3.878 10.723v31.866c0 1.375-.242 2.302-.726 2.788-.486.484-1.536.727-3.152.727h-6.664c-1.616 0-2.666-.243-3.15-.727-.484-.486-.726-1.413-.726-2.788V45.397c0-1.374.242-2.303.726-2.787.484-.485 1.534-.728 3.15-.728h6.422c1.616 0 2.667.243 3.151.728.484.484.727 1.413.727 2.787v5.816Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})})})});});const css=['.framer-sA1Fs [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-sA1Fs .framer-7ai0xt { display: block; }\",\".framer-sA1Fs.framer-1uyfb8c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 118px; }\",\".framer-sA1Fs .framer-198qsmb { aspect-ratio: 3.9307692307692306 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 118px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sA1Fs.framer-1uyfb8c { gap: 0px; } .framer-sA1Fs.framer-1uyfb8c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sA1Fs.framer-1uyfb8c > :first-child { margin-left: 0px; } .framer-sA1Fs.framer-1uyfb8c > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 118\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hKc0gh5yS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Gj2aFdTZE\":\"link\"}\n * @framerImmutableVariables true\n */const Framerg50nYsXrE=withCSS(Component,css,\"framer-sA1Fs\");export default Framerg50nYsXrE;Framerg50nYsXrE.displayName=\"Doktor24\";Framerg50nYsXrE.defaultProps={height:30,width:118};addPropertyControls(Framerg50nYsXrE,{Gj2aFdTZE:{title:\"Link\",type:ControlType.Link}});addFonts(Framerg50nYsXrE,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg50nYsXrE\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"118\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hKc0gh5yS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Gj2aFdTZE\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g50nYsXrE.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./gETORZ9bu-0.js\";const enabledGestures={znlzqoo7V:{hover:true}};const cycleOrder=[\"znlzqoo7V\"];const serializationHash=\"framer-xLxPP\";const variantClassNames={znlzqoo7V:\"framer-v-119hq98\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,Mf_Ktthoy:(_ref=image!==null&&image!==void 0?image:props.Mf_Ktthoy)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/luoMuQCAYJiLU3BBdTta6lUco.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/luoMuQCAYJiLU3BBdTta6lUco.png?scale-down-to=512 512w, https://framerusercontent.com/images/luoMuQCAYJiLU3BBdTta6lUco.png 642w\"},rFpuGLv9y:link!==null&&link!==void 0?link:props.rFpuGLv9y};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,rFpuGLv9y,Mf_Ktthoy,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"znlzqoo7V\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-xLxPP\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:rFpuGLv9y,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:91.5,intrinsicWidth:321,pixelHeight:183,pixelWidth:642,sizes:\"min(85px, 100vw)\",...toResponsiveImage(Mf_Ktthoy)},className:`${cx(\"framer-119hq98\",className)} framer-5ttt5z`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"znlzqoo7V\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"znlzqoo7V-hover\":{opacity:1}},...addPropertyOverrides({\"znlzqoo7V-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-xLxPP [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-xLxPP .framer-5ttt5z { display: block; }\",\".framer-xLxPP .framer-119hq98 { cursor: pointer; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 85px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kuvt7CnkQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"rFpuGLv9y\":\"link\",\"Mf_Ktthoy\":\"image\"}\n * @framerImmutableVariables true\n */const FramergETORZ9bu=withCSS(Component,css,\"framer-xLxPP\");export default FramergETORZ9bu;FramergETORZ9bu.displayName=\"Qapital\";FramergETORZ9bu.defaultProps={height:24,width:85};addPropertyControls(FramergETORZ9bu,{rFpuGLv9y:{title:\"Link\",type:ControlType.Link},Mf_Ktthoy:{__defaultAssetReference:\"data:framer/asset-reference,luoMuQCAYJiLU3BBdTta6lUco.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramergETORZ9bu,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergETORZ9bu\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rFpuGLv9y\\\":\\\"link\\\",\\\"Mf_Ktthoy\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kuvt7CnkQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"85\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gETORZ9bu.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./KgGTyEKvl-0.js\";const enabledGestures={Hhl9SeH8p:{hover:true}};const cycleOrder=[\"Hhl9SeH8p\"];const serializationHash=\"framer-1Qdqu\";const variantClassNames={Hhl9SeH8p:\"framer-v-20aeve\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,ANWD1rg3v:(_ref=image!==null&&image!==void 0?image:props.ANWD1rg3v)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/8snF3YUkPMSpkFXGjGv7tTgqCuY.png\"},xbOXeTPaB:link!==null&&link!==void 0?link:props.xbOXeTPaB};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,xbOXeTPaB,ANWD1rg3v,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Hhl9SeH8p\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-1Qdqu\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:xbOXeTPaB,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:121,intrinsicWidth:323,pixelHeight:121,pixelWidth:323,sizes:\"min(100px, 100vw)\",...toResponsiveImage(ANWD1rg3v)},className:`${cx(\"framer-20aeve\",className)} framer-1007i1t`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Hhl9SeH8p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"Hhl9SeH8p-hover\":{opacity:1}},...addPropertyOverrides({\"Hhl9SeH8p-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-1Qdqu [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-1Qdqu .framer-1007i1t { display: block; }\",\".framer-1Qdqu .framer-20aeve { cursor: pointer; height: 30px; overflow: visible; position: relative; text-decoration: none; width: 100px; }\",\".framer-1Qdqu.framer-v-20aeve.hover .framer-20aeve { aspect-ratio: 3.3361581920903953 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VMYCzsFl9\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xbOXeTPaB\":\"link\",\"ANWD1rg3v\":\"image\"}\n * @framerImmutableVariables true\n */const FramerKgGTyEKvl=withCSS(Component,css,\"framer-1Qdqu\");export default FramerKgGTyEKvl;FramerKgGTyEKvl.displayName=\"Klarna\";FramerKgGTyEKvl.defaultProps={height:30,width:100};addPropertyControls(FramerKgGTyEKvl,{xbOXeTPaB:{title:\"Link\",type:ControlType.Link},ANWD1rg3v:{__defaultAssetReference:\"data:framer/asset-reference,8snF3YUkPMSpkFXGjGv7tTgqCuY.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerKgGTyEKvl,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKgGTyEKvl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VMYCzsFl9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"xbOXeTPaB\\\":\\\"link\\\",\\\"ANWD1rg3v\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KgGTyEKvl.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./MJ8K8jbhp-0.js\";const enabledGestures={hkPsuXIjV:{hover:true}};const cycleOrder=[\"hkPsuXIjV\"];const serializationHash=\"framer-cNVUC\";const variantClassNames={hkPsuXIjV:\"framer-v-1ycp7lh\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,BWssjfTdD:(_ref=image!==null&&image!==void 0?image:props.BWssjfTdD)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png?scale-down-to=512 512w, https://framerusercontent.com/images/ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png 2362w\"},o8WmLWOgu:link!==null&&link!==void 0?link:props.o8WmLWOgu};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,o8WmLWOgu,BWssjfTdD,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"hkPsuXIjV\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-cNVUC\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:o8WmLWOgu,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:1181,pixelHeight:708,pixelWidth:2362,sizes:\"min(100px, 100vw)\",...toResponsiveImage(BWssjfTdD)},className:`${cx(\"framer-1ycp7lh\",className)} framer-7boy2f`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hkPsuXIjV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"hkPsuXIjV-hover\":{opacity:1}},...addPropertyOverrides({\"hkPsuXIjV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-cNVUC [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-cNVUC .framer-7boy2f { display: block; }\",\".framer-cNVUC .framer-1ycp7lh { cursor: pointer; height: 30px; overflow: visible; position: relative; text-decoration: none; width: 100px; }\",\".framer-cNVUC.framer-v-1ycp7lh.hover .framer-1ycp7lh { aspect-ratio: 3.3361581920903953 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Lg8F_8uSe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"o8WmLWOgu\":\"link\",\"BWssjfTdD\":\"image\"}\n * @framerImmutableVariables true\n */const FramerMJ8K8jbhp=withCSS(Component,css,\"framer-cNVUC\");export default FramerMJ8K8jbhp;FramerMJ8K8jbhp.displayName=\"Spotify\";FramerMJ8K8jbhp.defaultProps={height:30,width:100};addPropertyControls(FramerMJ8K8jbhp,{o8WmLWOgu:{title:\"Link\",type:ControlType.Link},BWssjfTdD:{__defaultAssetReference:\"data:framer/asset-reference,ohQ9BCeX9Qy0ObCYHBZ5CckMLk.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerMJ8K8jbhp,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMJ8K8jbhp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Lg8F_8uSe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"o8WmLWOgu\\\":\\\"link\\\",\\\"BWssjfTdD\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MJ8K8jbhp.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={fxtWOpKtu:{hover:true}};const serializationHash=\"framer-vCHuQ\";const variantClassNames={fxtWOpKtu:\"framer-v-11qydpa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,tPX6EJSWE:link!==null&&link!==void 0?link:props.tPX6EJSWE};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,tPX6EJSWE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fxtWOpKtu\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:tPX6EJSWE,nodeId:\"fxtWOpKtu\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-11qydpa\",className,classNames)} framer-1ndt2dp`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fxtWOpKtu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"fxtWOpKtu-hover\":{opacity:1}},...addPropertyOverrides({\"fxtWOpKtu-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1habv6f\",\"data-framer-name\":\"PaypalWordmark\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:208,intrinsicWidth:600,layoutDependency:layoutDependency,layoutId:\"cjdwc1LaD\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 600 207.68\"><path d=\"M36.19 156.53a320.6 320.6 0 0 1-36.19.26V6.12c1-.46 1.6-1 2.17-1 21 .06 42.16-1.85 63.09 1.12 23.56 3.35 40.51 24 40.74 48.47.23 25.18-16.41 45.51-40.65 50-9.36 1.72-18.84.55-29.16 1.51Zm0-83.73a53.56 53.56 0 0 0 18 .06C62.77 71.39 68 65.31 68.47 57c.39-6.91-1.42-12.93-7.82-16.44-7.85-4.31-16.09-3.91-24.43-2Zm340.64 83.91c-13 .43-24.42.84-36.27-.23V6.21c.7-.48 1-.91 1.39-.92 20-.39 39.95-1.19 59.89.39 27.88 2.21 46.07 26.3 44.82 52.75s-22.45 46.45-50.18 47.35c-6.19.2-12.39 0-19.65 0Zm.17-83.86a57.59 57.59 0 0 0 17.53.07c8.78-1.4 14.25-7.7 14.59-16.2.39-9.75-4.21-16.26-13.45-18.4-6.05-1.4-12.2-1.21-18.67-.34Zm142.9-11.02c1.75-1.33.18-3.85 2.76-5.77a239.28 239.28 0 0 1 29.52-.06v100.23c-10 1.74-20 .63-29.25.7-2.73-1.74-1.69-4.53-3.25-6-26.74 14.09-49.75 10.92-66.1-9-16.94-20.65-16.68-51 .61-71.92C470 50.89 493.63 48 519.9 61.83Zm-1.26 44.54c.16-12.75-8.66-22.1-20.85-22.1-11.72 0-20.28 8.75-20.53 21-.29 13.54 8.1 23.09 20.35 23.18 12.02.08 20.86-9.21 21.03-22.08Zm-307.03 50.2c-10.21 1-20 .48-29.12.24-2.86-1.48-1.9-3.86-3-6.08-21.93 13.94-43.24 13-62.44-4.63-16.94-15.58-21.37-41.15-12-62.48 6.31-14.36 16.88-24.22 32-28.88S166.29 52.8 179 62c2.05-1.7.51-4.24 3.11-6a213.26 213.26 0 0 1 29.53.17ZM178 106.49c0-13-8.44-22.09-20.71-22.25-12.08-.16-20.67 9.11-20.61 22.24s8.72 22.14 20.9 22c11.72-.21 20.42-9.55 20.42-21.99Zm82.78 100.9c-12 .3-23.41.54-36.3-.2l34.27-69.08-46.17-81.74H252L277.16 103l22.59-46.79a276.18 276.18 0 0 1 36.65 0ZM566.24.49A271.61 271.61 0 0 1 600 .56V156.5c-11.31 1-22.17.66-33.76.25Z\" data-name=\"Capa 2\"/></svg>',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vCHuQ.framer-1ndt2dp, .framer-vCHuQ .framer-1ndt2dp { display: block; }\",\".framer-vCHuQ.framer-11qydpa { cursor: pointer; height: 30px; overflow: visible; position: relative; text-decoration: none; width: 86px; }\",\".framer-vCHuQ .framer-1habv6f { aspect-ratio: 2.8846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-vCHuQ.framer-v-11qydpa.hover.framer-11qydpa { aspect-ratio: 2.870967741935484 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 86\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hRb7iQ97Y\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tPX6EJSWE\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermvZkG3VCG=withCSS(Component,css,\"framer-vCHuQ\");export default FramermvZkG3VCG;FramermvZkG3VCG.displayName=\"Paypal new\";FramermvZkG3VCG.defaultProps={height:30,width:86};addPropertyControls(FramermvZkG3VCG,{tPX6EJSWE:{title:\"Link\",type:ControlType.Link}});addFonts(FramermvZkG3VCG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermvZkG3VCG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"30\",\"framerIntrinsicWidth\":\"86\",\"framerVariables\":\"{\\\"tPX6EJSWE\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hRb7iQ97Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mvZkG3VCG.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./QDglIi_ih-0.js\";const enabledGestures={XprPBsIUN:{hover:true}};const cycleOrder=[\"XprPBsIUN\"];const serializationHash=\"framer-TB9kL\";const variantClassNames={XprPBsIUN:\"framer-v-75pztl\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{return{...props,O3AN6m9fm:link!==null&&link!==void 0?link:props.O3AN6m9fm};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,O3AN6m9fm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"XprPBsIUN\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-TB9kL\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-75pztl\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XprPBsIUN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"XprPBsIUN-hover\":{opacity:1}},...addPropertyOverrides({\"XprPBsIUN-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:O3AN6m9fm,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-vude09 framer-hwddf3\",\"data-framer-name\":\"Viaplay_hori_RGB_white\",fill:\"black\",intrinsicHeight:213,intrinsicWidth:876,layoutDependency:layoutDependency,layoutId:\"leCgVyxuv\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"213.333\" width=\"876\" xml:space=\"preserve\"><defs><clipPath id=\"a\" clipPathUnits=\"userSpaceOnUse\"><path d=\"M80.008 160c-19.785 0-37.953-7.184-51.919-19.081L111.881 96V64L28.089 19.081C42.055 7.184 60.191 0 79.975 0 124.163 0 160 35.817 160 80s-35.805 80-79.992 80zm0-80L8.436 44.218C3.041 54.985 0 67.137 0 80c0 12.863 3.041 25.015 8.436 35.782L80.008 80\"/></clipPath><clipPath id=\"b\" clipPathUnits=\"userSpaceOnUse\"><path d=\"M.06 159.96h656.048V0H.06Z\"/></clipPath></defs><path style=\"fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none\" d=\"M239.493 34.113h-16.519l-31.066 80.87h14.876l11.423-30.655a2163.536 2163.536 0 0 0 13.232-36.408c4.274 12.163 8.711 24.573 13.314 36.819l11.259 30.244h14.711l-31.23-80.87m38.938 80.87h13.971v-80.87h-13.971zm16.519 17.258c0-5.095-4.109-9.368-9.534-9.368-5.424 0-9.533 4.273-9.533 9.368 0 5.096 4.109 9.369 9.533 9.369 5.425 0 9.534-4.273 9.534-9.369m64.66-63.693v7.397l-11.834-2.63c-20.711-4.602-29.915-7.643-29.915-17.752 0-7.478 6.163-11.587 16.601-11.587 13.642 0 25.148 7.067 25.148 24.572zm13.643 20.053V34.113h-13.314v10.684c-5.096-8.218-15.122-12.656-27.45-12.656-16.272 0-28.6 7.314-28.6 23.258 0 21.039 21.039 24.326 42.736 29.093l12.985 2.794v.329c0 12.328-8.3 17.095-19.642 17.095-12.41 0-21.368-5.836-26.381-10.191l-4.603 11.834c6.164 5.014 17.013 10.602 31.642 10.602 20.71 0 32.627-11.095 32.627-28.354m79.503-13.971c0 18.327-10.108 29.915-25.312 29.915-15.205 0-26.299-11.588-26.299-30.162 0-18.08 10.601-29.832 25.97-29.832 15.368 0 25.641 11.67 25.641 30.079zm14.136 0c0-25.888-15.204-42.489-37.805-42.489-11.752 0-21.203 4.438-27.449 12.821V10.28h-13.972v104.703h13.479v-12.739c6.246 9.451 16.19 14.711 28.682 14.711 22.107 0 37.065-16.601 37.065-42.325m11.817 63.857h13.971V34.113h-13.971zm81.261-69.939v7.397l-11.835-2.63c-20.71-4.602-29.915-7.643-29.915-17.752 0-7.478 6.164-11.587 16.602-11.587 13.642 0 25.148 7.067 25.148 24.572zm13.643 20.053V34.113h-13.314v10.684c-5.096-8.218-15.122-12.656-27.45-12.656-16.273 0-28.6 7.314-28.6 23.258 0 21.039 21.039 24.326 42.736 29.093l12.985 2.794v.329c0 12.328-8.301 17.095-19.642 17.095-12.41 0-21.368-5.836-26.381-10.191l-4.603 11.834c6.164 5.014 17.013 10.602 31.641 10.602 20.711 0 32.628-11.095 32.628-28.354m53.237-49.228c-7.478-19.313-16.93-26.874-34.106-30.984l-4.356 11.26c8.383 2.794 15.944 5.506 21.45 13.478l-31.559 81.856h14.876l10.848-29.094c4.52-12.163 9.944-26.71 13.314-36.243 3.698 9.698 8.876 23.998 13.478 36.243l10.766 29.094h14.547l-29.258-75.61\" transform=\"matrix(1.33333 0 0 -1.33333 0 213.333)\"/><g clip-path=\"url(#a)\" transform=\"matrix(1.33333 0 0 -1.33333 0 213.333)\"><g clip-path=\"url(#b)\"><path style=\"fill:#fff;fill-opacity:1;fill-rule:nonzero;stroke:none\" d=\"M159.994 81.519c.841-45.385-36.12-82.346-81.505-81.505C35.717.807.815 35.709.022 78.481c-.841 45.385 36.119 82.346 81.505 81.505 42.772-.793 77.674-35.695 78.467-78.467\"/></g></g></svg>',withExternalLayout:true})})})})})});});const css=['.framer-TB9kL [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-TB9kL .framer-hwddf3 { display: block; }\",\".framer-TB9kL .framer-75pztl { cursor: pointer; height: 28px; overflow: hidden; position: relative; width: 115px; }\",\".framer-TB9kL .framer-vude09 { aspect-ratio: 4.112676056338028 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 115\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"S0mTydqWN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"O3AN6m9fm\":\"link\"}\n * @framerImmutableVariables true\n */const FramerQDglIi_ih=withCSS(Component,css,\"framer-TB9kL\");export default FramerQDglIi_ih;FramerQDglIi_ih.displayName=\"Viaplay\";FramerQDglIi_ih.defaultProps={height:28,width:115};addPropertyControls(FramerQDglIi_ih,{O3AN6m9fm:{title:\"Link\",type:ControlType.Link}});addFonts(FramerQDglIi_ih,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQDglIi_ih\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"S0mTydqWN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"115\",\"framerVariables\":\"{\\\"O3AN6m9fm\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"28\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QDglIi_ih.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./shsxOLAtJ-0.js\";const enabledGestures={mSbUQoyEU:{hover:true}};const cycleOrder=[\"mSbUQoyEU\"];const serializationHash=\"framer-ciICz\";const variantClassNames={mSbUQoyEU:\"framer-v-aod1md\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,lmZOwjbfa:(_ref=image!==null&&image!==void 0?image:props.lmZOwjbfa)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/xxvmPQlHmkLGY0thT5MQxHvQB0.png\"},s63fBu8LX:link!==null&&link!==void 0?link:props.s63fBu8LX};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,s63fBu8LX,lmZOwjbfa,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"mSbUQoyEU\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-ciICz\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:s63fBu8LX,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:121,intrinsicWidth:348,pixelHeight:121,pixelWidth:348,sizes:\"min(118px, 100vw)\",...toResponsiveImage(lmZOwjbfa)},className:`${cx(\"framer-aod1md\",className)} framer-1aw2629`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mSbUQoyEU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"mSbUQoyEU-hover\":{opacity:1}},...addPropertyOverrides({\"mSbUQoyEU-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-ciICz [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-ciICz .framer-1aw2629 { display: block; }\",\".framer-ciICz .framer-aod1md { cursor: pointer; height: 34px; overflow: visible; position: relative; text-decoration: none; width: 118px; }\",\".framer-ciICz.framer-v-aod1md.hover .framer-aod1md { aspect-ratio: 3.4545454545454546 / 1; height: var(--framer-aspect-ratio-supported, 34px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 118\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yuyMTqXwz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"s63fBu8LX\":\"link\",\"lmZOwjbfa\":\"image\"}\n * @framerImmutableVariables true\n */const FramershsxOLAtJ=withCSS(Component,css,\"framer-ciICz\");export default FramershsxOLAtJ;FramershsxOLAtJ.displayName=\"Trustly\";FramershsxOLAtJ.defaultProps={height:34,width:118};addPropertyControls(FramershsxOLAtJ,{s63fBu8LX:{title:\"Link\",type:ControlType.Link},lmZOwjbfa:{__defaultAssetReference:\"data:framer/asset-reference,xxvmPQlHmkLGY0thT5MQxHvQB0.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramershsxOLAtJ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramershsxOLAtJ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yuyMTqXwz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"34\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"118\",\"framerVariables\":\"{\\\"s63fBu8LX\\\":\\\"link\\\",\\\"lmZOwjbfa\\\":\\\"image\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./shsxOLAtJ.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./St8UEsHXi-0.js\";const enabledGestures={SdB48OKBY:{hover:true}};const cycleOrder=[\"SdB48OKBY\"];const serializationHash=\"framer-EkJg4\";const variantClassNames={SdB48OKBY:\"framer-v-1s5c2zi\"};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 valuesByLocaleId={LkrSYaFjO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};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,link,width,...props})=>{var _ref;return{...props,AGKgxWIYH:(_ref=image!==null&&image!==void 0?image:props.AGKgxWIYH)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/1CI0u3rt72quNyVjn0B4YcAadFs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1CI0u3rt72quNyVjn0B4YcAadFs.png?scale-down-to=512 512w, https://framerusercontent.com/images/1CI0u3rt72quNyVjn0B4YcAadFs.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/1CI0u3rt72quNyVjn0B4YcAadFs.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/1CI0u3rt72quNyVjn0B4YcAadFs.png 3628w\"},sKDmEHca6:link!==null&&link!==void 0?link:props.sKDmEHca6};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,sKDmEHca6,AGKgxWIYH,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"SdB48OKBY\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-EkJg4\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:sKDmEHca6,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{...restProps,as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:806,intrinsicWidth:1814,pixelHeight:1612,pixelWidth:3628,sizes:\"min(70px, 100vw)\",...toResponsiveImage(AGKgxWIYH)},className:`${cx(\"framer-1s5c2zi\",className)} framer-qqjlv2`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SdB48OKBY\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"SdB48OKBY-hover\":{opacity:1}},...addPropertyOverrides({\"SdB48OKBY-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant)})})})})});});const css=['.framer-EkJg4 [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-EkJg4 .framer-qqjlv2 { display: block; }\",\".framer-EkJg4 .framer-1s5c2zi { cursor: pointer; height: 31px; overflow: visible; position: relative; text-decoration: none; width: 70px; }\",\".framer-EkJg4.framer-v-1s5c2zi.hover .framer-1s5c2zi { aspect-ratio: 2.2506203473945408 / 1; height: var(--framer-aspect-ratio-supported, 31px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 70\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UYQkTeQ6l\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sKDmEHca6\":\"link\",\"AGKgxWIYH\":\"image\"}\n * @framerImmutableVariables true\n */const FramerSt8UEsHXi=withCSS(Component,css,\"framer-EkJg4\");export default FramerSt8UEsHXi;FramerSt8UEsHXi.displayName=\"Zettle\";FramerSt8UEsHXi.defaultProps={height:31,width:70};addPropertyControls(FramerSt8UEsHXi,{sKDmEHca6:{title:\"Link\",type:ControlType.Link},AGKgxWIYH:{__defaultAssetReference:\"data:framer/asset-reference,1CI0u3rt72quNyVjn0B4YcAadFs.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerSt8UEsHXi,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSt8UEsHXi\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"70\",\"framerIntrinsicHeight\":\"31\",\"framerVariables\":\"{\\\"sKDmEHca6\\\":\\\"link\\\",\\\"AGKgxWIYH\\\":\\\"image\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UYQkTeQ6l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./St8UEsHXi.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={nn5a4mGo1:{hover:true}};const serializationHash=\"framer-KmS4h\";const variantClassNames={nn5a4mGo1:\"framer-v-ep3g68\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,Ilfio58bX:link!==null&&link!==void 0?link:props.Ilfio58bX};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ilfio58bX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"nn5a4mGo1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ep3g68\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nn5a4mGo1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:.4,...style},variants:{\"nn5a4mGo1-hover\":{opacity:1}},...addPropertyOverrides({\"nn5a4mGo1-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:Ilfio58bX,nodeId:\"ADnbO1Zmv\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-w9j9rs framer-1g5q08l\",\"data-framer-name\":\"qliro_white\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ADnbO1Zmv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 20\"><g id=\"ss10879866358_1\"><path d=\"M 0 0 L 80 0 L 80 20 L 0 20 Z\" fill=\"transparent\"></path><path d=\"M 25.473 15.057 L 25.473 0.708 L 21.894 0.708 L 21.894 18.625 L 34.298 18.625 L 34.298 15.057 Z M 37.586 18.625 L 41.041 18.625 L 41.041 0.708 L 37.586 0.708 Z M 54.368 7.048 C 54.368 8.581 53.16 9.828 51.676 9.828 L 47.989 9.828 L 47.989 4.278 L 51.676 4.278 C 53.16 4.278 54.368 5.521 54.368 7.048 Z M 54.261 12.851 C 56.532 11.841 58.027 9.564 58.027 7.044 C 58.027 3.55 55.178 0.708 51.676 0.708 L 44.329 0.708 L 44.329 18.636 L 47.988 18.636 L 47.988 13.397 L 50.27 13.397 L 53.752 18.639 L 58.107 18.639 Z M 76.323 9.644 C 76.323 12.787 73.799 15.344 70.695 15.344 C 67.593 15.344 65.068 12.787 65.068 9.644 C 65.068 6.501 67.593 3.944 70.695 3.944 C 73.799 3.944 76.323 6.501 76.323 9.644 Z M 70.695 0.333 C 65.567 0.333 61.394 4.51 61.394 9.644 C 61.394 14.778 65.567 18.954 70.695 18.954 C 75.824 18.954 79.996 14.778 79.996 9.644 C 79.996 4.51 75.824 0.333 70.695 0.333 Z M 14.92 9.393 C 14.92 10.418 14.642 11.444 14.132 12.327 L 12.406 10.277 L 9.652 12.636 L 11.408 14.724 C 10.74 14.999 10.018 15.143 9.295 15.143 C 6.194 15.143 3.672 12.564 3.672 9.393 C 3.672 6.222 6.194 3.642 9.295 3.642 C 12.397 3.642 14.92 6.222 14.92 9.393 Z M 16.576 15.233 C 17.877 13.578 18.59 11.517 18.59 9.393 C 18.59 4.213 14.421 0 9.295 0 C 4.17 0 0 4.213 0 9.393 C 0 14.572 4.17 18.786 9.295 18.786 C 10.888 18.786 12.447 18.375 13.826 17.596 L 15.848 20 L 18.601 17.641 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10879866358,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KmS4h.framer-1g5q08l, .framer-KmS4h .framer-1g5q08l { display: block; }\",\".framer-KmS4h.framer-ep3g68 { cursor: pointer; height: 20px; overflow: hidden; position: relative; width: 80px; }\",\".framer-KmS4h .framer-w9j9rs { flex: none; height: 20px; left: calc(50.00000000000002% - 80px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 20px / 2); width: 80px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y_ouXGF0z\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Ilfio58bX\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxH9jYW1Bb=withCSS(Component,css,\"framer-KmS4h\");export default FramerxH9jYW1Bb;FramerxH9jYW1Bb.displayName=\"Qliro\";FramerxH9jYW1Bb.defaultProps={height:20,width:80};addPropertyControls(FramerxH9jYW1Bb,{Ilfio58bX:{title:\"Link\",type:ControlType.Link}});addFonts(FramerxH9jYW1Bb,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxH9jYW1Bb\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerVariables\":\"{\\\"Ilfio58bX\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"80\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y_ouXGF0z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xH9jYW1Bb.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Readly from\"https://framerusercontent.com/modules/U0l6i7llVnjIKn68gPSF/hZBhVlMB814Y3p6kXfCp/CWIOBAKfk.js\";import Doktor24 from\"https://framerusercontent.com/modules/QOTPr17SliLRZD7yXmdM/UxTcrqconzjIq3Tjoe7I/g50nYsXrE.js\";import Qapital from\"https://framerusercontent.com/modules/ABFhaDg3wZwc5W1u56km/BNggdQpyWhqEq14hJNS6/gETORZ9bu.js\";import Klarna from\"https://framerusercontent.com/modules/4nDadFi8xCqwmvXpEscC/0K7URjSzHnTxTzvS1G2s/KgGTyEKvl.js\";import Spotify from\"https://framerusercontent.com/modules/pYu6FQCEYQzAMUn50dRp/4nqOC6A8zVVekQFuRlL0/MJ8K8jbhp.js\";import PaypalNew from\"https://framerusercontent.com/modules/aPMkcKq0hsf9v1XEB6P9/klzCapJliqmjnaD2JTiK/mvZkG3VCG.js\";import Viaplay from\"https://framerusercontent.com/modules/N0w75av7RorEAUtBGQpi/0RtPQUqHFaXHPMPQGsX7/QDglIi_ih.js\";import Trustly from\"https://framerusercontent.com/modules/Mtq7dEU8rjjJeVmm6bW5/NXIrRydzy43O2TTPv7EZ/shsxOLAtJ.js\";import Zettle from\"https://framerusercontent.com/modules/VxzZbpXnNVTxRUPytvNR/kZdEuUzAOVkTbkfRHw3j/St8UEsHXi.js\";import Qliro from\"https://framerusercontent.com/modules/z7jnr4fkZQjWMvA7bPr3/1pl7Gwxzy1ZJKt6ETTWy/xH9jYW1Bb.js\";const QapitalFonts=getFonts(Qapital);const ZettleFonts=getFonts(Zettle);const PaypalNewFonts=getFonts(PaypalNew);const QliroFonts=getFonts(Qliro);const TrustlyFonts=getFonts(Trustly);const ReadlyFonts=getFonts(Readly);const KlarnaFonts=getFonts(Klarna);const ViaplayFonts=getFonts(Viaplay);const Doktor24Fonts=getFonts(Doktor24);const SpotifyFonts=getFonts(Spotify);const TickerFonts=getFonts(Ticker);const TickerControls=getPropertyControls(Ticker);const serializationHash=\"framer-4b9jY\";const variantClassNames={UArrxwtTG:\"framer-v-1exxife\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Bottom:\"bottom\",Left:\"left\",Right:\"right\",Top:\"top\"};const getProps=({direction,gap,height,id,width,...props})=>{return{...props,dghlA_ncZ:humanReadableEnumMap[direction]??direction??props.dghlA_ncZ??\"left\",N9f_7B7OC:gap??props.N9f_7B7OC??65};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,dghlA_ncZ,N9f_7B7OC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UArrxwtTG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1exxife\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UArrxwtTG\",ref:refBinding,style:{backdropFilter:\"blur(9px)\",backgroundColor:\"rgba(29, 29, 31, 0.8)\",WebkitBackdropFilter:\"blur(9px)\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ovfmcn-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R0kGuYhZh-container\",nodeId:\"R0kGuYhZh\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:dghlA_ncZ,fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:61,overflow:false},gap:N9f_7B7OC,height:\"100%\",hoverFactor:1,id:\"R0kGuYhZh\",layoutId:\"R0kGuYhZh\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q4_aLCMKi\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vopevb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q1JunHt9b-container\",nodeId:\"Q1JunHt9b\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Qapital,{height:\"100%\",id:\"Q1JunHt9b\",layoutId:\"Q1JunHt9b\",rFpuGLv9y:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Dr9JETJOx\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ot8lgh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MbxdVf7S_-container\",nodeId:\"MbxdVf7S_\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Zettle,{height:\"100%\",id:\"MbxdVf7S_\",layoutId:\"MbxdVf7S_\",sKDmEHca6:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lbEC1YaAY\",webPageId:\"zrlbQ0TQL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,width:\"89px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-238sk3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"F6bzbcUSX-container\",nodeId:\"F6bzbcUSX\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(PaypalNew,{height:\"100%\",id:\"F6bzbcUSX\",layoutId:\"F6bzbcUSX\",style:{height:\"100%\",width:\"100%\"},tPX6EJSWE:resolvedLinks2[0],width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"weDEBNjgJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"80px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-193ah9i-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"daTen1vPg-container\",nodeId:\"daTen1vPg\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Qliro,{height:\"100%\",id:\"daTen1vPg\",Ilfio58bX:resolvedLinks3[0],layoutId:\"daTen1vPg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uJEdd60mG\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wb8i23-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zCewsfKKo-container\",nodeId:\"zCewsfKKo\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Trustly,{height:\"100%\",id:\"zCewsfKKo\",layoutId:\"zCewsfKKo\",s63fBu8LX:resolvedLinks4[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o3jl4dKAm\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dlcx2b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"m0USTEvsb-container\",nodeId:\"m0USTEvsb\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Readly,{height:\"100%\",id:\"m0USTEvsb\",layoutId:\"m0USTEvsb\",OO1YXhlwu:resolvedLinks5[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"x2zlBiuOq\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qncwsb-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zmF7EKAM1-container\",nodeId:\"zmF7EKAM1\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Klarna,{height:\"100%\",id:\"zmF7EKAM1\",layoutId:\"zmF7EKAM1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xbOXeTPaB:resolvedLinks6[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RZKAwmKXH\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a5g2uc-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lnycFgLBe-container\",nodeId:\"lnycFgLBe\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Viaplay,{height:\"100%\",id:\"lnycFgLBe\",layoutId:\"lnycFgLBe\",O3AN6m9fm:resolvedLinks7[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ntn3R2TXu\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10k5n4r-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ozORxwPMV-container\",nodeId:\"ozORxwPMV\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Doktor24,{Gj2aFdTZE:resolvedLinks8[0],height:\"100%\",id:\"ozORxwPMV\",layoutId:\"ozORxwPMV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BeyAcNy1P\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wm7csn-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zSpECgKt2-container\",nodeId:\"zSpECgKt2\",rendersWithMotion:true,scopeId:\"bdH28PsI9\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"zSpECgKt2\",layoutId:\"zSpECgKt2\",o8WmLWOgu:resolvedLinks9[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4b9jY.framer-2a1a2v, .framer-4b9jY .framer-2a1a2v { display: block; }\",\".framer-4b9jY.framer-1exxife { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-4b9jY .framer-1ovfmcn-container { flex: 1 0 0px; height: 1px; position: relative; width: 1200px; }\",\".framer-4b9jY .framer-1vopevb-container { height: 24px; position: relative; width: 85px; }\",\".framer-4b9jY .framer-1ot8lgh-container { height: 31px; position: relative; width: 70px; }\",\".framer-4b9jY .framer-238sk3-container { height: 31px; position: relative; width: 89px; }\",\".framer-4b9jY .framer-193ah9i-container { height: 20px; position: relative; width: 80px; }\",\".framer-4b9jY .framer-1wb8i23-container { height: 34px; position: relative; width: 118px; }\",\".framer-4b9jY .framer-dlcx2b-container { height: 30px; position: relative; width: 103px; }\",\".framer-4b9jY .framer-qncwsb-container, .framer-4b9jY .framer-wm7csn-container { height: 30px; position: relative; width: 100px; }\",\".framer-4b9jY .framer-1a5g2uc-container { height: 28px; position: relative; width: 115px; }\",\".framer-4b9jY .framer-10k5n4r-container { height: 30px; position: relative; width: 118px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"dghlA_ncZ\":\"direction\",\"N9f_7B7OC\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbdH28PsI9=withCSS(Component,css,\"framer-4b9jY\");export default FramerbdH28PsI9;FramerbdH28PsI9.displayName=\"logos\";FramerbdH28PsI9.defaultProps={height:100,width:1200};addPropertyControls(FramerbdH28PsI9,{dghlA_ncZ:TickerControls?.[\"direction\"]&&{...TickerControls[\"direction\"],defaultValue:\"left\",description:undefined,hidden:undefined,title:\"Direction\"},N9f_7B7OC:{defaultValue:65,title:\"Gap\",type:ControlType.Number}});addFonts(FramerbdH28PsI9,[{explicitInter:true,fonts:[]},...QapitalFonts,...ZettleFonts,...PaypalNewFonts,...QliroFonts,...TrustlyFonts,...ReadlyFonts,...KlarnaFonts,...ViaplayFonts,...Doktor24Fonts,...SpotifyFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbdH28PsI9\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"dghlA_ncZ\\\":\\\"direction\\\",\\\"N9f_7B7OC\\\":\\\"gap\\\"}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bdH28PsI9.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", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "image", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "OO1YXhlwu", "fUIsBfz2_", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramerCWIOBAKfk", "withCSS", "CWIOBAKfk_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Gj2aFdTZE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "Link", "cx", "serializationHash", "addPropertyOverrides", "SVG", "css", "Framerg50nYsXrE", "withCSS", "g50nYsXrE_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", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "rFpuGLv9y", "Mf_Ktthoy", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramergETORZ9bu", "withCSS", "gETORZ9bu_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", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xbOXeTPaB", "ANWD1rg3v", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramerKgGTyEKvl", "withCSS", "KgGTyEKvl_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", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "o8WmLWOgu", "BWssjfTdD", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramerMJ8K8jbhp", "withCSS", "MJ8K8jbhp_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tPX6EJSWE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "SVG", "css", "FramermvZkG3VCG", "withCSS", "mvZkG3VCG_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "O3AN6m9fm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "addPropertyOverrides", "Link", "SVG", "css", "FramerQDglIi_ih", "withCSS", "QDglIi_ih_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", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "s63fBu8LX", "lmZOwjbfa", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramershsxOLAtJ", "withCSS", "shsxOLAtJ_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", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "sKDmEHca6", "AGKgxWIYH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "Image2", "addPropertyOverrides", "css", "FramerSt8UEsHXi", "withCSS", "St8UEsHXi_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Ilfio58bX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Link", "SVG", "css", "FramerxH9jYW1Bb", "withCSS", "xH9jYW1Bb_default", "addPropertyControls", "ControlType", "addFonts", "QapitalFonts", "getFonts", "gETORZ9bu_default", "ZettleFonts", "St8UEsHXi_default", "PaypalNewFonts", "mvZkG3VCG_default", "QliroFonts", "xH9jYW1Bb_default", "TrustlyFonts", "shsxOLAtJ_default", "ReadlyFonts", "CWIOBAKfk_default", "KlarnaFonts", "KgGTyEKvl_default", "ViaplayFonts", "QDglIi_ih_default", "Doktor24Fonts", "g50nYsXrE_default", "SpotifyFonts", "MJ8K8jbhp_default", "TickerFonts", "Ticker", "TickerControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "direction", "gap", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "dghlA_ncZ", "N9f_7B7OC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "ResolveLinks", "resolvedLinks", "gETORZ9bu_default", "resolvedLinks1", "St8UEsHXi_default", "resolvedLinks2", "mvZkG3VCG_default", "resolvedLinks3", "xH9jYW1Bb_default", "resolvedLinks4", "shsxOLAtJ_default", "resolvedLinks5", "CWIOBAKfk_default", "resolvedLinks6", "KgGTyEKvl_default", "resolvedLinks7", "QDglIi_ih_default", "resolvedLinks8", "g50nYsXrE_default", "resolvedLinks9", "MJ8K8jbhp_default", "css", "FramerbdH28PsI9", "withCSS", "bdH28PsI9_default", "addPropertyControls", "TickerControls", "ControlType", "addFonts", "QapitalFonts", "ZettleFonts", "PaypalNewFonts", "QliroFonts", "TrustlyFonts", "ReadlyFonts", "KlarnaFonts", "ViaplayFonts", "Doktor24Fonts", "SpotifyFonts", "TickerFonts"]
}
