{"version":3,"file":"Z_fCC9TaA.CCIFdxlE.mjs","names":["size","css","className","Image"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js","https:/framerusercontent.com/modules/T8TWLLoyxlA21dy9jwlG/yfS1m5b4zLHKQRHJMb4E/kxH1ZnEWz.js","https:/framerusercontent.com/modules/UpBceczmKTpwMInJTcmy/l9sOxuGiGCQgiOmnwS5N/Z_fCC9TaA.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (b83b17b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Outfit-500\",\"GF;Outfit-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"}]}];export const css=['.framer-nWinv .framer-styles-preset-1f6p988:not(.rich-text-wrapper), .framer-nWinv .framer-styles-preset-1f6p988.rich-text-wrapper h4 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.0178571em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-794667b9-b2e4-49c1-8ece-f4c4c6cd9b15, #181c39); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-nWinv .framer-styles-preset-1f6p988:not(.rich-text-wrapper), .framer-nWinv .framer-styles-preset-1f6p988.rich-text-wrapper h4 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.0178571em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-794667b9-b2e4-49c1-8ece-f4c4c6cd9b15, #181c39); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-nWinv .framer-styles-preset-1f6p988:not(.rich-text-wrapper), .framer-nWinv .framer-styles-preset-1f6p988.rich-text-wrapper h4 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.0178571em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-794667b9-b2e4-49c1-8ece-f4c4c6cd9b15, #181c39); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-nWinv .framer-styles-preset-1f6p988:not(.rich-text-wrapper), .framer-nWinv .framer-styles-preset-1f6p988.rich-text-wrapper h4 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.0178571em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-794667b9-b2e4-49c1-8ece-f4c4c6cd9b15, #181c39); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nWinv\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (1bcc82d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}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/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/T8TWLLoyxlA21dy9jwlG/yfS1m5b4zLHKQRHJMb4E/kxH1ZnEWz.js\";const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-n0LFL\";const variantClassNames={PR10efYf9:\"framer-v-duslvp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:0,mass:1.2,stiffness:300,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 getProps=({height,id,logoVisibility,shopCardVisibility,titleText,titleVisibility,width,...props})=>{return{...props,E8IHtnIlx:titleVisibility??props.E8IHtnIlx??true,nUXPoBEIs:shopCardVisibility??props.nUXPoBEIs??true,qRbgCt6lN:logoVisibility??props.qRbgCt6lN??true,rwSUkiTGJ:titleText??props.rwSUkiTGJ??\"The secret behind TikTok Shop’s most successful brands\"};};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,rwSUkiTGJ,E8IHtnIlx,qRbgCt6lN,nUXPoBEIs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"PR10efYf9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-duslvp\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PR10efYf9\",ref:refBinding,style:{...style},children:[E8IHtnIlx&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18sn6kf\",\"data-framer-name\":\"Section Title\",layoutDependency:layoutDependency,layoutId:\"qxTITkCEh\",children:E8IHtnIlx&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1f6p988\",\"data-styles-preset\":\"kxH1ZnEWz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Powering leading brands across the industry\"})}),className:\"framer-163gus1\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Oeab4lZgl\",style:{transformPerspective:1200},text:rwSUkiTGJ,verticalAlignment:\"top\",withExternalLayout:true})}),qRbgCt6lN&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dm7loo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qjZ3pE_Zn-container\",nodeId:\"qjZ3pE_Zn\",rendersWithMotion:true,scopeId:\"Z_fCC9TaA\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"qjZ3pE_Zn\",layoutId:\"qjZ3pE_Zn\",padding:10,paddingBottom:10,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/ysgxJse1hKHhqajeCZBXQk8IU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ysgxJse1hKHhqajeCZBXQk8IU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ysgxJse1hKHhqajeCZBXQk8IU.png 532w\"},className:\"framer-fz7c6h\",\"data-framer-name\":\"AKIRA\",layoutDependency:layoutDependency,layoutId:\"SmhiVvDeZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/uKcS8uNXlJSA7CkK1ARZarKaM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uKcS8uNXlJSA7CkK1ARZarKaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/uKcS8uNXlJSA7CkK1ARZarKaM.png 532w\"},className:\"framer-hia8vi\",\"data-framer-name\":\"Anker\",layoutDependency:layoutDependency,layoutId:\"pN6OZgBZn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/2AhYcYlUpMPynrRlA9ZR9gxbMs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2AhYcYlUpMPynrRlA9ZR9gxbMs.png?scale-down-to=512 512w,https://framerusercontent.com/images/2AhYcYlUpMPynrRlA9ZR9gxbMs.png 532w\"},className:\"framer-pvryj0\",\"data-framer-name\":\"Blendjet\",layoutDependency:layoutDependency,layoutId:\"N2eu41zSi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/hvXSfoU8lJbMYz5ntswiLLt6uQo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hvXSfoU8lJbMYz5ntswiLLt6uQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/hvXSfoU8lJbMYz5ntswiLLt6uQo.png 532w\"},className:\"framer-1pgmc4s\",\"data-framer-name\":\"OQQ\",layoutDependency:layoutDependency,layoutId:\"a6LZmns6g\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/QoGXl7WIjPYOAizFKmueef5yKN0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QoGXl7WIjPYOAizFKmueef5yKN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QoGXl7WIjPYOAizFKmueef5yKN0.png 532w\"},className:\"framer-10papfi\",\"data-framer-name\":\"Brumate\",layoutDependency:layoutDependency,layoutId:\"vdf2SqUDX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/uh7yshh25MPT9sTcTTvpo3lQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uh7yshh25MPT9sTcTTvpo3lQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/uh7yshh25MPT9sTcTTvpo3lQ.png 532w\"},className:\"framer-11750p3\",\"data-framer-name\":\"Magic spoon\",layoutDependency:layoutDependency,layoutId:\"O7qmiUojl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/xWRk3LTJSZFSxqvelembSv9W4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xWRk3LTJSZFSxqvelembSv9W4.png?scale-down-to=512 512w,https://framerusercontent.com/images/xWRk3LTJSZFSxqvelembSv9W4.png 532w\"},className:\"framer-7bzb1o\",\"data-framer-name\":\"CRAFT\",layoutDependency:layoutDependency,layoutId:\"Lvv71BzJM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/hF95slFDlCxsZbk1lm0yDh9PTk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hF95slFDlCxsZbk1lm0yDh9PTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/hF95slFDlCxsZbk1lm0yDh9PTk.png 532w\"},className:\"framer-1ja5v3a\",\"data-framer-name\":\"RIDGE\",layoutDependency:layoutDependency,layoutId:\"l9gXaw1Sk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/JDPty4F84RUQ2FVEBoresmNfII.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JDPty4F84RUQ2FVEBoresmNfII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JDPty4F84RUQ2FVEBoresmNfII.png 532w\"},className:\"framer-vgewu6\",\"data-framer-name\":\"Simple modern\",layoutDependency:layoutDependency,layoutId:\"Y_znAq6Dm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/PBlenWgiVQWOslqY9bCNVVIuR3s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PBlenWgiVQWOslqY9bCNVVIuR3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/PBlenWgiVQWOslqY9bCNVVIuR3s.png 532w\"},className:\"framer-1uar6xp\",\"data-framer-name\":\"Accelerator\",layoutDependency:layoutDependency,layoutId:\"Dm95DQzIJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/lfO2lQQyYgbT5Aqd4rAbm0eaQc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lfO2lQQyYgbT5Aqd4rAbm0eaQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/lfO2lQQyYgbT5Aqd4rAbm0eaQc.png 532w\"},className:\"framer-1dx51nq\",\"data-framer-name\":\"Hudson\",layoutDependency:layoutDependency,layoutId:\"Y0bO4MblR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/QISeqmXVvC1GPmnpjCn8A6ttIa8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QISeqmXVvC1GPmnpjCn8A6ttIa8.png?scale-down-to=512 512w,https://framerusercontent.com/images/QISeqmXVvC1GPmnpjCn8A6ttIa8.png 532w\"},className:\"framer-1juyvhr\",\"data-framer-name\":\"Peach and lily\",layoutDependency:layoutDependency,layoutId:\"Nn4aoBmJ5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/s8DmfIxO3J83KtZ9455uTI42a0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/s8DmfIxO3J83KtZ9455uTI42a0.png?scale-down-to=512 512w,https://framerusercontent.com/images/s8DmfIxO3J83KtZ9455uTI42a0.png 532w\"},className:\"framer-1guoajg\",\"data-framer-name\":\"Zak\",layoutDependency:layoutDependency,layoutId:\"VE5lO_HwR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/rlmDu3CqTGKcUwhX2R81iwv50.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlmDu3CqTGKcUwhX2R81iwv50.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlmDu3CqTGKcUwhX2R81iwv50.png 532w\"},className:\"framer-1nl3fmd\",\"data-framer-name\":\"Gorgie\",layoutDependency:layoutDependency,layoutId:\"gBTUydd7U\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/2RXSEjHlIZQBokQBUaS76JuhoQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2RXSEjHlIZQBokQBUaS76JuhoQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/2RXSEjHlIZQBokQBUaS76JuhoQ.png 532w\"},className:\"framer-9qykfn\",\"data-framer-name\":\"Buffalo\",layoutDependency:layoutDependency,layoutId:\"RS4seNpzu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/rO6LQsG58BV8BKBFdadxcXG2KU0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rO6LQsG58BV8BKBFdadxcXG2KU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/rO6LQsG58BV8BKBFdadxcXG2KU0.png 532w\"},className:\"framer-wayoe2\",\"data-framer-name\":\"Whiskerware\",layoutDependency:layoutDependency,layoutId:\"lI2m2fXvE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/WnW1RTY7eASAb00mPoO9F25AD6Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WnW1RTY7eASAb00mPoO9F25AD6Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/WnW1RTY7eASAb00mPoO9F25AD6Y.png 532w\"},className:\"framer-1iflnxr\",\"data-framer-name\":\"Laura Mercier\",layoutDependency:layoutDependency,layoutId:\"fDfQM5lUD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:266,pixelHeight:312,pixelWidth:532,sizes:\"140px\",src:\"https://framerusercontent.com/images/TIJZ9GOTt9UYdxKSues2SbrjIeY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TIJZ9GOTt9UYdxKSues2SbrjIeY.png?scale-down-to=512 512w,https://framerusercontent.com/images/TIJZ9GOTt9UYdxKSues2SbrjIeY.png 532w\"},className:\"framer-2ryuht\",\"data-framer-name\":\"BareMinerals\",layoutDependency:layoutDependency,layoutId:\"o6jSDtpM1\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),nUXPoBEIs&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e7ehho-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"B4DMkjMNr-container\",nodeId:\"B4DMkjMNr\",rendersWithMotion:true,scopeId:\"Z_fCC9TaA\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"B4DMkjMNr\",layoutId:\"B4DMkjMNr\",padding:10,paddingBottom:10,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:540,pixelHeight:379,pixelWidth:540,sizes:\"301px\",src:\"https://framerusercontent.com/images/46cKTyAsrRMGLATFTxH8j27C8qk.png\",srcSet:\"https://framerusercontent.com/images/46cKTyAsrRMGLATFTxH8j27C8qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/46cKTyAsrRMGLATFTxH8j27C8qk.png 540w\"},className:\"framer-19shkfp\",\"data-framer-name\":\"Anker\",layoutDependency:layoutDependency,layoutId:\"EGKDjtILY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:541,pixelHeight:379,pixelWidth:541,sizes:\"300px\",src:\"https://framerusercontent.com/images/DH7vJ1YnL0xVhDy9bBnG3CSSfmc.png\",srcSet:\"https://framerusercontent.com/images/DH7vJ1YnL0xVhDy9bBnG3CSSfmc.png?scale-down-to=512 512w,https://framerusercontent.com/images/DH7vJ1YnL0xVhDy9bBnG3CSSfmc.png 541w\"},className:\"framer-1njylgl\",\"data-framer-name\":\"SimpleModern\",layoutDependency:layoutDependency,layoutId:\"pMVnI_xF6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:540,pixelHeight:379,pixelWidth:540,sizes:\"301px\",src:\"https://framerusercontent.com/images/VcvJxgrx1iPXlPJmCNp23ocUtEI.png\",srcSet:\"https://framerusercontent.com/images/VcvJxgrx1iPXlPJmCNp23ocUtEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/VcvJxgrx1iPXlPJmCNp23ocUtEI.png 540w\"},className:\"framer-e2f9oj\",\"data-framer-name\":\"OQQ\",layoutDependency:layoutDependency,layoutId:\"daVVIAGlp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:540,pixelHeight:379,pixelWidth:540,sizes:\"301px\",src:\"https://framerusercontent.com/images/oLxKvMxVDYrJgWJfPfaQge5fQ.png\",srcSet:\"https://framerusercontent.com/images/oLxKvMxVDYrJgWJfPfaQge5fQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/oLxKvMxVDYrJgWJfPfaQge5fQ.png 540w\"},className:\"framer-1em63c3\",\"data-framer-name\":\"BruMate\",layoutDependency:layoutDependency,layoutId:\"ZhO8lOJL0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:540,pixelHeight:379,pixelWidth:540,sizes:\"301px\",src:\"https://framerusercontent.com/images/fsAOTte5QR6cwfp4AGnQcgHQ.png\",srcSet:\"https://framerusercontent.com/images/fsAOTte5QR6cwfp4AGnQcgHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fsAOTte5QR6cwfp4AGnQcgHQ.png 540w\"},className:\"framer-tghh2d\",\"data-framer-name\":\"Kosas\",layoutDependency:layoutDependency,layoutId:\"fhEiat8sA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:541,pixelHeight:379,pixelWidth:541,sizes:\"300px\",src:\"https://framerusercontent.com/images/4LorZrICby3DkQ1BN5kVL3K1N4.png\",srcSet:\"https://framerusercontent.com/images/4LorZrICby3DkQ1BN5kVL3K1N4.png?scale-down-to=512 512w,https://framerusercontent.com/images/4LorZrICby3DkQ1BN5kVL3K1N4.png 541w\"},className:\"framer-oku0y9\",\"data-framer-name\":\"Zulay\",layoutDependency:layoutDependency,layoutId:\"I9a4LGVw2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:541,pixelHeight:379,pixelWidth:541,sizes:\"300px\",src:\"https://framerusercontent.com/images/lsf1fUvbeo1qftC1c4RLU6AGKk.png\",srcSet:\"https://framerusercontent.com/images/lsf1fUvbeo1qftC1c4RLU6AGKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/lsf1fUvbeo1qftC1c4RLU6AGKk.png 541w\"},className:\"framer-3aophv\",\"data-framer-name\":\"BlendJet\",layoutDependency:layoutDependency,layoutId:\"gbTqUDwFc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:541,pixelHeight:379,pixelWidth:541,sizes:\"300px\",src:\"https://framerusercontent.com/images/zpazpuFDx99EN076qhGjrYH7Xe8.png\",srcSet:\"https://framerusercontent.com/images/zpazpuFDx99EN076qhGjrYH7Xe8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zpazpuFDx99EN076qhGjrYH7Xe8.png 541w\"},className:\"framer-9cyvs\",\"data-framer-name\":\"Zak\",layoutDependency:layoutDependency,layoutId:\"fXyGuNOFN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379,intrinsicWidth:541,pixelHeight:379,pixelWidth:541,sizes:\"300px\",src:\"https://framerusercontent.com/images/7IkbdfljVAqIszxh94KwvKk0.png\",srcSet:\"https://framerusercontent.com/images/7IkbdfljVAqIszxh94KwvKk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/7IkbdfljVAqIszxh94KwvKk0.png 541w\"},className:\"framer-nxsm80\",\"data-framer-name\":\"TrueClassic\",layoutDependency:layoutDependency,layoutId:\"F1JRBGSGl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:541,pixelHeight:378,pixelWidth:541,sizes:\"301px\",src:\"https://framerusercontent.com/images/9Ph3gyazNslTlE8ag61fUn98T4w.png\",srcSet:\"https://framerusercontent.com/images/9Ph3gyazNslTlE8ag61fUn98T4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Ph3gyazNslTlE8ag61fUn98T4w.png 541w\"},className:\"framer-1btqqs8\",\"data-framer-name\":\"TSF\",layoutDependency:layoutDependency,layoutId:\"P4c4AaDJN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:270,pixelHeight:378,pixelWidth:540,sizes:\"300px\",src:\"https://framerusercontent.com/images/qyUO5Be4yHURcemdKBDoTvwgzew.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qyUO5Be4yHURcemdKBDoTvwgzew.png?scale-down-to=512 512w,https://framerusercontent.com/images/qyUO5Be4yHURcemdKBDoTvwgzew.png 540w\"},className:\"framer-1u4qzkr\",\"data-framer-name\":\"Magic Spoon\",layoutDependency:layoutDependency,layoutId:\"qnIa1JaAD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:189,intrinsicWidth:270,pixelHeight:378,pixelWidth:540,sizes:\"300px\",src:\"https://framerusercontent.com/images/necW81Vhr2gkIJ7UGErjpNao9nc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/necW81Vhr2gkIJ7UGErjpNao9nc.png?scale-down-to=512 512w,https://framerusercontent.com/images/necW81Vhr2gkIJ7UGErjpNao9nc.png 540w\"},className:\"framer-hy28jd\",\"data-framer-name\":\"Akira\",layoutDependency:layoutDependency,layoutId:\"x_GYCWTZk\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n0LFL.framer-1e9061b, .framer-n0LFL .framer-1e9061b { display: block; }\",\".framer-n0LFL.framer-duslvp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-n0LFL .framer-18sn6kf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 20px 10px; position: relative; width: 100%; }\",\".framer-n0LFL .framer-163gus1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-n0LFL .framer-dm7loo-container { flex: none; height: 85px; position: relative; width: 100%; }\",\".framer-n0LFL .framer-fz7c6h, .framer-n0LFL .framer-hia8vi, .framer-n0LFL .framer-pvryj0, .framer-n0LFL .framer-1pgmc4s, .framer-n0LFL .framer-10papfi, .framer-n0LFL .framer-11750p3, .framer-n0LFL .framer-7bzb1o, .framer-n0LFL .framer-1ja5v3a, .framer-n0LFL .framer-vgewu6, .framer-n0LFL .framer-1uar6xp, .framer-n0LFL .framer-1dx51nq, .framer-n0LFL .framer-1juyvhr, .framer-n0LFL .framer-1guoajg, .framer-n0LFL .framer-1nl3fmd, .framer-n0LFL .framer-9qykfn, .framer-n0LFL .framer-wayoe2, .framer-n0LFL .framer-1iflnxr, .framer-n0LFL .framer-2ryuht { aspect-ratio: 1.705128205128205 / 1; height: var(--framer-aspect-ratio-supported, 82px); overflow: visible; position: relative; width: 140px; }\",\".framer-n0LFL .framer-1e7ehho-container { flex: none; height: 244px; position: relative; width: 100%; }\",\".framer-n0LFL .framer-19shkfp, .framer-n0LFL .framer-e2f9oj, .framer-n0LFL .framer-1em63c3, .framer-n0LFL .framer-tghh2d { aspect-ratio: 1.424802110817942 / 1; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: relative; width: 301px; }\",\".framer-n0LFL .framer-1njylgl, .framer-n0LFL .framer-oku0y9, .framer-n0LFL .framer-3aophv, .framer-n0LFL .framer-9cyvs, .framer-n0LFL .framer-nxsm80 { aspect-ratio: 1.4274406332453826 / 1; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: relative; width: 300px; }\",\".framer-n0LFL .framer-1btqqs8 { aspect-ratio: 1.4312169312169312 / 1; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: relative; width: 301px; }\",\".framer-n0LFL .framer-1u4qzkr, .framer-n0LFL .framer-hy28jd { aspect-ratio: 1.4285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 210px); overflow: visible; position: relative; width: 300px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 383\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rwSUkiTGJ\":\"titleText\",\"E8IHtnIlx\":\"titleVisibility\",\"qRbgCt6lN\":\"logoVisibility\",\"nUXPoBEIs\":\"shopCardVisibility\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZ_fCC9TaA=withCSS(Component,css,\"framer-n0LFL\");export default FramerZ_fCC9TaA;FramerZ_fCC9TaA.displayName=\"2025_Brand_Wall\";FramerZ_fCC9TaA.defaultProps={height:383,width:1400};addPropertyControls(FramerZ_fCC9TaA,{rwSUkiTGJ:{defaultValue:\"The secret behind TikTok Shop’s most successful brands\",displayTextArea:true,placeholder:\"The secret behind TikTok Shop’s most successful brands\",title:\"Title Text\",type:ControlType.String},E8IHtnIlx:{defaultValue:true,title:\"Title Visibility\",type:ControlType.Boolean},qRbgCt6lN:{defaultValue:true,title:\"Logo Visibility\",type:ControlType.Boolean},nUXPoBEIs:{defaultValue:true,title:\"Shop Card Visibility\",type:ControlType.Boolean}});addFonts(FramerZ_fCC9TaA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ_fCC9TaA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"rwSUkiTGJ\\\":\\\"titleText\\\",\\\"E8IHtnIlx\\\":\\\"titleVisibility\\\",\\\"qRbgCt6lN\\\":\\\"logoVisibility\\\",\\\"nUXPoBEIs\\\":\\\"shopCardVisibility\\\"}\",\"framerIntrinsicWidth\":\"1400\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"383\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z_fCC9TaA.map"],"mappings":"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"}