{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/n9cR4gFLy0DjoxfkLrIe/eDj1MxSfupkYrrIeXQ6b/Shared.js", "ssg:https://framerusercontent.com/modules/aXgJgk4Tii5ZvxLEFhPi/ScTD2bEsozJ7EDkN5pDG/ScrollToTopButton.js", "ssg:https://framerusercontent.com/modules/EpyF3KzuY7dAvz3juhb6/XKWWkUPfhJNXhPmt4tKN/HIK70klpc.js", "ssg:https://framerusercontent.com/modules/oB4QeWIgAvjaodBawNqP/u8tKUw4QvqEFFrRKRzHR/M5jNBF4Aj.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{motion}from\"framer-motion\";export const borderPropertyControl=(hidden=null)=>({type:ControlType.Object,optional:true,hidden,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}export function EmptyState({title,subtitle,maxWidth=0}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,maxWidth:maxWidth||undefined},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,// maxWidth: 500,\nlineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}EmptyState.displayName=\"Empty State\";\nexport const __FramerMetadata__ = {\"exports\":{\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"EmptyState\":{\"type\":\"reactComponent\",\"name\":\"EmptyState\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Shared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{cloneElement}from\"react\";import{borderPropertyControl,Border}from\"https://framerusercontent.com/modules/n9cR4gFLy0DjoxfkLrIe/eDj1MxSfupkYrrIeXQ6b/Shared.js\";function scrollToTop(){if(typeof window!==\"undefined\"){window.scrollTo({top:0,behavior:\"smooth\"});}}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */export default function ScrollToTopButton(props){if(props.buttonType==\"custom\"){var _props_custom,_props_style,_props_style1;let layer=(_props_custom=props.custom)===null||_props_custom===void 0?void 0:_props_custom[0];if(layer&&(((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)||((_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.height))){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...props.style}});}return /*#__PURE__*/_jsx(\"div\",{onClick:scrollToTop,style:props.style,children:layer});}return /*#__PURE__*/_jsxs(\"div\",{style:{width:props.buttonWidth,height:props.buttonHeight,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",backgroundColor:props.fill,cursor:\"pointer\",boxShadow:props.shadows,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,...props.style},onClick:scrollToTop,children:[/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",fill:\"none\",viewBox:\"0 0 24 24\",strokeWidth:props.icon.stroke,stroke:props.icon.color,\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{width:props.icon.size,height:props.icon.size},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M12 5l0 14\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M18 11l-6 -6\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M6 11l6 -6\"})]}),/*#__PURE__*/_jsx(Border,{...props.border})]});}ScrollToTopButton.displayName=\"Scroll-to-Top Button\";addPropertyControls(ScrollToTopButton,{buttonType:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,title:\"Button\"},custom:{type:ControlType.ComponentInstance,title:\"Custom\",description:\"Connect a custom button layer.\",hidden(props){return props.buttonType!==\"custom\";}},fill:{type:ControlType.Color,defaultValue:\"#EDEDED\",optional:true,hidden(props){return props.buttonType!==\"default\";}},icon:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"black\"},size:{type:ControlType.Number,defaultValue:24,min:1},stroke:{type:ControlType.Number,defaultValue:2,min:1,max:10,step:.1}},hidden(props){return props.buttonType!==\"default\";}},radius:{type:ControlType.FusedNumber,defaultValue:20,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden(props){return props.buttonType!==\"default\";}},border:borderPropertyControl(props=>props.buttonType!==\"default\"),shadows:{type:ControlType.BoxShadow,hidden:props=>props.buttonType!=\"default\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollToTopButton\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/lF47hRfcEO8kXCTGsnLU/OTUxgEMX2nkT9ElUMcNe/Display2.js\";const SVGIconFonts=getFonts(SVGIcon);const enabledGestures={DFK7BQacg:{hover:true}};const cycleOrder=[\"DFK7BQacg\",\"ekYNZ0GVX\"];const serializationHash=\"framer-OukEE\";const variantClassNames={DFK7BQacg:\"framer-v-1n6u3jv\",ekYNZ0GVX:\"framer-v-6sh1ip\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:0,mass:.1,stiffness:1200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"DFK7BQacg\",mobile:\"ekYNZ0GVX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DFK7BQacg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DFK7BQacg\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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-1n6u3jv\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"DFK7BQacg\",ref:refBinding,style:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28,...style},...addPropertyOverrides({\"DFK7BQacg-hover\":{\"data-framer-name\":undefined},ekYNZ0GVX:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ui7khq\",\"data-framer-name\":\"@bg\",layoutDependency:layoutDependency,layoutId:\"yyV29_wL9\",style:{backgroundColor:\"var(--token-23a5337e-39af-4255-a806-95fe52167b1d, rgb(15, 15, 15))\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-simgyq-container\",\"data-framer-name\":\"icn-hov\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DuC97nrBG-container\",name:\"icn-hov\",nodeId:\"DuC97nrBG\",rendersWithMotion:true,scopeId:\"HIK70klpc\",children:/*#__PURE__*/_jsx(SVGIcon,{color:\"var(--token-0667f2a4-14e6-40ad-ab58-2ed6cb5acd8c, rgb(244, 244, 241))\",height:\"100%\",id:\"DuC97nrBG\",layoutId:\"DuC97nrBG\",name:\"icn-hov\",overrideStroke:false,padding:0,strokeWidth:1,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e3e3e3\"><path d=\"M427-615.91 253.04-441.96q-15.95 15.96-37.61 15.74-21.65-.21-37.6-16.17-14.96-15.96-15.18-37.61-.22-21.65 15.74-37.61l264-264q7.7-7.69 17.52-11.61 9.83-3.91 20.09-3.91t20.09 3.91q9.82 3.92 17.52 11.61l264.56 264.57q15.53 15.52 15.53 37.11 0 21.58-15.53 37.54-15.95 15.96-37.82 15.96t-37.83-15.96L533-615.91v422.13q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46t-37.54-15.46Q427-171.7 427-193.78v-422.13Z\"/></svg>',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m34ort-container\",\"data-framer-name\":\"icn-nor\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a7yHelj63-container\",name:\"icn-nor\",nodeId:\"a7yHelj63\",rendersWithMotion:true,scopeId:\"HIK70klpc\",children:/*#__PURE__*/_jsx(SVGIcon,{color:\"var(--token-0667f2a4-14e6-40ad-ab58-2ed6cb5acd8c, rgb(244, 244, 241))\",height:\"100%\",id:\"a7yHelj63\",layoutId:\"a7yHelj63\",name:\"icn-nor\",overrideStroke:false,padding:0,strokeWidth:1,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\" width=\"24px\" fill=\"#e3e3e3\"><path d=\"M427-615.91 253.04-441.96q-15.95 15.96-37.61 15.74-21.65-.21-37.6-16.17-14.96-15.96-15.18-37.61-.22-21.65 15.74-37.61l264-264q7.7-7.69 17.52-11.61 9.83-3.91 20.09-3.91t20.09 3.91q9.82 3.92 17.52 11.61l264.56 264.57q15.53 15.52 15.53 37.11 0 21.58-15.53 37.54-15.95 15.96-37.82 15.96t-37.83-15.96L533-615.91v422.13q0 22.08-15.46 37.54-15.45 15.46-37.54 15.46t-37.54-15.46Q427-171.7 427-193.78v-422.13Z\"/></svg>',width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OukEE.framer-12monzo, .framer-OukEE .framer-12monzo { display: block; }\",\".framer-OukEE.framer-1n6u3jv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 52px; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OukEE .framer-ui7khq { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-OukEE .framer-simgyq-container { bottom: -40px; flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; width: 40px; z-index: 1; }\",\".framer-OukEE .framer-m34ort-container { flex: none; height: 40px; position: relative; width: 40px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OukEE.framer-1n6u3jv { gap: 0px; } .framer-OukEE.framer-1n6u3jv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-OukEE.framer-1n6u3jv > :first-child { margin-left: 0px; } .framer-OukEE.framer-1n6u3jv > :last-child { margin-right: 0px; } }\",\".framer-OukEE.framer-v-6sh1ip.framer-1n6u3jv { aspect-ratio: 1 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-OukEE.framer-v-6sh1ip .framer-m34ort-container { height: 36px; width: 36px; }\",\".framer-OukEE.framer-v-1n6u3jv.hover.framer-1n6u3jv { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 52px); }\",\".framer-OukEE.framer-v-1n6u3jv.hover .framer-simgyq-container { bottom: unset; left: unset; position: relative; }\",\".framer-OukEE.framer-v-1n6u3jv.hover .framer-m34ort-container { left: calc(50.00000000000002% - 40px / 2); position: absolute; top: -40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 52\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ekYNZ0GVX\":{\"layout\":[\"fixed\",\"fixed\"]},\"fBk_rkQBc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHIK70klpc=withCSS(Component,css,\"framer-OukEE\");export default FramerHIK70klpc;FramerHIK70klpc.displayName=\"backtotop-inner\";FramerHIK70klpc.defaultProps={height:52,width:52};addPropertyControls(FramerHIK70klpc,{variant:{options:[\"DFK7BQacg\",\"ekYNZ0GVX\"],optionTitles:[\"desktop\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHIK70klpc,[{explicitInter:true,fonts:[]},...SVGIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHIK70klpc\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"52\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ekYNZ0GVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fBk_rkQBc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"52\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HIK70klpc.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ScrollToTopButton from\"https://framerusercontent.com/modules/aXgJgk4Tii5ZvxLEFhPi/ScTD2bEsozJ7EDkN5pDG/ScrollToTopButton.js\";import BacktotopBtn from\"https://framerusercontent.com/modules/EpyF3KzuY7dAvz3juhb6/XKWWkUPfhJNXhPmt4tKN/HIK70klpc.js\";const BacktotopBtnFonts=getFonts(BacktotopBtn);const ScrollToTopButtonFonts=getFonts(ScrollToTopButton);const MotionDivWithFX=withFX(motion.div);const enabledGestures={fBjWXpnDI:{pressed:true},HWTN4Edu4:{pressed:true}};const cycleOrder=[\"fBjWXpnDI\",\"HWTN4Edu4\"];const serializationHash=\"framer-S7LKi\";const variantClassNames={fBjWXpnDI:\"framer-v-1s5zipm\",HWTN4Edu4:\"framer-v-zyv47s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:76};const transition1={damping:80,delay:0,mass:.1,stiffness:1200,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"fBjWXpnDI\",mobile:\"HWTN4Edu4\"};const getProps=({height,id,scrollSection,width,...props})=>{return{...props,Mjc459c9_:scrollSection??props.Mjc459c9_,variant:humanReadableVariantMap[props.variant]??props.variant??\"fBjWXpnDI\"};};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,Mjc459c9_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fBjWXpnDI\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"HWTN4Edu4-pressed\")return false;if(baseVariant===\"HWTN4Edu4\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"HWTN4Edu4-pressed\")return true;if(baseVariant===\"HWTN4Edu4\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:Mjc459c9_,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1s5zipm\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"fBjWXpnDI\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"fBjWXpnDI-pressed\":{\"data-framer-name\":undefined},\"HWTN4Edu4-pressed\":{\"data-framer-name\":undefined},HWTN4Edu4:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xyqmg-container\",\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"GmvuyzZDW-container\",name:\"desktop\",style:{scale:1},variants:{\"fBjWXpnDI-pressed\":{scale:.9}},children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"custom\",custom:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"52px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fb3foe-container\",\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"ttcwcz4FW-container\",name:\"desktop\",children:/*#__PURE__*/_jsx(BacktotopBtn,{height:\"100%\",id:\"ttcwcz4FW\",layoutId:\"ttcwcz4FW\",name:\"desktop\",variant:\"DFK7BQacg\",width:\"100%\"})})})],fill:\"rgb(237, 237, 237)\",height:\"100%\",icon:{color:\"rgb(0, 0, 0)\",size:24,stroke:2},id:\"GmvuyzZDW\",layoutId:\"GmvuyzZDW\",name:\"desktop\",radius:20,radiusBottomLeft:20,radiusIsMixed:false,radiusottomRight:20,radiusTopLeft:20,radiusTopRight:20,shadows:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylnmr0-container\",\"data-framer-name\":\"mobile\",layoutDependency:layoutDependency,layoutId:\"LuTwq2nNr-container\",name:\"mobile\",style:{scale:1},variants:{\"HWTN4Edu4-pressed\":{scale:.9}},children:/*#__PURE__*/_jsx(ScrollToTopButton,{buttonType:\"custom\",custom:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"48px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8oicba-container\",\"data-framer-name\":\"mobile\",layoutDependency:layoutDependency,layoutId:\"MI_5vWg0K-container\",name:\"mobile\",children:/*#__PURE__*/_jsx(BacktotopBtn,{height:\"100%\",id:\"MI_5vWg0K\",layoutId:\"MI_5vWg0K\",name:\"mobile\",variant:\"ekYNZ0GVX\",width:\"100%\"})})})],fill:\"rgb(237, 237, 237)\",height:\"100%\",icon:{color:\"rgb(0, 0, 0)\",size:24,stroke:2},id:\"LuTwq2nNr\",layoutId:\"LuTwq2nNr\",name:\"mobile\",radius:20,radiusBottomLeft:20,radiusIsMixed:false,radiusottomRight:20,radiusTopLeft:20,radiusTopRight:20,shadows:\"\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S7LKi.framer-1rade3l, .framer-S7LKi .framer-1rade3l { display: block; }\",\".framer-S7LKi.framer-1s5zipm { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 52px; }\",\".framer-S7LKi .framer-xyqmg-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-S7LKi .framer-fb3foe-container, .framer-S7LKi .framer-8oicba-container { height: auto; position: relative; width: auto; }\",\".framer-S7LKi .framer-ylnmr0-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S7LKi.framer-1s5zipm { gap: 0px; } .framer-S7LKi.framer-1s5zipm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-S7LKi.framer-1s5zipm > :first-child { margin-left: 0px; } .framer-S7LKi.framer-1s5zipm > :last-child { margin-right: 0px; } }\",\".framer-S7LKi.framer-v-zyv47s.framer-1s5zipm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); width: 48px; }\",\".framer-S7LKi.framer-v-1s5zipm.pressed.framer-1s5zipm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 52px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 52\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HWTN4Edu4\":{\"layout\":[\"fixed\",\"fixed\"]},\"auOJa6NES\":{\"layout\":[\"fixed\",\"fixed\"]},\"hTAZurHYq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Mjc459c9_\":\"scrollSection\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM5jNBF4Aj=withCSS(Component,css,\"framer-S7LKi\");export default FramerM5jNBF4Aj;FramerM5jNBF4Aj.displayName=\"backtotop\";FramerM5jNBF4Aj.defaultProps={height:52,width:52};addPropertyControls(FramerM5jNBF4Aj,{variant:{options:[\"fBjWXpnDI\",\"HWTN4Edu4\"],optionTitles:[\"desktop\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},Mjc459c9_:{title:\"Scroll Section\",type:ControlType.ScrollSectionRef}});addFonts(FramerM5jNBF4Aj,[{explicitInter:true,fonts:[]},...BacktotopBtnFonts,...ScrollToTopButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM5jNBF4Aj\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"52\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Mjc459c9_\\\":\\\"scrollSection\\\"}\",\"framerIntrinsicWidth\":\"52\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HWTN4Edu4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"auOJa6NES\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hTAZurHYq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["borderPropertyControl", "hidden", "ControlType", "Border", "width", "widthIsMixed", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "color", "transition", "p", "motion", "EmptyState", "title", "subtitle", "maxWidth", "u", "scrollToTop", "window", "ScrollToTopButton", "props", "_props_custom", "_props_style", "_props_style1", "layer", "q", "p", "u", "Border", "addPropertyControls", "ControlType", "borderPropertyControl", "SVGIconFonts", "getFonts", "SVGIcon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerHIK70klpc", "withCSS", "HIK70klpc_default", "addPropertyControls", "ControlType", "addFonts", "BacktotopBtnFonts", "getFonts", "HIK70klpc_default", "ScrollToTopButtonFonts", "ScrollToTopButton", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "scrollSection", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Mjc459c9_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerM5jNBF4Aj", "withCSS", "M5jNBF4Aj_default", "addPropertyControls", "ControlType", "addFonts"]
}
