{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/JvvpkTiVgLLSShciHuUU/Xkd1PlzfsLsHbRvtfsoN/C2OrSMbkd.js", "ssg:https://framerusercontent.com/modules/iBoj3HPqfrCqnqNOPaXI/wEFzjPAloZpbgmAX16Fq/VideoFrame.js", "ssg:https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/youtube.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/_/v8lYrvkU.js", "ssg:https://ga.jspm.io/npm:deepmerge@4.2.2/dist/cjs.js", "ssg:https://ga.jspm.io/npm:memoize-one@5.2.1/dist/memoize-one.cjs.js", "ssg:https://ga.jspm.io/npm:react-fast-compare@3.2.0/index.js", "ssg:https://ga.jspm.io/npm:prop-types@15.8.0/index.js", "ssg:https://ga.jspm.io/npm:prop-types@15.8.0/_/83f8920f.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/_/Y0GG1qNP.js", "ssg:https://ga.jspm.io/npm:load-script@1.0.0/index.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/lib/players/YouTube.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/vimeo.js", "ssg:https://ga.jspm.io/npm:react-player@2.16.0/_/8X1HddO4.js", "ssg:https://framerusercontent.com/modules/FNJSJgCfHELhA8R49ZYD/tn834Wz0OAval9KIoQkl/SrkGy03zf.js", "ssg:https://framerusercontent.com/modules/qocbKKZPr1xgBC57i5yM/oH7a0MP4wp4i67iebOiM/VideoButton.js", "ssg:https://framerusercontent.com/modules/R2NgRGZqlaqDbKw7xYcL/cwJmH2vBAEcIUkBYHdF0/VideoLabel.js", "ssg:https://framerusercontent.com/modules/TFUhPSseN16SF0tHwmJ1/tDaSogdQp0AjRvVr4jHN/VolumeSlider.js", "ssg:https://framerusercontent.com/modules/YmggAKcrSS4eit65RsW2/cQymKoK8X7rYL52maiLM/ProgressBar.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ee1e8a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import VideoFrame from\"https://framerusercontent.com/modules/iBoj3HPqfrCqnqNOPaXI/wEFzjPAloZpbgmAX16Fq/VideoFrame.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import VideoPlayerVideoControllBar from\"https://framerusercontent.com/modules/FNJSJgCfHELhA8R49ZYD/tn834Wz0OAval9KIoQkl/SrkGy03zf.js\";const VideoFonts=getFonts(Video);const VideoFrameFonts=getFonts(VideoFrame);const VideoPlayerVideoControllBarFonts=getFonts(VideoPlayerVideoControllBar);const Video1Controls=getPropertyControls(Video1);const enabledGestures={c0zWPrqAO:{hover:true}};const cycleOrder=[\"kAqluEzsl\",\"c0zWPrqAO\"];const serializationHash=\"framer-yFwt2\";const variantClassNames={c0zWPrqAO:\"framer-v-dmfp9f\",kAqluEzsl:\"framer-v-147egt5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Variant 2\":\"c0zWPrqAO\",Desktop:\"kAqluEzsl\"};const getProps=({hasPlaceHolderVideo,height,id,placeHolderVideo,videoLink,width,...props})=>{return{...props,D582nO2Lh:videoLink??props.D582nO2Lh??\"https://vimeo.com/996450561\",qPy0UCv6f:placeHolderVideo??props.qPy0UCv6f,SCxL02ILm:hasPlaceHolderVideo??props.SCxL02ILm,variant:humanReadableVariantMap[props.variant]??props.variant??\"kAqluEzsl\"};};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,D582nO2Lh,SCxL02ILm,qPy0UCv6f,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kAqluEzsl\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const m5tRvdlRRpxpkll=activeVariantCallback(async(...args)=>{setVariant(\"c0zWPrqAO\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if(gestureVariant===\"c0zWPrqAO-hover\")return false;if(baseVariant===\"c0zWPrqAO\")return false;return value;};const isDisplayed1=()=>{if(gestureVariant===\"c0zWPrqAO-hover\")return false;if(baseVariant===\"c0zWPrqAO\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"c0zWPrqAO-hover\")return true;if(baseVariant===\"c0zWPrqAO\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"c0zWPrqAO-hover\")return true;return false;};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-147egt5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"kAqluEzsl\",ref:refBinding,style:{backgroundColor:\"var(--token-9db9c553-2559-4046-ab43-451ba4b0125f, rgb(23, 23, 23))\",...style},...addPropertyOverrides({\"c0zWPrqAO-hover\":{\"data-framer-name\":undefined},c0zWPrqAO:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed(SCxL02ILm)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ls0wdh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZEVLXlVsY-container\",nodeId:\"ZEVLXlVsY\",rendersWithMotion:true,scopeId:\"C2OrSMbkd\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZEVLXlVsY\",isMixedBorderRadius:false,layoutId:\"ZEVLXlVsY\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:qPy0UCv6f,srcType:\"Upload\",srcUrl:\"https://frahttps://drive.google.com/file/d/1s_GMO30ybgUjqExvntneLoq6SpmXDkMt/view?usp=sharingmerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13i8u6f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZsJFoqdoA-container\",nodeId:\"ZsJFoqdoA\",rendersWithMotion:true,scopeId:\"C2OrSMbkd\",children:/*#__PURE__*/_jsx(VideoFrame,{autoPlay:false,fill:\"rgb(0, 0, 0)\",height:\"100%\",id:\"ZsJFoqdoA\",layoutId:\"ZsJFoqdoA\",loop:false,muted:false,preload:\"none\",radius:\"0px\",sizing:\"contain\",source:\"vimeo\",speed:\"1\",startTime:\"0:00\",style:{height:\"100%\",width:\"100%\"},tapToPlay:true,urlType:\"text\",videoUrl:D582nO2Lh,vimeoType:\"text\",vimeoUrl:D582nO2Lh,volume:1,width:\"100%\",youTubeType:\"text\",youTubeUrl:\"\",...addPropertyOverrides({c0zWPrqAO:{autoPlay:true,loop:true,tapToPlay:false}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||360)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||360)-(0+(componentViewport?.height||360)*1),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ieag0x-container\",layoutDependency:layoutDependency,layoutId:\"RJAZRjMVM-container\",nodeId:\"RJAZRjMVM\",rendersWithMotion:true,scopeId:\"C2OrSMbkd\",children:/*#__PURE__*/_jsx(VideoPlayerVideoControllBar,{height:\"100%\",id:\"RJAZRjMVM\",layoutId:\"RJAZRjMVM\",m5tRvdlRR:m5tRvdlRRpxpkll,style:{height:\"100%\",width:\"100%\"},variant:\"ZPpHOXTRP\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"c0zWPrqAO-hover\":{y:(componentViewport?.y||0)+(componentViewport?.height||360)-42},c0zWPrqAO:{height:42,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||360)-0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8cypgy-container\",layoutDependency:layoutDependency,layoutId:\"GGiiKurff-container\",nodeId:\"GGiiKurff\",rendersWithMotion:true,scopeId:\"C2OrSMbkd\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(VideoPlayerVideoControllBar,{height:\"100%\",id:\"GGiiKurff\",layoutId:\"GGiiKurff\",style:{width:\"100%\"},variant:\"BvA66yFxN\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"c0zWPrqAO-hover\":{height:(componentViewport?.height||360)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+(componentViewport?.height||360)-(0+(componentViewport?.height||360)*1)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i4nhxg-container\",layoutDependency:layoutDependency,layoutId:\"jO6CjKfEz-container\",nodeId:\"jO6CjKfEz\",rendersWithMotion:true,scopeId:\"C2OrSMbkd\",children:/*#__PURE__*/_jsx(VideoPlayerVideoControllBar,{height:\"100%\",id:\"jO6CjKfEz\",layoutId:\"jO6CjKfEz\",m5tRvdlRR:m5tRvdlRRpxpkll,style:{height:\"100%\",width:\"100%\"},variant:\"tIZV3j0yq\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yFwt2.framer-1v256lu, .framer-yFwt2 .framer-1v256lu { display: block; }\",\".framer-yFwt2.framer-147egt5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 360px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 640px; }\",\".framer-yFwt2 .framer-1ls0wdh-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-yFwt2 .framer-13i8u6f-container { aspect-ratio: 1.7777777777777777 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 360px); position: relative; width: 1px; }\",\".framer-yFwt2 .framer-ieag0x-container { bottom: 0px; flex: none; height: 100%; left: 0px; position: absolute; width: 100%; z-index: 1; }\",\".framer-yFwt2 .framer-8cypgy-container { bottom: -42px; flex: none; height: auto; left: 50%; position: absolute; width: 100%; z-index: 1; }\",\".framer-yFwt2 .framer-i4nhxg-container { bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 2; }\",\".framer-yFwt2.framer-v-dmfp9f.framer-147egt5 { cursor: pointer; }\",\".framer-yFwt2.framer-v-dmfp9f.hover .framer-8cypgy-container { bottom: 0px; z-index: 5; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 640\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"c0zWPrqAO\":{\"layout\":[\"fixed\",\"fixed\"]},\"U7rUFKDMt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"D582nO2Lh\":\"videoLink\",\"SCxL02ILm\":\"hasPlaceHolderVideo\",\"qPy0UCv6f\":\"placeHolderVideo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerC2OrSMbkd=withCSS(Component,css,\"framer-yFwt2\");export default FramerC2OrSMbkd;FramerC2OrSMbkd.displayName=\"Video Player/Video player\";FramerC2OrSMbkd.defaultProps={height:360,width:640};addPropertyControls(FramerC2OrSMbkd,{variant:{options:[\"kAqluEzsl\",\"c0zWPrqAO\"],optionTitles:[\"Desktop\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},D582nO2Lh:{defaultValue:\"https://vimeo.com/996450561\",displayTextArea:true,placeholder:\"https://vimeo.com/\",title:\"Video link\",type:ControlType.String},SCxL02ILm:{defaultValue:false,title:\"Has Place Holder Video\",type:ControlType.Boolean},qPy0UCv6f:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Place Holder Video\"}});addFonts(FramerC2OrSMbkd,[{explicitInter:true,fonts:[]},...VideoFonts,...VideoFrameFonts,...VideoPlayerVideoControllBarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC2OrSMbkd\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c0zWPrqAO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U7rUFKDMt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"360\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"640\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"D582nO2Lh\\\":\\\"videoLink\\\",\\\"SCxL02ILm\\\":\\\"hasPlaceHolderVideo\\\",\\\"qPy0UCv6f\\\":\\\"placeHolderVideo\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C2OrSMbkd.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";import{VIDEO_ID_ATTRIBUTE,useVideoStore,speeds}from\"https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js\";import YouTubePlayer from\"react-player/youtube\";import VimeoPlayer from\"react-player/vimeo\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 640\n * @framerIntrinsicHeight 360\n * @framerDisableUnlink\n */export default function VideoFrame(props){const{source,border,thumbnail,startTime,autoPlay}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const muted=autoPlay?true:props.muted;const[videoState,setVideoState]=useVideoStore();const ref=useRef(null);const videoRef=useRef(null);const videoIdRef=useRef(null);const playerRef=useRef(null);const timeCallbacksRef=useRef([]);const state=videoState[videoIdRef.current];const stateRef=useRef(null);useEffect(()=>{var _ref_current_parentElement,_ref_current;const videoParentElement=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:(_ref_current_parentElement=_ref_current.parentElement)===null||_ref_current_parentElement===void 0?void 0:_ref_current_parentElement.parentElement;if(!videoParentElement){return;}let newVideoId=videoParentElement.getAttribute(VIDEO_ID_ATTRIBUTE);if(!newVideoId){newVideoId=uuid();videoParentElement.setAttribute(VIDEO_ID_ATTRIBUTE,newVideoId);}const setPlaying=playing=>{if(videoRef.current){if(playing){videoRef.current.play();}else{videoRef.current.pause();}}else if(playerRef.current){setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],playing}}));}};const setFullscreen=fullscreen=>{if(typeof navigator!==\"undefined\"&&navigator.userAgent.includes(\"FramerElectron\")){console.log(\"Fullscreen is not supported in the Framer desktop app. Publish your website or use the Framer web app to preview fullscreen.\");}let customFullscreenSupported=true;if(videoParentElement){if(!document.fullscreenElement){var _videoRef_current;if(videoParentElement.requestFullscreen){videoParentElement.requestFullscreen();}else if(videoParentElement.mozRequestFullScreen){videoParentElement.mozRequestFullScreen()// Firefox\n;}else if(videoParentElement.webkitRequestFullscreen){videoParentElement.webkitRequestFullscreen()// Chrome, Safari and Opera\n;}else if(videoParentElement.msRequestFullscreen){videoParentElement.msRequestFullscreen()// IE/Edge\n;}else if((_videoRef_current=videoRef.current)===null||_videoRef_current===void 0?void 0:_videoRef_current.webkitEnterFullScreen){var // iOS Safari\n_HTMLVideoElement_prototype_webkitEnterFullScreen;(_HTMLVideoElement_prototype_webkitEnterFullScreen=HTMLVideoElement.prototype.webkitEnterFullScreen)===null||_HTMLVideoElement_prototype_webkitEnterFullScreen===void 0?void 0:_HTMLVideoElement_prototype_webkitEnterFullScreen.call(videoRef.current);customFullscreenSupported=false;}}else{var _videoRef_current1;if(document.exitFullscreen){document.exitFullscreen();}else if(document.mozCancelFullScreen){document.mozCancelFullScreen()// Firefox\n;}else if(document.webkitExitFullscreen){document.webkitExitFullscreen()// Chrome, Safari and Opera\n;}else if(document.msExitFullscreen){document.msExitFullscreen()// IE/Edge\n;}else if((_videoRef_current1=videoRef.current)===null||_videoRef_current1===void 0?void 0:_videoRef_current1.webkitExitFullScreen){var // iOS Safari\n_HTMLVideoElement_prototype_webkitExitFullScreen;(_HTMLVideoElement_prototype_webkitExitFullScreen=HTMLVideoElement.prototype.webkitExitFullScreen)===null||_HTMLVideoElement_prototype_webkitExitFullScreen===void 0?void 0:_HTMLVideoElement_prototype_webkitExitFullScreen.call(videoRef.current);customFullscreenSupported=false;}}}if(customFullscreenSupported){setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],fullscreen}}));}if(fullscreen){var _props_enterFullscreenEvent;(_props_enterFullscreenEvent=props.enterFullscreenEvent)===null||_props_enterFullscreenEvent===void 0?void 0:_props_enterFullscreenEvent.call(props);}else{var _props_exitFullscreenEvent;(_props_exitFullscreenEvent=props.exitFullscreenEvent)===null||_props_exitFullscreenEvent===void 0?void 0:_props_exitFullscreenEvent.call(props);}};const setPiP=async pip=>{if(videoRef.current){if(document.pictureInPictureElement){await document.exitPictureInPicture();}else if(videoRef.current.requestPictureInPicture){await videoRef.current.requestPictureInPicture();}}setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],pip}}));if(pip){var _props_enterPictureInPictureEvent;(_props_enterPictureInPictureEvent=props.enterPictureInPictureEvent)===null||_props_enterPictureInPictureEvent===void 0?void 0:_props_enterPictureInPictureEvent.call(props);}else{var _props_exitPictureInPictureEvent;(_props_exitPictureInPictureEvent=props.exitPictureInPictureEvent)===null||_props_exitPictureInPictureEvent===void 0?void 0:_props_exitPictureInPictureEvent.call(props);}};const setMuted=muted=>{const videoId=videoIdRef.current;if(videoRef.current){videoRef.current.muted=muted;}setVideoState(prev=>({[videoId]:{...prev[videoId],muted}}));};const setVolume=volume=>{volume=Math.min(Math.max(volume,0),1);const videoId=videoIdRef.current;if(videoRef.current){videoRef.current.volume=volume;}setVideoState(prev=>({[videoId]:{...prev[videoId],volume}}));};const setLoop=loop=>{if(videoRef.current){if(videoRef.current.loop){videoRef.current.removeAttribute(\"loop\");}else{videoRef.current.setAttribute(\"loop\",\"\");}}setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],loop}}));};const setSpeed=speed=>{if(videoRef.current){videoRef.current.playbackRate=speed;}setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],speed}}));};// const setPlaybackQuality = (playbackQuality) => {\n//     console.log(\n//         playerRef.current,\n//         playerRef.current.getInternalPlayer()\n//     )\n//     if (playerRef.current && source == \"youTube\") {\n//         console.log(playbackQuality)\n//         playerRef.current\n//             .getInternalPlayer()\n//             .setPlaybackQuality(playbackQuality)\n//     }\n//     setVideoState((prev) => ({\n//         [videoIdRef.current]: {\n//             ...prev[videoIdRef.current],\n//             playbackQuality,\n//         },\n//     }))\n// }\nconst setTime=time=>{var _stateRef_current;let duration=0;if(videoRef.current){duration=videoRef.current.duration;}else if(playerRef.current){duration=playerRef.current.getDuration();}const newTime=((_stateRef_current=stateRef.current)===null||_stateRef_current===void 0?void 0:_stateRef_current.loop)?loopValue(time,0,duration):clamp(time,0,duration);if(videoRef.current){videoRef.current.currentTime=newTime;}else if(playerRef.current){playerRef.current.seekTo(newTime,\"seconds\");}for(const callback of timeCallbacksRef.current){callback([newTime,null]);}};const getTime=()=>{if(videoRef.current){var _videoRef_current;var _videoRef_current_currentTime;return(_videoRef_current_currentTime=(_videoRef_current=videoRef.current)===null||_videoRef_current===void 0?void 0:_videoRef_current.currentTime)!==null&&_videoRef_current_currentTime!==void 0?_videoRef_current_currentTime:0;}else if(playerRef.current){return playerRef.current.getCurrentTime();}};const getLoadedTime=()=>{if(playerRef.current){return playerRef.current.getSecondsLoaded();}return null;};const addTimeCallback=callback=>{if(typeof callback!==\"function\"){return;}if(!Array.isArray(timeCallbacksRef.current)){timeCallbacksRef.current=[callback];}else{timeCallbacksRef.current=[...timeCallbacksRef.current,callback];}callback([getTime(),getLoadedTime()]);};const removeTimeCallback=callback=>{if(Array.isArray(timeCallbacksRef.current)){timeCallbacksRef.current=timeCallbacksRef.current.filter(value=>value!==callback);}else{timeCallbacksRef.current=[];}};setVideoState({[newVideoId]:{videoRef,playerRef,videoParentElement,playing:autoPlay,fullscreen:false,pip:false,muted:muted,volume:props.volume,loop:props.loop,duration:0,speed:Number(props.speed),// playbackQuality: props.playbackQuality,\nsetPlaying,setFullscreen,setPiP,setMuted,setVolume,setLoop,setSpeed,// setPlaybackQuality,\nsetTime,getTime,addTimeCallback,removeTimeCallback}});if(videoIdRef.current!==newVideoId){videoIdRef.current=newVideoId;}if(startTime&&isHTMLVideoType(source)){setTime(parseTimeToSeconds(startTime));}const onVideoEnded=()=>{if(!videoRef.current.loop){var _props_endedEvent;setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],playing:false}}));(_props_endedEvent=props.endedEvent)===null||_props_endedEvent===void 0?void 0:_props_endedEvent.call(props);}else{var _props_loopedEvent;(_props_loopedEvent=props.loopedEvent)===null||_props_loopedEvent===void 0?void 0:_props_loopedEvent.call(props);}};const updateVideoTime=()=>{if(videoRef.current){for(const callback of timeCallbacksRef.current){callback([videoRef.current.currentTime,null]);}}setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],duration:videoRef.current.duration}}));};if(videoRef.current){videoRef.current.addEventListener(\"ended\",onVideoEnded);videoRef.current.addEventListener(\"loadedmetadata\",updateVideoTime);videoRef.current.addEventListener(\"timeupdate\",updateVideoTime);if(props.speed!==\"1\"){videoRef.current.playbackRate=Number(props.speed);}}return()=>{if(videoRef.current){videoRef.current.removeEventListener(\"ended\",onVideoEnded);videoRef.current.removeEventListener(\"loadedmetadata\",updateVideoTime);videoRef.current.removeEventListener(\"timeupdate\",updateVideoTime);}};},[]);useEffect(()=>{stateRef.current=videoState[videoIdRef.current];},[videoState[videoIdRef.current]]);const onClick=()=>{if(props.tapToPlay&&state){state.setPlaying(!state.playing);}};const onVideoPlayingChanged=playing=>{setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],playing}}));if(playing){var _props_playingEvent;(_props_playingEvent=props.playingEvent)===null||_props_playingEvent===void 0?void 0:_props_playingEvent.call(props);}else{var _props_pausedEvent;(_props_pausedEvent=props.pausedEvent)===null||_props_pausedEvent===void 0?void 0:_props_pausedEvent.call(props);}};let videoElement=null;if(!isHTMLVideoType(source)){const onDurationChange=duration=>{setVideoState(prev=>({[videoIdRef.current]:{...prev[videoIdRef.current],duration}}));};const onTimeChange=time=>{for(const callback of timeCallbacksRef.current){callback(time);}};const onPlayerReady=()=>{if(startTime){var _stateRef_current;(_stateRef_current=stateRef.current)===null||_stateRef_current===void 0?void 0:_stateRef_current.setTime(parseTimeToSeconds(startTime));}};const videoProps={ref:playerRef,playing:state?state.playing:autoPlay,loop:state?state.loop:props.loop,volume:state?state.volume:props.volume,muted:state?state.muted:muted,pip:state?state.pip:false,width:\"100%\",height:\"100%\",playbackRate:state?state.speed:Number(props.speed),controls:false,onProgress:progress=>onTimeChange([progress.playedSeconds,progress.loadedSeconds]),onDuration:onDurationChange,onReady:onPlayerReady};if(source==\"youTube\"){videoElement=/*#__PURE__*/_jsx(YouTubePlayer,{url:props.youTubeType==\"text\"?props.youTubeUrl:props.youTubeLink,...videoProps});}else if(source==\"vimeo\"){videoElement=/*#__PURE__*/_jsx(VimeoPlayer,{url:props.vimeoType==\"text\"?props.vimeoUrl:props.vimeoLink,...videoProps});}}else{videoElement=/*#__PURE__*/_jsx(\"video\",{ref:videoRef,src:props.source==\"file\"?props.videoFile:props.urlType==\"text\"?props.videoUrl:props.videoLink,autoPlay:autoPlay,loop:props.loop,preload:props.preload,muted:muted,poster:thumbnail,playsInline:true,onPlay:()=>onVideoPlayingChanged(true),onPause:()=>onVideoPlayingChanged(false),style:{width:\"100%\",height:\"100%\",objectFit:props.sizing,backgroundColor:props.fill}});}return /*#__PURE__*/_jsx(\"div\",{\"data-videoframe\":true,ref:ref,onClick:onClick,style:{position:\"relative\",borderRadius:props.radius,overflow:\"hidden\",userSelect:\"none\",...props.style},children:isCanvas?isHTMLVideoType(source)?/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",backgroundColor:props.fill,backgroundImage:`url('${thumbnail}')`,backgroundSize:props.sizing==\"fill\"?\"100% 100%\":props.sizing,backgroundPosition:\"center\",backgroundRepeat:\"no-repeat\"}}):/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",backgroundColor:props.fill}}):videoElement});}addPropertyControls(VideoFrame,{source:{type:ControlType.Enum,defaultValue:\"url\",options:[\"url\",\"file\",\"youTube\",\"vimeo\"],optionTitles:[\"URL\",\"File\",\"YouTube\",\"Vimeo\"]},urlType:{type:ControlType.Enum,defaultValue:\"text\",options:[\"text\",\"link\"],optionTitles:[\"Text\",\"Link\"],displaySegmentedControl:true,title:\"Video URL\",hidden:props=>props.source!==\"url\"},videoUrl:{type:ControlType.String,defaultValue:\"\",title:\" \",placeholder:\"URL\",description:\"MP4 or WebM file URL\",displayTextArea:true,preventLocalization:true,hidden:props=>props.source!==\"url\"||props.urlType!==\"text\"},videoLink:{type:ControlType.Link,title:\" \",description:\"MP4 or WebM file URL\",hidden:props=>props.source!==\"url\"||props.urlType!==\"link\"},videoFile:{type:ControlType.File,allowedFileTypes:[\"mp4\",\"webm\"],description:\"MP4 or WebM\",title:\"File\",hidden:props=>props.source!==\"file\"},youTubeType:{type:ControlType.Enum,defaultValue:\"text\",options:[\"text\",\"link\"],optionTitles:[\"Text\",\"Link\"],displaySegmentedControl:true,title:\"Video URL\",hidden:props=>props.source!==\"youTube\"},youTubeUrl:{type:ControlType.String,defaultValue:\"\",title:\" \",placeholder:\"https://www.youtube.com/watch?v=\",displayTextArea:true,preventLocalization:true,hidden:props=>props.source!==\"youTube\"||props.youTubeType!==\"text\"},youTubeLink:{type:ControlType.Link,title:\" \",hidden:props=>props.source!==\"youTube\"||props.youTubeType!==\"link\"},vimeoType:{type:ControlType.Enum,defaultValue:\"text\",options:[\"text\",\"link\"],optionTitles:[\"Text\",\"Link\"],displaySegmentedControl:true,title:\"Video URL\",hidden:props=>props.source!==\"vimeo\"},vimeoUrl:{type:ControlType.String,defaultValue:\"\",title:\" \",placeholder:\"https://vimeo.com/\",displayTextArea:true,preventLocalization:true,hidden:props=>props.source!==\"vimeo\"||props.vimeoType!==\"text\"},vimeoLink:{type:ControlType.Link,title:\" \",hidden:props=>props.source!==\"vimeo\"||props.vimeoType!==\"link\"},thumbnail:{type:ControlType.Image,hidden:props=>!isHTMLVideoType(props.source)},sizing:{type:ControlType.Enum,defaultValue:\"contain\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.source===\"youTube\"},startTime:{type:ControlType.String,defaultValue:\"0:00\",placeholder:\"HH:MM:SS\",preventLocalization:true},autoPlay:{type:ControlType.Boolean,defaultValue:false},muted:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.autoPlay},volume:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.autoPlay||props.muted},loop:{type:ControlType.Boolean,defaultValue:false},tapToPlay:{type:ControlType.Boolean,defaultValue:true,title:\"Tap to Play\",hidden:props=>props.source===\"youTube\"},speed:{type:ControlType.Enum,defaultValue:\"1\",options:speeds,optionTitles:speeds.map(speed=>`${speed}\\xd7`)},// playbackQuality: {\n//     type: ControlType.Enum,\n//     defaultValue: \"default\",\n//     options: playbackQualityOptions,\n//     optionTitles: playbackQualityOptions.map(\n//         (id) => playbackQualityTitles[id][0]\n//     ),\n//     title: \"Quality\",\n//     hidden: (props) => props.source !== \"youTube\",\n// },\npreload:{type:ControlType.Enum,defaultValue:\"none\",options:[\"auto\",\"none\"],optionTitles:[\"Auto\",\"None\"],displaySegmentedControl:true,hidden:props=>!isHTMLVideoType(props.source)||props.autoPlay},fill:{type:ControlType.Color,defaultValue:\"#000\",optional:true},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"},endedEvent:{type:ControlType.EventHandler,title:\"Video Ended\"},loopedEvent:{type:ControlType.EventHandler,title:\"Looped\"},playingEvent:{type:ControlType.EventHandler,title:\"Playing\"},pausedEvent:{type:ControlType.EventHandler,title:\"Paused\"},enterFullscreenEvent:{type:ControlType.EventHandler,title:\"Enter Fullscreen\"},exitFullscreenEvent:{type:ControlType.EventHandler,title:\"Exit Fullscreen\"},enterPictureInPictureEvent:{type:ControlType.EventHandler,title:\"Enter Picture-in-Picture\"},exitPictureInPictureEvent:{type:ControlType.EventHandler,title:\"Exit Picture-in-Picture\"}});function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}function loopValue(value,min,max){const range=max-min+1;return((value-min)%range+range)%range+min;}function clamp(value,min,max){if(value<min){return min;}else if(value>max){return max;}else{return value;}}function parseTimeToSeconds(timeString){// Remove any leading/trailing whitespace\ntimeString=timeString.trim();// Split the time string into parts\nconst parts=timeString.split(\":\");let seconds=0;if(parts.length===3){// HH:MM:SS format\nseconds+=parseInt(parts[0])*3600// Hours to seconds\n;seconds+=parseInt(parts[1])*60// Minutes to seconds\n;seconds+=parseInt(parts[2])// Seconds\n;}else if(parts.length===2){// MM:SS format\nseconds+=parseInt(parts[0])*60// Minutes to seconds\n;seconds+=parseInt(parts[1])// Seconds\n;}else if(parts.length===1){// SS format\nseconds+=parseInt(parts[0])// Seconds\n;}return seconds;}function isHTMLVideoType(source){return source===\"url\"||source===\"file\";}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VideoFrame\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"640\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"360\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{useId}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{motion}from\"framer-motion\";export const VIDEO_ID_ATTRIBUTE=\"custom-video-id\";export const useVideoStore=createStore({});export const speeds=[\"0.25\",\"0.5\",\"0.75\",\"1\",\"1.25\",\"1.5\",\"2\",\"3\"];export const playbackQualityOptions=[\"small\",\"medium\",\"large\",\"hd720\",\"hd1080\",\"highres\",\"default\"];export const playbackQualityTitles={small:[\"Small\",\"240p\"],medium:[\"Medium\",\"360p\"],large:[\"Large\",\"480p\"],hd720:[\"HD 720\",\"720p\"],hd1080:[\"HD 1080\",\"1080p\"],highres:[\"4K\",\"4K\"],default:[\"Auto\",\"Auto\"]};export const createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export function getVideoId(element){while(element){let id=element.getAttribute(VIDEO_ID_ATTRIBUTE);if(id){return id;}element=element.parentElement;}return null;}export function Icon({image,color,size,style={},defaultImage}){let colorValue=color||((image===null||image===void 0?void 0:image.src)?undefined:\"#999\");return /*#__PURE__*/_jsx(\"div\",{\"aria-label\":image===null||image===void 0?void 0:image.alt,style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:colorValue,backgroundImage:colorValue?\"none\":`url('${image===null||image===void 0?void 0:image.src}')`,maskImage:(image===null||image===void 0?void 0:image.src)?`url('${image===null||image===void 0?void 0:image.src}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"VideoFrame/Icon\";export function borderProp({defaultValue=false}={}){return{type:ControlType.Object,optional:true,defaultValue:defaultValue?{color:\"#999\"}:undefined,controls:{color:{type:ControlType.Color,defaultValue:\"#999\"},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function Border({width,style,color,borderRadius=\"inherit\",transition=null,opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius,pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"VideoFrame/Border\";\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getVideoId\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"playbackQualityOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"useVideoStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"speeds\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VIDEO_ID_ATTRIBUTE\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"playbackQualityTitles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VideoFrameShared.map", "import{_ as r}from\"./_/v8lYrvkU.js\";import a from\"./lib/players/YouTube.js\";import\"react\";import\"deepmerge\";import\"memoize-one\";import\"react-fast-compare\";import\"prop-types\";import\"./_/Y0GG1qNP.js\";import\"load-script\";var e={};var t=r.createReactPlayer;var o=a.default;e=t([{key:\"youtube\",canPlay:o.canPlay,lazyPlayer:o}]);var p=e;export{p as default};\n//# sourceMappingURL=youtube.js.map\n", "import*as e from\"react\";import*as t from\"deepmerge\";import*as a from\"memoize-one\";import*as r from\"react-fast-compare\";import*as s from\"prop-types\";import{_ as l}from\"./Y0GG1qNP.js\";var o=s;try{\"default\"in s&&(o=s.default)}catch(e){}var i={};var n=Object.create;var p=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var h=Object.getPrototypeOf;var y=Object.prototype.hasOwnProperty;var __export$2=(e,t)=>{for(var a in t)p(e,a,{get:t[a],enumerable:true})};var __copyProps$2=(e,t,a,r)=>{if(t&&typeof t===\"object\"||typeof t===\"function\")for(let s of d(t))y.call(e,s)||s===a||p(e,s,{get:()=>t[s],enumerable:!(r=u(t,s))||r.enumerable});return e};var __toESM$2=(e,t,a)=>(a=e!=null?n(h(e)):{},__copyProps$2(!t&&e&&e.__esModule?a:p(a,\"default\",{value:e,enumerable:true}),e));var __toCommonJS$2=e=>__copyProps$2(p({},\"__esModule\",{value:true}),e);var c={};__export$2(c,{defaultProps:()=>C,propTypes:()=>T});i=__toCommonJS$2(c);var f=__toESM$2(o);const{string:v,bool:P,number:m,array:b,oneOfType:g,shape:w,object:O,func:k,node:R}=f.default;const T={url:g([v,b,O]),playing:P,loop:P,controls:P,volume:m,muted:P,playbackRate:m,width:g([v,m]),height:g([v,m]),style:O,progressInterval:m,playsinline:P,pip:P,stopOnUnmount:P,light:g([P,v,O]),playIcon:R,previewTabIndex:m,previewAriaLabel:v,fallback:R,oEmbedUrl:v,wrapper:g([v,k,w({render:k.isRequired})]),config:w({soundcloud:w({options:O}),youtube:w({playerVars:O,embedOptions:O,onUnstarted:k}),facebook:w({appId:v,version:v,playerId:v,attributes:O}),dailymotion:w({params:O}),vimeo:w({playerOptions:O,title:v}),mux:w({attributes:O,version:v}),file:w({attributes:O,tracks:b,forceVideo:P,forceAudio:P,forceHLS:P,forceSafariHLS:P,forceDisableHls:P,forceDASH:P,forceFLV:P,hlsOptions:O,hlsVersion:v,dashVersion:v,flvVersion:v}),wistia:w({options:O,playerId:v,customControls:b}),mixcloud:w({options:O}),twitch:w({options:O,playerId:v}),vidyard:w({options:O})}),onReady:k,onStart:k,onPlay:k,onPause:k,onBuffer:k,onBufferEnd:k,onEnded:k,onError:k,onDuration:k,onSeek:k,onPlaybackRateChange:k,onPlaybackQualityChange:k,onProgress:k,onClickPreview:k,onEnablePIP:k,onDisablePIP:k};const noop=()=>{};const C={playing:false,loop:false,controls:false,volume:null,muted:false,playbackRate:1,width:\"640px\",height:\"360px\",style:{},progressInterval:1e3,playsinline:false,pip:false,stopOnUnmount:true,light:false,fallback:null,wrapper:\"div\",previewTabIndex:0,previewAriaLabel:\"\",oEmbedUrl:\"https://noembed.com/embed?url={url}\",config:{soundcloud:{options:{visual:true,buying:false,liking:false,download:false,sharing:false,show_comments:false,show_playcount:false}},youtube:{playerVars:{playsinline:1,showinfo:0,rel:0,iv_load_policy:3,modestbranding:1},embedOptions:{},onUnstarted:noop},facebook:{appId:\"1309697205772819\",version:\"v3.3\",playerId:null,attributes:{}},dailymotion:{params:{api:1,\"endscreen-enable\":false}},vimeo:{playerOptions:{autopause:false,byline:false,portrait:false,title:false},title:null},mux:{attributes:{},version:\"2\"},file:{attributes:{},tracks:[],forceVideo:false,forceAudio:false,forceHLS:false,forceDASH:false,forceFLV:false,hlsOptions:{},hlsVersion:\"1.1.4\",dashVersion:\"3.1.3\",flvVersion:\"1.5.0\",forceDisableHls:false},wistia:{options:{},playerId:null,customControls:null},mixcloud:{options:{hide_cover:1}},twitch:{options:{},playerId:null},vidyard:{options:{}}},onReady:noop,onStart:noop,onPlay:noop,onPause:noop,onBuffer:noop,onBufferEnd:noop,onEnded:noop,onError:noop,onDuration:noop,onSeek:noop,onPlaybackRateChange:noop,onPlaybackQualityChange:noop,onProgress:noop,onClickPreview:noop,onEnablePIP:noop,onDisablePIP:noop};var I=i;var D=e;try{\"default\"in e&&(D=e.default)}catch(e){}var L=r;try{\"default\"in r&&(L=r.default)}catch(e){}var E={};var S=Object.create;var j=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var V=Object.getOwnPropertyNames;var A=Object.getPrototypeOf;var x=Object.prototype.hasOwnProperty;var __defNormalProp$1=(e,t,a)=>t in e?j(e,t,{enumerable:true,configurable:true,writable:true,value:a}):e[t]=a;var __export$1=(e,t)=>{for(var a in t)j(e,a,{get:t[a],enumerable:true})};var __copyProps$1=(e,t,a,r)=>{if(t&&typeof t===\"object\"||typeof t===\"function\")for(let s of V(t))x.call(e,s)||s===a||j(e,s,{get:()=>t[s],enumerable:!(r=_(t,s))||r.enumerable});return e};var __toESM$1=(e,t,a)=>(a=e!=null?S(A(e)):{},__copyProps$1(!t&&e&&e.__esModule?a:j(a,\"default\",{value:e,enumerable:true}),e));var __toCommonJS$1=e=>__copyProps$1(j({},\"__esModule\",{value:true}),e);var __publicField$1=(e,t,a)=>{__defNormalProp$1(e,typeof t!==\"symbol\"?t+\"\":t,a);return a};var U={};__export$1(U,{default:()=>Player});E=__toCommonJS$1(U);var M=__toESM$1(D);var H=__toESM$1(L);var N=I;var B=l;const z=5e3;class Player extends M.Component{constructor(){super(...arguments);__publicField$1(this,\"mounted\",false);__publicField$1(this,\"isReady\",false);__publicField$1(this,\"isPlaying\",false);__publicField$1(this,\"isLoading\",true);__publicField$1(this,\"loadOnReady\",null);__publicField$1(this,\"startOnPlay\",true);__publicField$1(this,\"seekOnPlay\",null);__publicField$1(this,\"onDurationCalled\",false);__publicField$1(this,\"handlePlayerMount\",(e=>{if(this.player)this.progress();else{this.player=e;this.player.load(this.props.url);this.progress()}}));__publicField$1(this,\"getInternalPlayer\",(e=>this.player?this.player[e]:null));__publicField$1(this,\"progress\",(()=>{if(this.props.url&&this.player&&this.isReady){const e=this.getCurrentTime()||0;const t=this.getSecondsLoaded();const a=this.getDuration();if(a){const r={playedSeconds:e,played:e/a};if(t!==null){r.loadedSeconds=t;r.loaded=t/a}r.playedSeconds===this.prevPlayed&&r.loadedSeconds===this.prevLoaded||this.props.onProgress(r);this.prevPlayed=r.playedSeconds;this.prevLoaded=r.loadedSeconds}}this.progressTimeout=setTimeout(this.progress,this.props.progressFrequency||this.props.progressInterval)}));__publicField$1(this,\"handleReady\",(()=>{if(!this.mounted)return;this.isReady=true;this.isLoading=false;const{onReady:e,playing:t,volume:a,muted:r}=this.props;e();r||a===null||this.player.setVolume(a);if(this.loadOnReady){this.player.load(this.loadOnReady,true);this.loadOnReady=null}else t&&this.player.play();this.handleDurationCheck()}));__publicField$1(this,\"handlePlay\",(()=>{this.isPlaying=true;this.isLoading=false;const{onStart:e,onPlay:t,playbackRate:a}=this.props;if(this.startOnPlay){this.player.setPlaybackRate&&a!==1&&this.player.setPlaybackRate(a);e();this.startOnPlay=false}t();if(this.seekOnPlay){this.seekTo(this.seekOnPlay);this.seekOnPlay=null}this.handleDurationCheck()}));__publicField$1(this,\"handlePause\",(e=>{this.isPlaying=false;this.isLoading||this.props.onPause(e)}));__publicField$1(this,\"handleEnded\",(()=>{const{activePlayer:e,loop:t,onEnded:a}=this.props;e.loopOnEnded&&t&&this.seekTo(0);if(!t){this.isPlaying=false;a()}}));__publicField$1(this,\"handleError\",((...e)=>{this.isLoading=false;this.props.onError(...e)}));__publicField$1(this,\"handleDurationCheck\",(()=>{clearTimeout(this.durationCheckTimeout);const e=this.getDuration();if(e){if(!this.onDurationCalled){this.props.onDuration(e);this.onDurationCalled=true}}else this.durationCheckTimeout=setTimeout(this.handleDurationCheck,100)}));__publicField$1(this,\"handleLoaded\",(()=>{this.isLoading=false}))}componentDidMount(){this.mounted=true}componentWillUnmount(){clearTimeout(this.progressTimeout);clearTimeout(this.durationCheckTimeout);if(this.isReady&&this.props.stopOnUnmount){this.player.stop();this.player.disablePIP&&this.player.disablePIP()}this.mounted=false}componentDidUpdate(e){if(!this.player)return;const{url:t,playing:a,volume:r,muted:s,playbackRate:l,pip:o,loop:i,activePlayer:n,disableDeferredLoading:p}=this.props;if(!(0,H.default)(e.url,t)){if(this.isLoading&&!n.forceLoad&&!p&&!(0,B.isMediaStream)(t)){console.warn(`ReactPlayer: the attempt to load ${t} is being deferred until the player has loaded`);this.loadOnReady=t;return}this.isLoading=true;this.startOnPlay=true;this.onDurationCalled=false;this.player.load(t,this.isReady)}e.playing||!a||this.isPlaying||this.player.play();e.playing&&!a&&this.isPlaying&&this.player.pause();!e.pip&&o&&this.player.enablePIP&&this.player.enablePIP();e.pip&&!o&&this.player.disablePIP&&this.player.disablePIP();e.volume!==r&&r!==null&&this.player.setVolume(r);if(e.muted!==s)if(s)this.player.mute();else{this.player.unmute();r!==null&&setTimeout((()=>this.player.setVolume(r)))}e.playbackRate!==l&&this.player.setPlaybackRate&&this.player.setPlaybackRate(l);e.loop!==i&&this.player.setLoop&&this.player.setLoop(i)}getDuration(){return this.isReady?this.player.getDuration():null}getCurrentTime(){return this.isReady?this.player.getCurrentTime():null}getSecondsLoaded(){return this.isReady?this.player.getSecondsLoaded():null}seekTo(e,t,a){if(!this.isReady){if(e!==0){this.seekOnPlay=e;setTimeout((()=>{this.seekOnPlay=null}),z)}return}const r=t?t===\"fraction\":e>0&&e<1;if(r){const t=this.player.getDuration();if(!t){console.warn(\"ReactPlayer: could not seek using fraction \u2013\u00A0duration not yet available\");return}this.player.seekTo(t*e,a)}else this.player.seekTo(e,a)}render(){const e=this.props.activePlayer;return e?M.default.createElement(e,{...this.props,onMount:this.handlePlayerMount,onReady:this.handleReady,onPlay:this.handlePlay,onPause:this.handlePause,onEnded:this.handleEnded,onLoaded:this.handleLoaded,onError:this.handleError}):null}}__publicField$1(Player,\"displayName\",\"Player\");__publicField$1(Player,\"propTypes\",N.propTypes);__publicField$1(Player,\"defaultProps\",N.defaultProps);var F=E;var q=e;try{\"default\"in e&&(q=e.default)}catch(e){}var Q=t;try{\"default\"in t&&(Q=t.default)}catch(e){}var W=a;try{\"default\"in a&&(W=a.default)}catch(e){}var $=r;try{\"default\"in r&&($=r.default)}catch(e){}var G=typeof globalThis!==\"undefined\"?globalThis:typeof self!==\"undefined\"?self:global;var J={};var K=Object.create;var X=Object.defineProperty;var Y=Object.getOwnPropertyDescriptor;var Z=Object.getOwnPropertyNames;var ee=Object.getPrototypeOf;var te=Object.prototype.hasOwnProperty;var __defNormalProp=(e,t,a)=>t in e?X(e,t,{enumerable:true,configurable:true,writable:true,value:a}):e[t]=a;var __export=(e,t)=>{for(var a in t)X(e,a,{get:t[a],enumerable:true})};var __copyProps=(e,t,a,r)=>{if(t&&typeof t===\"object\"||typeof t===\"function\")for(let s of Z(t))te.call(e,s)||s===a||X(e,s,{get:()=>t[s],enumerable:!(r=Y(t,s))||r.enumerable});return e};var __toESM=(e,t,a)=>(a=e!=null?K(ee(e)):{},__copyProps(!t&&e&&e.__esModule?a:X(a,\"default\",{value:e,enumerable:true}),e));var __toCommonJS=e=>__copyProps(X({},\"__esModule\",{value:true}),e);var __publicField=(e,t,a)=>{__defNormalProp(e,typeof t!==\"symbol\"?t+\"\":t,a);return a};var ae={};__export(ae,{createReactPlayer:()=>createReactPlayer});J=__toCommonJS(ae);var re=__toESM(q);var se=__toESM(Q);var le=__toESM(W);var oe=__toESM($);var ie=I;var ne=l;var pe=__toESM(F);const ue=(0,ne.lazy)((()=>import(\"./m9pNCrEe.js\")));const de=typeof window!==\"undefined\"&&window.document&&typeof document!==\"undefined\";const he=typeof G!==\"undefined\"&&G.window&&G.window.document;const ye=Object.keys(ie.propTypes);const ce=de||he?re.Suspense:()=>null;const fe=[];const createReactPlayer=(e,t)=>{var a;return a=class extends re.Component{constructor(){super(...arguments);__publicField(this,\"state\",{showPreview:!!this.props.light});__publicField(this,\"references\",{wrapper:e=>{this.wrapper=e},player:e=>{this.player=e}});__publicField(this,\"handleClickPreview\",(e=>{this.setState({showPreview:false});this.props.onClickPreview(e)}));__publicField(this,\"showPreview\",(()=>{this.setState({showPreview:true})}));__publicField(this,\"getDuration\",(()=>this.player?this.player.getDuration():null));__publicField(this,\"getCurrentTime\",(()=>this.player?this.player.getCurrentTime():null));__publicField(this,\"getSecondsLoaded\",(()=>this.player?this.player.getSecondsLoaded():null));__publicField(this,\"getInternalPlayer\",((e=\"player\")=>this.player?this.player.getInternalPlayer(e):null));__publicField(this,\"seekTo\",((e,t,a)=>{if(!this.player)return null;this.player.seekTo(e,t,a)}));__publicField(this,\"handleReady\",(()=>{this.props.onReady(this)}));__publicField(this,\"getActivePlayer\",(0,le.default)((a=>{for(const t of[...fe,...e])if(t.canPlay(a))return t;return t||null})));__publicField(this,\"getConfig\",(0,le.default)(((e,t)=>{const{config:a}=this.props;return se.default.all([ie.defaultProps.config,ie.defaultProps.config[t]||{},a,a[t]||{}])})));__publicField(this,\"getAttributes\",(0,le.default)((e=>(0,ne.omit)(this.props,ye))));__publicField(this,\"renderActivePlayer\",(e=>{if(!e)return null;const t=this.getActivePlayer(e);if(!t)return null;const a=this.getConfig(e,t.key);return re.default.createElement(pe.default,{...this.props,key:t.key,ref:this.references.player,config:a,activePlayer:t.lazyPlayer||t,onReady:this.handleReady})}))}shouldComponentUpdate(e,t){return!(0,oe.default)(this.props,e)||!(0,oe.default)(this.state,t)}componentDidUpdate(e){const{light:t}=this.props;!e.light&&t&&this.setState({showPreview:true});e.light&&!t&&this.setState({showPreview:false})}renderPreview(e){if(!e)return null;const{light:t,playIcon:a,previewTabIndex:r,oEmbedUrl:s,previewAriaLabel:l}=this.props;return re.default.createElement(ue,{url:e,light:t,playIcon:a,previewTabIndex:r,previewAriaLabel:l,oEmbedUrl:s,onClick:this.handleClickPreview})}render(){const{url:e,style:t,width:a,height:r,fallback:s,wrapper:l}=this.props;const{showPreview:o}=this.state;const i=this.getAttributes(e);const n=typeof l===\"string\"?this.references.wrapper:void 0;return re.default.createElement(l,{ref:n,style:{...t,width:a,height:r},...i},re.default.createElement(ce,{fallback:s},o?this.renderPreview(e):this.renderActivePlayer(e)))}},__publicField(a,\"displayName\",\"ReactPlayer\"),__publicField(a,\"propTypes\",ie.propTypes),__publicField(a,\"defaultProps\",ie.defaultProps),__publicField(a,\"addCustomPlayer\",(e=>{fe.push(e)})),__publicField(a,\"removeCustomPlayers\",(()=>{fe.length=0})),__publicField(a,\"canPlay\",(t=>{for(const a of[...fe,...e])if(a.canPlay(t))return true;return false})),__publicField(a,\"canEnablePIP\",(t=>{for(const a of[...fe,...e])if(a.canEnablePIP&&a.canEnablePIP(t))return true;return false})),a};var ve=J;export{ve as _};\n//# sourceMappingURL=v8lYrvkU.js.map\n", "var e={};var r=function isMergeableObject(e){return isNonNullObject(e)&&!isSpecial(e)};function isNonNullObject(e){return!!e&&\"object\"===typeof e}function isSpecial(e){var r=Object.prototype.toString.call(e);return\"[object RegExp]\"===r||\"[object Date]\"===r||isReactElement(e)}var t=\"function\"===typeof Symbol&&Symbol.for;var n=t?Symbol.for(\"react.element\"):60103;function isReactElement(e){return e.$$typeof===n}function emptyTarget(e){return Array.isArray(e)?[]:{}}function cloneUnlessOtherwiseSpecified(e,r){return false!==r.clone&&r.isMergeableObject(e)?deepmerge(emptyTarget(e),e,r):e}function defaultArrayMerge(e,r,t){return e.concat(r).map((function(e){return cloneUnlessOtherwiseSpecified(e,t)}))}function getMergeFunction(e,r){if(!r.customMerge)return deepmerge;var t=r.customMerge(e);return\"function\"===typeof t?t:deepmerge}function getEnumerableOwnPropertySymbols(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(r){return e.propertyIsEnumerable(r)})):[]}function getKeys(e){return Object.keys(e).concat(getEnumerableOwnPropertySymbols(e))}function propertyIsOnObject(e,r){try{return r in e}catch(e){return false}}function propertyIsUnsafe(e,r){return propertyIsOnObject(e,r)&&!(Object.hasOwnProperty.call(e,r)&&Object.propertyIsEnumerable.call(e,r))}function mergeObject(e,r,t){var n={};t.isMergeableObject(e)&&getKeys(e).forEach((function(r){n[r]=cloneUnlessOtherwiseSpecified(e[r],t)}));getKeys(r).forEach((function(c){propertyIsUnsafe(e,c)||(propertyIsOnObject(e,c)&&t.isMergeableObject(r[c])?n[c]=getMergeFunction(c,t)(e[c],r[c],t):n[c]=cloneUnlessOtherwiseSpecified(r[c],t))}));return n}function deepmerge(e,t,n){n=n||{};n.arrayMerge=n.arrayMerge||defaultArrayMerge;n.isMergeableObject=n.isMergeableObject||r;n.cloneUnlessOtherwiseSpecified=cloneUnlessOtherwiseSpecified;var c=Array.isArray(t);var o=Array.isArray(e);var i=c===o;return i?c?n.arrayMerge(e,t,n):mergeObject(e,t,n):cloneUnlessOtherwiseSpecified(t,n)}deepmerge.all=function deepmergeAll(e,r){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,t){return deepmerge(e,t,r)}),{})};var c=deepmerge;e=c;var o=e;export default o;\n\n//# sourceMappingURL=cjs.js.map", "var r={};var e=Number.isNaN||function ponyfill(r){return\"number\"===typeof r&&r!==r};function isEqual(r,n){return r===n||!(!e(r)||!e(n))}function areInputsEqual(r,e){if(r.length!==e.length)return false;for(var n=0;n<r.length;n++)if(!isEqual(r[n],e[n]))return false;return true}function memoizeOne(r,e){void 0===e&&(e=areInputsEqual);var n;var t=[];var u;var a=false;function memoized(){var i=[];for(var f=0;f<arguments.length;f++)i[f]=arguments[f];if(a&&n===this&&e(i,t))return u;u=r.apply(this,i);a=true;n=this;t=i;return u}return memoized}r=memoizeOne;var n=r;export default n;\n\n//# sourceMappingURL=memoize-one.cjs.js.map", "var e={};var r=\"undefined\"!==typeof Element;var t=\"function\"===typeof Map;var n=\"function\"===typeof Set;var f=\"function\"===typeof ArrayBuffer&&!!ArrayBuffer.isView;function equal(e,a){if(e===a)return true;if(e&&a&&\"object\"==typeof e&&\"object\"==typeof a){if(e.constructor!==a.constructor)return false;var u,i,o;if(Array.isArray(e)){u=e.length;if(u!=a.length)return false;for(i=u;0!==i--;)if(!equal(e[i],a[i]))return false;return true}var s;if(t&&e instanceof Map&&a instanceof Map){if(e.size!==a.size)return false;s=e.entries();while(!(i=s.next()).done)if(!a.has(i.value[0]))return false;s=e.entries();while(!(i=s.next()).done)if(!equal(i.value[1],a.get(i.value[0])))return false;return true}if(n&&e instanceof Set&&a instanceof Set){if(e.size!==a.size)return false;s=e.entries();while(!(i=s.next()).done)if(!a.has(i.value[0]))return false;return true}if(f&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(a)){u=e.length;if(u!=a.length)return false;for(i=u;0!==i--;)if(e[i]!==a[i])return false;return true}if(e.constructor===RegExp)return e.source===a.source&&e.flags===a.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===a.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===a.toString();o=Object.keys(e);u=o.length;if(u!==Object.keys(a).length)return false;for(i=u;0!==i--;)if(!Object.prototype.hasOwnProperty.call(a,o[i]))return false;if(r&&e instanceof Element)return false;for(i=u;0!==i--;)if((\"_owner\"!==o[i]&&\"__v\"!==o[i]&&\"__o\"!==o[i]||!e.$$typeof)&&!equal(e[o[i]],a[o[i]]))return false;return true}return e!==e&&a!==a}e=function isEqual(e,r){try{return equal(e,r)}catch(e){if((e.message||\"\").match(/stack|recursion/i)){console.warn(\"react-fast-compare cannot handle circular refs\");return false}throw e}};var a=e;export default a;\n\n//# sourceMappingURL=index.js.map", "import{_ as e}from\"./_/83f8920f.js\";var t={};var n=e;function emptyFunction(){}function emptyFunctionWithReset(){}emptyFunctionWithReset.resetWarningCache=emptyFunction;t=function(){function shim(e,t,i,o,r,s){if(s!==n){var m=new Error(\"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types\");m.name=\"Invariant Violation\";throw m}}shim.isRequired=shim;function getShim(){return shim}var e={array:shim,bigint:shim,bool:shim,func:shim,number:shim,object:shim,string:shim,symbol:shim,any:shim,arrayOf:getShim,element:shim,elementType:shim,instanceOf:getShim,node:shim,objectOf:getShim,oneOf:getShim,oneOfType:getShim,shape:getShim,exact:getShim,checkPropTypes:emptyFunctionWithReset,resetWarningCache:emptyFunction};e.PropTypes=e;return e};var i=t;var o={};o=i();var r=o;const s=o.array,m=o.bigint,a=o.bool,h=o.func,p=o.number,c=o.object,y=o.string,f=o.symbol,u=o.any,g=o.arrayOf,l=o.element,b=o.elementType,O=o.instanceOf,v=o.node,T=o.objectOf,d=o.oneOf,S=o.oneOfType,F=o.shape,j=o.exact;export{u as any,s as array,g as arrayOf,m as bigint,a as bool,r as default,l as element,b as elementType,j as exact,h as func,O as instanceOf,v as node,p as number,c as object,T as objectOf,d as oneOf,S as oneOfType,F as shape,y as string,f as symbol};\n\n//# sourceMappingURL=index.js.map", "var _={};var a=\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\";_=a;var r=_;export{r as _};\n\n//# sourceMappingURL=83f8920f.js.map", "import*as t from\"react\";import*as e from\"load-script\";import*as r from\"deepmerge\";var o=t;try{\"default\"in t&&(o=t.default)}catch(t){}var n=e;try{\"default\"in e&&(n=e.default)}catch(t){}var a=r;try{\"default\"in r&&(a=r.default)}catch(t){}var s=typeof globalThis!==\"undefined\"?globalThis:typeof self!==\"undefined\"?self:global;var i={};var c=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var d=Object.getPrototypeOf;var f=Object.prototype.hasOwnProperty;var __export$1=(t,e)=>{for(var r in e)l(t,r,{get:e[r],enumerable:true})};var __copyProps$1=(t,e,r,o)=>{if(e&&typeof e===\"object\"||typeof e===\"function\")for(let n of m(e))f.call(t,n)||n===r||l(t,n,{get:()=>e[n],enumerable:!(o=u(e,n))||o.enumerable});return t};var __toESM=(t,e,r)=>(r=t!=null?c(d(t)):{},__copyProps$1(!e&&t&&t.__esModule?r:l(r,\"default\",{value:t,enumerable:true}),t));var __toCommonJS$1=t=>__copyProps$1(l({},\"__esModule\",{value:true}),t);var p={};__export$1(p,{callPlayer:()=>callPlayer,getConfig:()=>getConfig,getSDK:()=>O,isBlobUrl:()=>isBlobUrl,isMediaStream:()=>isMediaStream,lazy:()=>lazy,omit:()=>omit,parseEndTime:()=>parseEndTime,parseStartTime:()=>parseStartTime,queryString:()=>queryString,randomString:()=>randomString,supportsWebKitPresentationMode:()=>supportsWebKitPresentationMode});i=__toCommonJS$1(p);var w=__toESM(o);var b=__toESM(n);var v=__toESM(a);const lazy=t=>w.default.lazy((async()=>{const e=await t();return typeof e.default===\"function\"?e:e.default}));const y=/[?&#](?:start|t)=([0-9hms]+)/;const _=/[?&#]end=([0-9hms]+)/;const g=/(\\d+)(h|m|s)/g;const h=/^\\d+$/;function parseTimeParam(t,e){if(t instanceof Array)return;const r=t.match(e);if(r){const t=r[1];if(t.match(g))return parseTimeString(t);if(h.test(t))return parseInt(t)}}function parseTimeString(t){let e=0;let r=g.exec(t);while(r!==null){const[,o,n]=r;n===\"h\"&&(e+=parseInt(o,10)*60*60);n===\"m\"&&(e+=parseInt(o,10)*60);n===\"s\"&&(e+=parseInt(o,10));r=g.exec(t)}return e}function parseStartTime(t){return parseTimeParam(t,y)}function parseEndTime(t){return parseTimeParam(t,_)}function randomString(){return Math.random().toString(36).substr(2,5)}function queryString(t){return Object.keys(t).map((e=>`${e}=${t[e]}`)).join(\"&\")}function getGlobal(t){return window[t]?window[t]:window.exports&&window.exports[t]?window.exports[t]:window.module&&window.module.exports&&window.module.exports[t]?window.module.exports[t]:null}const T={};const O=enableStubOn((function getSDK2(t,e,r=null,o=(()=>true),n=b.default){const a=getGlobal(e);return a&&o(a)?Promise.resolve(a):new Promise(((o,a)=>{if(T[t]){T[t].push({resolve:o,reject:a});return}T[t]=[{resolve:o,reject:a}];const onLoaded=e=>{T[t].forEach((t=>t.resolve(e)))};if(r){const t=window[r];window[r]=function(){t&&t();onLoaded(getGlobal(e))}}n(t,(o=>{if(o){T[t].forEach((t=>t.reject(o)));T[t]=null}else r||onLoaded(getGlobal(e))}))}))}));function getConfig(t,e){return(0,v.default)(e.config,t.config)}function omit(t,...e){const r=[].concat(...e);const o={};const n=Object.keys(t);for(const e of n)r.indexOf(e)===-1&&(o[e]=t[e]);return o}function callPlayer(t,...e){if(!(this||s).player||!(this||s).player[t]){let e=`ReactPlayer: ${(this||s).constructor.displayName} player could not call %c${t}%c \u2013 `;(this||s).player?(this||s).player[t]||(e+=\"The method was not available\"):e+=\"The player was not available\";console.warn(e,\"font-weight: bold\",\"\");return null}return(this||s).player[t](...e)}function isMediaStream(t){return typeof window!==\"undefined\"&&typeof window.MediaStream!==\"undefined\"&&t instanceof window.MediaStream}function isBlobUrl(t){return/^blob:/.test(t)}function supportsWebKitPresentationMode(t=document.createElement(\"video\")){const e=/iPhone|iPod/.test(navigator.userAgent)===false;return t.webkitSupportsPresentationMode&&typeof t.webkitSetPresentationMode===\"function\"&&e}function enableStubOn(t){false;return t}var S=i;var A={};var M=Object.defineProperty;var P=Object.getOwnPropertyDescriptor;var U=Object.getOwnPropertyNames;var C=Object.prototype.hasOwnProperty;var __export=(t,e)=>{for(var r in e)M(t,r,{get:e[r],enumerable:true})};var __copyProps=(t,e,r,o)=>{if(e&&typeof e===\"object\"||typeof e===\"function\")for(let n of U(e))C.call(t,n)||n===r||M(t,n,{get:()=>e[n],enumerable:!(o=P(e,n))||o.enumerable});return t};var __toCommonJS=t=>__copyProps(M({},\"__esModule\",{value:true}),t);var E={};__export(E,{AUDIO_EXTENSIONS:()=>V,DASH_EXTENSIONS:()=>q,FLV_EXTENSIONS:()=>F,HLS_EXTENSIONS:()=>G,MATCH_URL_DAILYMOTION:()=>B,MATCH_URL_FACEBOOK:()=>N,MATCH_URL_FACEBOOK_WATCH:()=>$,MATCH_URL_KALTURA:()=>X,MATCH_URL_MIXCLOUD:()=>K,MATCH_URL_MUX:()=>R,MATCH_URL_SOUNDCLOUD:()=>H,MATCH_URL_STREAMABLE:()=>x,MATCH_URL_TWITCH_CHANNEL:()=>z,MATCH_URL_TWITCH_VIDEO:()=>k,MATCH_URL_VIDYARD:()=>W,MATCH_URL_VIMEO:()=>j,MATCH_URL_WISTIA:()=>D,MATCH_URL_YOUTUBE:()=>L,VIDEO_EXTENSIONS:()=>Z,canPlay:()=>Y});A=__toCommonJS(E);var I=S;const L=/(?:youtu\\.be\\/|youtube(?:-nocookie|education)?\\.com\\/(?:embed\\/|v\\/|watch\\/|watch\\?v=|watch\\?.+&v=|shorts\\/|live\\/))((\\w|-){11})|youtube\\.com\\/playlist\\?list=|youtube\\.com\\/user\\//;const H=/(?:soundcloud\\.com|snd\\.sc)\\/[^.]+$/;const j=/vimeo\\.com\\/(?!progressive_redirect).+/;const R=/stream\\.mux\\.com\\/(?!\\w+\\.m3u8)(\\w+)/;const N=/^https?:\\/\\/(www\\.)?facebook\\.com.*\\/(video(s)?|watch|story)(\\.php?|\\/).+$/;const $=/^https?:\\/\\/fb\\.watch\\/.+$/;const x=/streamable\\.com\\/([a-z0-9]+)$/;const D=/(?:wistia\\.(?:com|net)|wi\\.st)\\/(?:medias|embed)\\/(?:iframe\\/)?([^?]+)/;const k=/(?:www\\.|go\\.)?twitch\\.tv\\/videos\\/(\\d+)($|\\?)/;const z=/(?:www\\.|go\\.)?twitch\\.tv\\/([a-zA-Z0-9_]+)($|\\?)/;const B=/^(?:(?:https?):)?(?:\\/\\/)?(?:www\\.)?(?:(?:dailymotion\\.com(?:\\/embed)?\\/video)|dai\\.ly)\\/([a-zA-Z0-9]+)(?:_[\\w_-]+)?(?:[\\w.#_-]+)?/;const K=/mixcloud\\.com\\/([^/]+\\/[^/]+)/;const W=/vidyard.com\\/(?:watch\\/)?([a-zA-Z0-9-_]+)/;const X=/^https?:\\/\\/[a-zA-Z]+\\.kaltura.(com|org)\\/p\\/([0-9]+)\\/sp\\/([0-9]+)00\\/embedIframeJs\\/uiconf_id\\/([0-9]+)\\/partner_id\\/([0-9]+)(.*)entry_id.([a-zA-Z0-9-_].*)$/;const V=/\\.(m4a|m4b|mp4a|mpga|mp2|mp2a|mp3|m2a|m3a|wav|weba|aac|oga|spx)($|\\?)/i;const Z=/\\.(mp4|og[gv]|webm|mov|m4v)(#t=[,\\d+]+)?($|\\?)/i;const G=/\\.(m3u8)($|\\?)/i;const q=/\\.(mpd)($|\\?)/i;const F=/\\.(flv)($|\\?)/i;const canPlayFile=t=>{if(t instanceof Array){for(const e of t){if(typeof e===\"string\"&&canPlayFile(e))return true;if(canPlayFile(e.src))return true}return false}return!(!(0,I.isMediaStream)(t)&&!(0,I.isBlobUrl)(t))||(V.test(t)||Z.test(t)||G.test(t)||q.test(t)||F.test(t))};const Y={youtube:t=>t instanceof Array?t.every((t=>L.test(t))):L.test(t),soundcloud:t=>H.test(t)&&!V.test(t),vimeo:t=>j.test(t)&&!Z.test(t)&&!G.test(t),mux:t=>R.test(t),facebook:t=>N.test(t)||$.test(t),streamable:t=>x.test(t),wistia:t=>D.test(t),twitch:t=>k.test(t)||z.test(t),dailymotion:t=>B.test(t),mixcloud:t=>K.test(t),vidyard:t=>W.test(t),kaltura:t=>X.test(t),file:canPlayFile};var J=A;export{S as _,J as a};\n//# sourceMappingURL=Y0GG1qNP.js.map\n", "var t=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof self?self:global;var n={};n=function load(t,n,e){var a=document.head||document.getElementsByTagName(\"head\")[0];var o=document.createElement(\"script\");if(\"function\"===typeof n){e=n;n={}}n=n||{};e=e||function(){};o.type=n.type||\"text/javascript\";o.charset=n.charset||\"utf8\";o.async=!(\"async\"in n)||!!n.async;o.src=t;n.attrs&&setAttributes(o,n.attrs);n.text&&(o.text=\"\"+n.text);var r=\"onload\"in o?stdOnEnd:ieOnEnd;r(o,e);o.onload||stdOnEnd(o,e);a.appendChild(o)};function setAttributes(t,n){for(var e in n)t.setAttribute(e,n[e])}function stdOnEnd(n,e){n.onload=function(){(this||t).onerror=(this||t).onload=null;e(null,n)};n.onerror=function(){(this||t).onerror=(this||t).onload=null;e(new Error(\"Failed to load \"+(this||t).src),n)}}function ieOnEnd(n,e){n.onreadystatechange=function(){if(\"complete\"==(this||t).readyState||\"loaded\"==(this||t).readyState){(this||t).onreadystatechange=null;e(null,n)}}}var e=n;export default e;\n\n//# sourceMappingURL=index.js.map", "import*as e from\"react\";import{_ as t,a}from\"../../_/Y0GG1qNP.js\";import\"load-script\";import\"deepmerge\";var r=e;try{\"default\"in e&&(r=e.default)}catch(e){}var s={};var o=Object.create;var l=Object.defineProperty;var n=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var c=Object.getPrototypeOf;var u=Object.prototype.hasOwnProperty;var __defNormalProp=(e,t,a)=>t in e?l(e,t,{enumerable:true,configurable:true,writable:true,value:a}):e[t]=a;var __export=(e,t)=>{for(var a in t)l(e,a,{get:t[a],enumerable:true})};var __copyProps=(e,t,a,r)=>{if(t&&typeof t===\"object\"||typeof t===\"function\")for(let s of i(t))u.call(e,s)||s===a||l(e,s,{get:()=>t[s],enumerable:!(r=n(t,s))||r.enumerable});return e};var __toESM=(e,t,a)=>(a=e!=null?o(c(e)):{},__copyProps(!t&&e&&e.__esModule?a:l(a,\"default\",{value:e,enumerable:true}),e));var __toCommonJS=e=>__copyProps(l({},\"__esModule\",{value:true}),e);var __publicField=(e,t,a)=>{__defNormalProp(e,typeof t!==\"symbol\"?t+\"\":t,a);return a};var p={};__export(p,{default:()=>YouTube});s=__toCommonJS(p);var y=__toESM(r);var h=t;var d=a;const m=\"https://www.youtube.com/iframe_api\";const P=\"YT\";const f=\"onYouTubeIframeAPIReady\";const g=/[?&](?:list|channel)=([a-zA-Z0-9_-]+)/;const b=/user\\/([a-zA-Z0-9_-]+)\\/?/;const v=/youtube-nocookie\\.com/;const T=\"https://www.youtube-nocookie.com\";class YouTube extends y.Component{constructor(){super(...arguments);__publicField(this,\"callPlayer\",h.callPlayer);__publicField(this,\"parsePlaylist\",(e=>{if(e instanceof Array)return{listType:\"playlist\",playlist:e.map(this.getID).join(\",\")};if(g.test(e)){const[,t]=e.match(g);return{listType:\"playlist\",list:t.replace(/^UC/,\"UU\")}}if(b.test(e)){const[,t]=e.match(b);return{listType:\"user_uploads\",list:t}}return{}}));__publicField(this,\"onStateChange\",(e=>{const{data:t}=e;const{onPlay:a,onPause:r,onBuffer:s,onBufferEnd:o,onEnded:l,onReady:n,loop:i,config:{playerVars:c,onUnstarted:u}}=this.props;const{UNSTARTED:p,PLAYING:y,PAUSED:h,BUFFERING:d,ENDED:m,CUED:f}=window[P].PlayerState;t===p&&u();if(t===y){a();o()}t===h&&r();t===d&&s();if(t===m){const e=!!this.callPlayer(\"getPlaylist\");i&&!e&&(c.start?this.seekTo(c.start):this.play());l()}t===f&&n()}));__publicField(this,\"mute\",(()=>{this.callPlayer(\"mute\")}));__publicField(this,\"unmute\",(()=>{this.callPlayer(\"unMute\")}));__publicField(this,\"ref\",(e=>{this.container=e}))}componentDidMount(){this.props.onMount&&this.props.onMount(this)}getID(e){return!e||e instanceof Array||g.test(e)?null:e.match(d.MATCH_URL_YOUTUBE)[1]}load(e,t){const{playing:a,muted:r,playsinline:s,controls:o,loop:l,config:n,onError:i}=this.props;const{playerVars:c,embedOptions:u}=n;const p=this.getID(e);if(t){if(g.test(e)||b.test(e)||e instanceof Array){this.player.loadPlaylist(this.parsePlaylist(e));return}this.player.cueVideoById({videoId:p,startSeconds:(0,h.parseStartTime)(e)||c.start,endSeconds:(0,h.parseEndTime)(e)||c.end})}else{(0,h.getSDK)(m,P,f,(e=>e.loaded)).then((t=>{this.container&&(this.player=new t.Player(this.container,{width:\"100%\",height:\"100%\",videoId:p,playerVars:{autoplay:a?1:0,mute:r?1:0,controls:o?1:0,start:(0,h.parseStartTime)(e),end:(0,h.parseEndTime)(e),origin:window.location.origin,playsinline:s?1:0,...this.parsePlaylist(e),...c},events:{onReady:()=>{l&&this.player.setLoop(true);this.props.onReady()},onPlaybackRateChange:e=>this.props.onPlaybackRateChange(e.data),onPlaybackQualityChange:e=>this.props.onPlaybackQualityChange(e),onStateChange:this.onStateChange,onError:e=>i(e.data)},host:v.test(e)?T:void 0,...u}))}),i);u.events&&console.warn(\"Using `embedOptions.events` will likely break things. Use ReactPlayer\u2019s callback props instead, eg onReady, onPlay, onPause\")}}play(){this.callPlayer(\"playVideo\")}pause(){this.callPlayer(\"pauseVideo\")}stop(){document.body.contains(this.callPlayer(\"getIframe\"))&&this.callPlayer(\"stopVideo\")}seekTo(e,t=false){this.callPlayer(\"seekTo\",e);t||this.props.playing||this.pause()}setVolume(e){this.callPlayer(\"setVolume\",e*100)}setPlaybackRate(e){this.callPlayer(\"setPlaybackRate\",e)}setLoop(e){this.callPlayer(\"setLoop\",e)}getDuration(){return this.callPlayer(\"getDuration\")}getCurrentTime(){return this.callPlayer(\"getCurrentTime\")}getSecondsLoaded(){return this.callPlayer(\"getVideoLoadedFraction\")*this.getDuration()}render(){const{display:e}=this.props;const t={width:\"100%\",height:\"100%\",display:e};return y.default.createElement(\"div\",{style:t},y.default.createElement(\"div\",{ref:this.ref}))}}__publicField(YouTube,\"displayName\",\"YouTube\");__publicField(YouTube,\"canPlay\",d.canPlay.youtube);var w=s;export{w as default};\n//# sourceMappingURL=YouTube.js.map\n", "import{_ as r}from\"./_/v8lYrvkU.js\";import a from\"./_/8X1HddO4.js\";import\"react\";import\"deepmerge\";import\"memoize-one\";import\"react-fast-compare\";import\"prop-types\";import\"./_/Y0GG1qNP.js\";import\"load-script\";var e={};var t=r.createReactPlayer;var o=a.default;e=t([{key:\"vimeo\",canPlay:o.canPlay,lazyPlayer:o}]);var m=e;export{m as default};\n//# sourceMappingURL=vimeo.js.map\n", "import*as e from\"react\";import{_ as t,a as r}from\"./Y0GG1qNP.js\";import\"load-script\";import\"deepmerge\";var s=e;try{\"default\"in e&&(s=e.default)}catch(e){}var o={};var a=Object.create;var i=Object.defineProperty;var n=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var p=Object.getPrototypeOf;var h=Object.prototype.hasOwnProperty;var __defNormalProp=(e,t,r)=>t in e?i(e,t,{enumerable:true,configurable:true,writable:true,value:r}):e[t]=r;var __export=(e,t)=>{for(var r in t)i(e,r,{get:t[r],enumerable:true})};var __copyProps=(e,t,r,s)=>{if(t&&typeof t===\"object\"||typeof t===\"function\")for(let o of l(t))h.call(e,o)||o===r||i(e,o,{get:()=>t[o],enumerable:!(s=n(t,o))||s.enumerable});return e};var __toESM=(e,t,r)=>(r=e!=null?a(p(e)):{},__copyProps(!t&&e&&e.__esModule?r:i(r,\"default\",{value:e,enumerable:true}),e));var __toCommonJS=e=>__copyProps(i({},\"__esModule\",{value:true}),e);var __publicField=(e,t,r)=>{__defNormalProp(e,typeof t!==\"symbol\"?t+\"\":t,r);return r};var u={};__export(u,{default:()=>Vimeo});o=__toCommonJS(u);var c=__toESM(s);var y=t;var d=r;const m=\"https://player.vimeo.com/api/player.js\";const f=\"Vimeo\";const cleanUrl=e=>e.replace(\"/manage/videos\",\"\");class Vimeo extends c.Component{constructor(){super(...arguments);__publicField(this,\"callPlayer\",y.callPlayer);__publicField(this,\"duration\",null);__publicField(this,\"currentTime\",null);__publicField(this,\"secondsLoaded\",null);__publicField(this,\"mute\",(()=>{this.setMuted(true)}));__publicField(this,\"unmute\",(()=>{this.setMuted(false)}));__publicField(this,\"ref\",(e=>{this.container=e}))}componentDidMount(){this.props.onMount&&this.props.onMount(this)}load(e){this.duration=null;(0,y.getSDK)(m,f).then((t=>{if(!this.container)return;const{playerOptions:r,title:s}=this.props.config;this.player=new t.Player(this.container,{url:cleanUrl(e),autoplay:this.props.playing,muted:this.props.muted,loop:this.props.loop,playsinline:this.props.playsinline,controls:this.props.controls,...r});this.player.ready().then((()=>{const e=this.container.querySelector(\"iframe\");e.style.width=\"100%\";e.style.height=\"100%\";s&&(e.title=s)})).catch(this.props.onError);this.player.on(\"loaded\",(()=>{this.props.onReady();this.refreshDuration()}));this.player.on(\"play\",(()=>{this.props.onPlay();this.refreshDuration()}));this.player.on(\"pause\",this.props.onPause);this.player.on(\"seeked\",(e=>this.props.onSeek(e.seconds)));this.player.on(\"ended\",this.props.onEnded);this.player.on(\"error\",this.props.onError);this.player.on(\"timeupdate\",(({seconds:e})=>{this.currentTime=e}));this.player.on(\"progress\",(({seconds:e})=>{this.secondsLoaded=e}));this.player.on(\"bufferstart\",this.props.onBuffer);this.player.on(\"bufferend\",this.props.onBufferEnd);this.player.on(\"playbackratechange\",(e=>this.props.onPlaybackRateChange(e.playbackRate)))}),this.props.onError)}refreshDuration(){this.player.getDuration().then((e=>{this.duration=e}))}play(){const e=this.callPlayer(\"play\");e&&e.catch(this.props.onError)}pause(){this.callPlayer(\"pause\")}stop(){this.callPlayer(\"unload\")}seekTo(e,t=true){this.callPlayer(\"setCurrentTime\",e);t||this.pause()}setVolume(e){this.callPlayer(\"setVolume\",e)}setMuted(e){this.callPlayer(\"setMuted\",e)}setLoop(e){this.callPlayer(\"setLoop\",e)}setPlaybackRate(e){this.callPlayer(\"setPlaybackRate\",e)}getDuration(){return this.duration}getCurrentTime(){return this.currentTime}getSecondsLoaded(){return this.secondsLoaded}render(){const{display:e}=this.props;const t={width:\"100%\",height:\"100%\",overflow:\"hidden\",display:e};return c.default.createElement(\"div\",{key:this.props.url,ref:this.ref,style:t})}}__publicField(Vimeo,\"displayName\",\"Vimeo\");__publicField(Vimeo,\"canPlay\",d.canPlay.vimeo);__publicField(Vimeo,\"forceLoad\",true);var v=o;export{v as default};\n//# sourceMappingURL=8X1HddO4.js.map\n", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import VideoButton from\"https://framerusercontent.com/modules/qocbKKZPr1xgBC57i5yM/oH7a0MP4wp4i67iebOiM/VideoButton.js\";import VideoTimeLabel from\"https://framerusercontent.com/modules/R2NgRGZqlaqDbKw7xYcL/cwJmH2vBAEcIUkBYHdF0/VideoLabel.js\";import VolumeSlider from\"https://framerusercontent.com/modules/TFUhPSseN16SF0tHwmJ1/tDaSogdQp0AjRvVr4jHN/VolumeSlider.js\";import ProgressBar from\"https://framerusercontent.com/modules/YmggAKcrSS4eit65RsW2/cQymKoK8X7rYL52maiLM/ProgressBar.js\";const VideoButtonFonts=getFonts(VideoButton);const VideoTimeLabelFonts=getFonts(VideoTimeLabel);const ProgressBarFonts=getFonts(ProgressBar);const VolumeSliderFonts=getFonts(VolumeSlider);const enabledGestures={BvA66yFxN:{hover:true}};const cycleOrder=[\"BvA66yFxN\",\"ZPpHOXTRP\",\"tIZV3j0yq\"];const serializationHash=\"framer-2FMbF\";const variantClassNames={BvA66yFxN:\"framer-v-zcov4t\",tIZV3j0yq:\"framer-v-1rbttyd\",ZPpHOXTRP:\"framer-v-kpwm6s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={\"Whole video player\":\"tIZV3j0yq\",Desktop:\"BvA66yFxN\",Preview:\"ZPpHOXTRP\"};const getProps=({click,height,id,width,...props})=>{return{...props,m5tRvdlRR:click??props.m5tRvdlRR,variant:humanReadableVariantMap[props.variant]??props.variant??\"BvA66yFxN\"};};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,m5tRvdlRR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BvA66yFxN\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapu7j9m4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(m5tRvdlRR){const res=await m5tRvdlRR(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"ZPpHOXTRP\",\"tIZV3j0yq\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ZPpHOXTRP\")return true;return false;};const isDisplayed2=()=>{if([\"ZPpHOXTRP\",\"tIZV3j0yq\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({tIZV3j0yq:{value:transition2},ZPpHOXTRP:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zcov4t\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BvA66yFxN\",onTap:onTapu7j9m4,ref:refBinding,style:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\",...style},variants:{\"BvA66yFxN-hover\":{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},tIZV3j0yq:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\"},ZPpHOXTRP:{backdropFilter:\"blur(0px)\",WebkitBackdropFilter:\"blur(0px)\"}},...addPropertyOverrides({\"BvA66yFxN-hover\":{\"data-framer-name\":undefined},tIZV3j0yq:{\"data-framer-name\":\"Whole video player\"},ZPpHOXTRP:{\"data-framer-name\":\"Preview\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sxi7fu\",layoutDependency:layoutDependency,layoutId:\"duNeE8rd7\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tv7v3n\",layoutDependency:layoutDependency,layoutId:\"UDxKlCGLC\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jh7zc5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c6gaRgpDZ-container\",nodeId:\"c6gaRgpDZ\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",style:{opacity:1},variants:{tIZV3j0yq:{opacity:0}},children:/*#__PURE__*/_jsx(VideoButton,{height:\"100%\",iconColor:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",iconSize:64,id:\"c6gaRgpDZ\",layoutId:\"c6gaRgpDZ\",pauseIcon:addImageAlt({src:\"https://framerusercontent.com/images/xldnxkzKVYzbrYRQjexmkDx1M.svg\"},\"\"),playIcon:addImageAlt({src:\"https://framerusercontent.com/images/H26rU1K9aloVW73Ml0UFpZArk.svg\"},\"\"),skipTime:10,style:{width:\"100%\"},type:\"play\",width:\"100%\",...addPropertyOverrides({tIZV3j0yq:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-130peip-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QROtsR2JE-container\",nodeId:\"QROtsR2JE\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(VideoTimeLabel,{color:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"QROtsR2JE\",layoutId:\"QROtsR2JE\",selectable:false,type:\"duration\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2byusv\",layoutDependency:layoutDependency,layoutId:\"oYfq2zFgN\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ntlgwl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kFE1kjiyx-container\",nodeId:\"kFE1kjiyx\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(VideoButton,{height:\"100%\",iconColor:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",iconSize:30,id:\"kFE1kjiyx\",layoutId:\"kFE1kjiyx\",pauseIcon:addImageAlt({src:\"https://framerusercontent.com/images/xldnxkzKVYzbrYRQjexmkDx1M.svg\"},\"\"),playIcon:addImageAlt({src:\"https://framerusercontent.com/images/H26rU1K9aloVW73Ml0UFpZArk.svg\"},\"\"),skipTime:10,style:{height:\"100%\",width:\"100%\"},type:\"play\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-exu9ry-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"aqL2Rmotu-container\",nodeId:\"aqL2Rmotu\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(VideoTimeLabel,{color:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"aqL2Rmotu\",layoutId:\"aqL2Rmotu\",selectable:false,type:\"currentTime\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11pmnxu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bl_jtSHDc-container\",nodeId:\"bl_jtSHDc\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(ProgressBar,{handle:{border:{color:\"var(--token-6b3a8671-0dda-426b-b036-64d21eddc11d, rgba(3, 3, 31, 0.3))\",style:\"solid\",width:1},fill:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",radius:\"8px\",shadows:\"\",size:16},height:\"100%\",id:\"bl_jtSHDc\",layoutId:\"bl_jtSHDc\",line:{height:2,loadedFill:\"var(--token-9db9c553-2559-4046-ab43-451ba4b0125f, rgb(3, 3, 31))\",playedFill:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",radius:\"0px\",shadows:\"\",unplayedFill:\"var(--token-6b3a8671-0dda-426b-b036-64d21eddc11d, rgba(3, 3, 31, 0.3))\"},preview:50,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v023ix-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"z0cyLWf7q-container\",nodeId:\"z0cyLWf7q\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(VideoTimeLabel,{color:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"z0cyLWf7q\",layoutId:\"z0cyLWf7q\",selectable:false,type:\"duration\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-epl6ff-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E10Qbjs5p-container\",nodeId:\"E10Qbjs5p\",rendersWithMotion:true,scopeId:\"SrkGy03zf\",children:/*#__PURE__*/_jsx(VolumeSlider,{handle:{border:{color:\"var(--token-6b3a8671-0dda-426b-b036-64d21eddc11d, rgba(3, 3, 31, 0.3))\",style:\"solid\",width:1},fill:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",radius:\"8px\",shadows:\"\",size:16},height:\"100%\",icon:{clickAction:\"toggleMute\",color:\"var(--token-99a56f81-482c-4e74-aab9-7a8310d4310f, rgb(242, 235, 232))\",gap:8,location:\"left\",size:20},id:\"E10Qbjs5p\",layoutId:\"E10Qbjs5p\",line:{height:2,leftColor:\"var(--token-5b4911ab-de3a-4a2f-b8d4-30ee7cd0d7ac, rgb(255, 255, 255))\",radius:\"0px\",rightColor:\"var(--token-6b3a8671-0dda-426b-b036-64d21eddc11d, rgba(3, 3, 31, 0.3))\",shadows:\"\"},preview:50,style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ku134\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"SC6jwgs9Z\",style:{backgroundColor:\"var(--token-6b3a8671-0dda-426b-b036-64d21eddc11d, rgba(3, 3, 31, 0.3))\",opacity:0},variants:{\"BvA66yFxN-hover\":{opacity:1}}})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2FMbF.framer-bfhkdu, .framer-2FMbF .framer-bfhkdu { display: block; }\",\".framer-2FMbF.framer-zcov4t { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-2FMbF .framer-1sxi7fu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2FMbF .framer-1tv7v3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2FMbF .framer-jh7zc5-container, .framer-2FMbF .framer-11pmnxu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2FMbF .framer-130peip-container, .framer-2FMbF .framer-exu9ry-container, .framer-2FMbF .framer-v023ix-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2FMbF .framer-2byusv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 6px 10px 6px 10px; position: relative; width: 100%; z-index: 1; }\",\".framer-2FMbF .framer-1ntlgwl-container { flex: none; height: 30px; position: relative; width: 28px; }\",\".framer-2FMbF .framer-epl6ff-container { flex: none; height: auto; position: relative; width: 93px; }\",\".framer-2FMbF .framer-12ku134 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2FMbF.framer-zcov4t, .framer-2FMbF .framer-1sxi7fu, .framer-2FMbF .framer-1tv7v3n, .framer-2FMbF .framer-2byusv { gap: 0px; } .framer-2FMbF.framer-zcov4t > *, .framer-2FMbF .framer-2byusv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-2FMbF.framer-zcov4t > :first-child, .framer-2FMbF .framer-1tv7v3n > :first-child, .framer-2FMbF .framer-2byusv > :first-child { margin-left: 0px; } .framer-2FMbF.framer-zcov4t > :last-child, .framer-2FMbF .framer-1tv7v3n > :last-child, .framer-2FMbF .framer-2byusv > :last-child { margin-right: 0px; } .framer-2FMbF .framer-1sxi7fu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2FMbF .framer-1sxi7fu > :first-child { margin-top: 0px; } .framer-2FMbF .framer-1sxi7fu > :last-child { margin-bottom: 0px; } .framer-2FMbF .framer-1tv7v3n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-2FMbF.framer-v-kpwm6s.framer-zcov4t, .framer-2FMbF.framer-v-1rbttyd.framer-zcov4t { height: 91px; justify-content: center; }\",\".framer-2FMbF.framer-v-kpwm6s .framer-1sxi7fu, .framer-2FMbF.framer-v-1rbttyd .framer-1sxi7fu { height: 100%; }\",\".framer-2FMbF.framer-v-kpwm6s .framer-1tv7v3n { flex-direction: column; min-height: unset; }\",\".framer-2FMbF.framer-v-kpwm6s .framer-jh7zc5-container { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2FMbF.framer-v-kpwm6s .framer-1tv7v3n { gap: 0px; } .framer-2FMbF.framer-v-kpwm6s .framer-1tv7v3n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2FMbF.framer-v-kpwm6s .framer-1tv7v3n > :first-child { margin-top: 0px; } .framer-2FMbF.framer-v-kpwm6s .framer-1tv7v3n > :last-child { margin-bottom: 0px; } }\",\".framer-2FMbF.framer-v-1rbttyd .framer-1tv7v3n { flex: 1 0 0px; flex-direction: column; height: 1px; min-height: unset; }\",\".framer-2FMbF.framer-v-1rbttyd .framer-jh7zc5-container { height: 1px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2FMbF.framer-v-1rbttyd .framer-1tv7v3n { gap: 0px; } .framer-2FMbF.framer-v-1rbttyd .framer-1tv7v3n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2FMbF.framer-v-1rbttyd .framer-1tv7v3n > :first-child { margin-top: 0px; } .framer-2FMbF.framer-v-1rbttyd .framer-1tv7v3n > :last-child { margin-bottom: 0px; } }\",\".framer-2FMbF.framer-v-zcov4t.hover .framer-1ntlgwl-container, .framer-2FMbF.framer-v-zcov4t.hover .framer-exu9ry-container, .framer-2FMbF.framer-v-zcov4t.hover .framer-11pmnxu-container, .framer-2FMbF.framer-v-zcov4t.hover .framer-v023ix-container, .framer-2FMbF.framer-v-zcov4t.hover .framer-epl6ff-container { z-index: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZPpHOXTRP\":{\"layout\":[\"fixed\",\"fixed\"]},\"tIZV3j0yq\":{\"layout\":[\"fixed\",\"fixed\"]},\"eBGHxwNIf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"m5tRvdlRR\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSrkGy03zf=withCSS(Component,css,\"framer-2FMbF\");export default FramerSrkGy03zf;FramerSrkGy03zf.displayName=\"Video Player/Video Controll bar\";FramerSrkGy03zf.defaultProps={height:42,width:600};addPropertyControls(FramerSrkGy03zf,{variant:{options:[\"BvA66yFxN\",\"ZPpHOXTRP\",\"tIZV3j0yq\"],optionTitles:[\"Desktop\",\"Preview\",\"Whole video player\"],title:\"Variant\",type:ControlType.Enum},m5tRvdlRR:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerSrkGy03zf,[{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\"}]},...VideoButtonFonts,...VideoTimeLabelFonts,...ProgressBarFonts,...VolumeSliderFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSrkGy03zf\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"42\",\"framerVariables\":\"{\\\"m5tRvdlRR\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZPpHOXTRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tIZV3j0yq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eBGHxwNIf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SrkGy03zf.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{Icon,useVideoStore,getVideoId}from\"https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n * @framerDisableUnlink\n */export default function VideoButton(props){var _state_videoRef,_state_playerRef;const{type,skipTime}=props;const[videoState,setVideoState]=useVideoStore();const[videoId,setVideoId]=useState(null);const state=videoState[videoId];const ref=useRef(null);const videoRef=state===null||state===void 0?void 0:(_state_videoRef=state.videoRef)===null||_state_videoRef===void 0?void 0:_state_videoRef.current;const playerRef=state===null||state===void 0?void 0:(_state_playerRef=state.playerRef)===null||_state_playerRef===void 0?void 0:_state_playerRef.current;useEffect(()=>{setVideoState({});},[]);useEffect(()=>{const videoId=getVideoId(ref.current);setVideoId(videoId);},[ref]);let icon=null;let defaultIcon=null;let onClick=null;switch(type){case\"play\":icon=(state===null||state===void 0?void 0:state.playing)?props.pauseIcon:props.playIcon;defaultIcon=(state===null||state===void 0?void 0:state.playing)?`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor' class='icon icon-tabler icons-tabler-filled icon-tabler-player-pause'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z' /%3E%3Cpath d='M17 4h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h2a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2z' /%3E%3C/svg%3E\")`:`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor' class='icon icon-tabler icons-tabler-filled icon-tabler-player-play'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setPlaying){state.setPlaying(!state.playing);}};break;case\"fullscreen\":icon=props.fullscreenIcon;defaultIcon=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-arrows-maximize'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M16 4l4 0l0 4' /%3E%3Cpath d='M14 10l6 -6' /%3E%3Cpath d='M8 20l-4 0l0 -4' /%3E%3Cpath d='M4 20l6 -6' /%3E%3Cpath d='M16 20l4 0l0 -4' /%3E%3Cpath d='M14 14l6 6' /%3E%3Cpath d='M8 4l-4 0l0 4' /%3E%3Cpath d='M4 4l6 6' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setFullscreen){state.setFullscreen(!state.fullscreen);}};break;case\"skipForward\":icon=props.skipIcon;defaultIcon=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-reload'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747' /%3E%3Cpath d='M20 4v5h-5' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setTime){state.setTime(state.getTime()+skipTime);}};break;case\"skipBackward\":icon=props.skipIcon;defaultIcon=`url(\"data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.06694 13.041C4.25577 14.4809 4.83302 15.8423 5.73677 16.9792C6.64053 18.116 7.83669 18.9853 9.19698 19.494C10.5573 20.0027 12.0304 20.1315 13.4583 19.8666C14.8862 19.6017 16.2151 18.953 17.3024 17.9903C18.3897 17.0275 19.1944 15.787 19.6303 14.4016C20.0661 13.0163 20.1166 11.5384 19.7764 10.1266C19.4361 8.7147 18.718 7.42208 17.699 6.38734C16.6799 5.3526 15.3984 4.61477 13.9919 4.25298C10.0929 3.25298 6.05694 5.25998 4.56694 8.99998' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 4V9H9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setTime){state.setTime(state.getTime()-skipTime);}};break;case\"mute\":icon=(state===null||state===void 0?void 0:state.muted)?props.unmuteIcon:props.muteIcon;defaultIcon=(state===null||state===void 0?void 0:state.muted)?`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-volume-off'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15 8a5 5 0 0 1 1.912 4.934m-1.377 2.602a5 5 0 0 1 -.535 .464' /%3E%3Cpath d='M17.7 5a9 9 0 0 1 2.362 11.086m-1.676 2.299a9 9 0 0 1 -.686 .615' /%3E%3Cpath d='M9.069 5.054l.431 -.554a.8 .8 0 0 1 1.5 .5v2m0 4v8a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l1.294 -1.664' /%3E%3Cpath d='M3 3l18 18' /%3E%3C/svg%3E\")`:`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-volume'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15 8a5 5 0 0 1 0 8' /%3E%3Cpath d='M17.7 5a9 9 0 0 1 0 14' /%3E%3Cpath d='M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setMuted){state.setMuted(!state.muted);}};break;case\"pictureInPicture\":icon=props.pictureInPictureIcon;defaultIcon=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-picture-in-picture'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M11 19h-6a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4' /%3E%3Cpath d='M14 14m0 1a1 1 0 0 1 1 -1h5a1 1 0 0 1 1 1v3a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1z' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setPiP){state.setPiP(!state.pip);}};break;case\"restart\":icon=props.restartIcon;defaultIcon=`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor' class='icon icon-tabler icons-tabler-filled icon-tabler-player-track-prev'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M20.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z' /%3E%3Cpath d='M9.341 4.247l-8 7a1 1 0 0 0 0 1.506l8 7c.647 .565 1.659 .106 1.659 -.753v-14c0 -.86 -1.012 -1.318 -1.659 -.753z' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setTime){state.setTime(0);}};break;case\"toggleLoop\":icon=(state===null||state===void 0?void 0:state.loop)?props.loopOnIcon:props.loopOffIcon;defaultIcon=(state===null||state===void 0?void 0:state.loop)?`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-repeat'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 12v-3a3 3 0 0 1 3 -3h13m-3 -3l3 3l-3 3' /%3E%3Cpath d='M20 12v3a3 3 0 0 1 -3 3h-13m3 3l-3 -3l3 -3' /%3E%3C/svg%3E\")`:`url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-repeat-off'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 12v-3c0 -1.336 .873 -2.468 2.08 -2.856m3.92 -.144h10m-3 -3l3 3l-3 3' /%3E%3Cpath d='M20 12v3a3 3 0 0 1 -.133 .886m-1.99 1.984a3 3 0 0 1 -.877 .13h-13m3 3l-3 -3l3 -3' /%3E%3Cpath d='M3 3l18 18' /%3E%3C/svg%3E\")`;onClick=()=>{if(state===null||state===void 0?void 0:state.setLoop){state.setLoop(!state.loop);}};break;}return /*#__PURE__*/_jsx(\"div\",{\"data-videoframe\":true,ref:ref,onMouseEnter:props.hoverEvent,onClick:()=>{var _props_clickEvent;onClick===null||onClick===void 0?void 0:onClick();(_props_clickEvent=props.clickEvent)===null||_props_clickEvent===void 0?void 0:_props_clickEvent.call(props);},style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",cursor:\"pointer\",...props.style},children:/*#__PURE__*/_jsx(Icon,{image:icon,color:props.iconColor,size:props.iconSize,defaultImage:defaultIcon})});}VideoButton.displayName=\"Video Button\";addPropertyControls(VideoButton,{type:{type:ControlType.Enum,defaultValue:\"play\",options:[\"play\",\"fullscreen\",\"skipForward\",\"skipBackward\",\"mute\",\"pictureInPicture\",\"restart\",\"toggleLoop\"],optionTitles:[\"Play/Pause\",\"Fullscreen\",\"Skip Forward\",\"Skip Backward\",\"Mute\",\"Picture-in-Picture\",\"Restart\",\"Toggle Loop\"],title:\"Action\"},skipTime:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,unit:\"s\",title:\"Time\",hidden:props=>props.type!==\"skipForward\"&&props.type!==\"skipBackward\"},playIcon:{type:ControlType.ResponsiveImage,hidden:props=>props.type!==\"play\"},pauseIcon:{type:ControlType.ResponsiveImage,hidden:props=>props.type!==\"play\"},fullscreenIcon:{type:ControlType.ResponsiveImage,title:\"Fullscreen\",hidden:props=>props.type!==\"fullscreen\"},minimizeIcon:{type:ControlType.ResponsiveImage,title:\"Minimize\",hidden:props=>props.type!==\"fullscreen\"},skipIcon:{type:ControlType.ResponsiveImage,title:\"Icon\",hidden:props=>props.type!==\"skipForward\"&&props.type!==\"skipBackward\"},muteIcon:{type:ControlType.ResponsiveImage,title:\"Mute\",hidden:props=>props.type!==\"mute\"},unmuteIcon:{type:ControlType.ResponsiveImage,title:\"Unmute\",hidden:props=>props.type!==\"mute\"},pictureInPictureIcon:{type:ControlType.ResponsiveImage,title:\"Icon\",hidden:props=>props.type!==\"pictureInPicture\"},restartIcon:{type:ControlType.ResponsiveImage,title:\"Icon\",hidden:props=>props.type!==\"restart\"},loopOnIcon:{type:ControlType.ResponsiveImage,title:\"Loop On\",hidden:props=>props.type!==\"toggleLoop\"},loopOffIcon:{type:ControlType.ResponsiveImage,title:\"Loop Off\",hidden:props=>props.type!==\"toggleLoop\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",optional:true},iconSize:{type:ControlType.Number,defaultValue:20,min:1,step:1,displayStepper:true},hoverEvent:{type:ControlType.EventHandler,title:\"Hover\"},clickEvent:{type:ControlType.EventHandler,title:\"Click\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VideoButton\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"40\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{getVideoId,useVideoStore}from\"https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */export default function VideoLabel(props){const{type}=props;const[videoState,setVideoState]=useVideoStore();const[videoId,setVideoId]=useState(null);const[videoTime,setVideoTime]=useState(0);const state=videoState[videoId];const ref=useRef(null);useEffect(()=>{const callback=time=>{setVideoTime(time[0]);};if((state===null||state===void 0?void 0:state.addTimeCallback)&&type==\"currentTime\"){state.addTimeCallback(callback);}return()=>{if((state===null||state===void 0?void 0:state.removeTimeCallback)&&type==\"currentTime\"){state.removeTimeCallback();}};},[!state,type]);useEffect(()=>{const videoId=getVideoId(ref.current);setVideoId(videoId);},[ref]);return /*#__PURE__*/_jsx(\"p\",{\"data-videoframe\":true,ref:ref,style:{userSelect:props.selectable?undefined:\"none\",color:props.color,whiteSpace:\"pre\",margin:0,...props.font,...props.style},children:formatTime(type==\"currentTime\"?videoTime:(state===null||state===void 0?void 0:state.duration)||0)});}VideoLabel.displayName=\"Video Time Label\";addPropertyControls(VideoLabel,{type:{type:ControlType.Enum,defaultValue:\"currentTime\",options:[\"currentTime\",\"duration\"],optionTitles:[\"Current Time\",\"Duration\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},selectable:{type:ControlType.Boolean,defaultValue:false}});function formatTime(seconds){if(isNaN(seconds)){return\"0:00\";}const hours=Math.floor(seconds/3600);const minutes=Math.floor(seconds%3600/60);const secs=Math.floor(seconds%60);if(hours>0){return`${hours}:${minutes<10?\"0\":\"\"}${minutes}:${secs<10?\"0\":\"\"}${secs}`;}else{return`${minutes}:${secs<10?\"0\":\"\"}${secs}`;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VideoLabel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{useVideoStore,getVideoId,useInstanceId,Icon}from\"https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js\";const DEFAULT_ICONS=[`url(\"data:image/svg+xml,${encodeURIComponent('<svg  xmlns=\"http://www.w3.org/2000/svg\"  width=\"24\"  height=\"24\"  viewBox=\"0 0 24 24\"  fill=\"none\"  stroke=\"#FFF\"  stroke-width=\"2\"  stroke-linecap=\"round\"  stroke-linejoin=\"round\"><path d=\"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5\" /><path d=\"M16 10l4 4m0 -4l-4 4\" /></svg>')}\")`,`url(\"data:image/svg+xml,${encodeURIComponent('<svg  xmlns=\"http://www.w3.org/2000/svg\"  width=\"24\"  height=\"24\"  viewBox=\"0 0 24 24\"  fill=\"none\"  stroke=\"#FFF\"  stroke-width=\"2\"  stroke-linecap=\"round\"  stroke-linejoin=\"round\"><path d=\"M15 8a5 5 0 0 1 0 8\" /><path d=\"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5\" /></svg>')}\")`,`url(\"data:image/svg+xml,${encodeURIComponent('<svg  xmlns=\"http://www.w3.org/2000/svg\"  width=\"24\"  height=\"24\"  viewBox=\"0 0 24 24\"  fill=\"none\"  stroke=\"#FFF\"  stroke-width=\"2\"  stroke-linecap=\"round\"  stroke-linejoin=\"round\"><path d=\"M15 8a5 5 0 0 1 0 8\" /><path d=\"M17.7 5a9 9 0 0 1 0 14\" /><path d=\"M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5\" /></svg>')}\")`];/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 150\n * @framerDisableUnlink\n */export default function VolumeSlider(props){const{line,handle,icon}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();const[videoState,setVideoState]=useVideoStore();const[videoId,setVideoId]=useState(null);const[isDragging,setIsDragging]=useState(false);const[dragValue,setDragValue]=useState(0);const state=videoState[videoId];const ref=useRef(null);const inputRef=useRef(null);const value=isCanvas?props.preview/100:isDragging?dragValue:state?state.volume:1;useEffect(()=>{setVideoState({});},[]);useEffect(()=>{const videoId=getVideoId(ref.current);setVideoId(videoId);},[ref]);const handleCSS=`appearance: none;\n        -webkit-appearance: none;\n        width: ${handle.size}px;\n        height: ${handle.size}px;\n        border-radius: ${handle.radius};\n        background-color: ${handle.fill};\n        box-sizing: border-box;\n        translate: 0 ${(-handle.size+line.height)/2-(line.border?Math.min(line.border.width,line.height/2):0)}px;\n        border-width: ${handle.border?.width||0}px;\n        border-style: ${handle.border?\"solid\":\"none\"};\n        border-color: ${handle.border?.color??\"none\"};\n        box-shadow: ${handle.shadows};`;const lineCSS=`appearance: none;\n        -webkit-appearance: none;\n        height: ${line.height}px;`;const onIconClick=()=>{if(icon?.clickAction===\"toggleMute\"&&state){state.setMuted(!state.muted);}};const onChange=event=>{if(isDragging){const newValue=Number(event.target.value);if(state){state.setVolume(newValue);if(state.muted){state.setMuted(false);}}setDragValue(newValue);}};const onDragStart=()=>{setIsDragging(true);};const onDragEnd=()=>{if(state){state.setVolume(dragValue);}setIsDragging(false);};const icons=icon?[icon.muted,icon.middle,icon.full]:[];const iconIndex=state?state.muted||state.volume==0?0:state.volume>=.75?2:1:2;return /*#__PURE__*/_jsxs(\"div\",{\"data-videoframe\":true,ref:ref,id:id,style:{display:\"flex\",flexDirection:icon?.location==\"right\"?\"row-reverse\":\"row\",alignItems:\"center\",gap:icon?.gap,...props.style},children:[icon&&/*#__PURE__*/_jsx(\"div\",{onClick:onIconClick,style:{width:icon.size,height:icon.size,cursor:icon.clickAction===\"toggleMute\"?\"pointer\":undefined},children:/*#__PURE__*/_jsx(Icon,{image:icons[iconIndex],color:icon.color,size:icon.size,defaultImage:DEFAULT_ICONS[iconIndex]})}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",flex:1,height:Math.max(handle.size,line.height),display:\"flex\",flexDirection:\"row\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{height:line.height,background:`linear-gradient(to right, ${line.leftColor} ${value*100}%, ${line.rightColor} ${value*100}%)`,boxShadow:line.shadows,borderRadius:line.radius,flex:1}}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,type:\"range\",name:props.name,min:0,max:1,step:.01,value:value,onChange:onChange,onMouseDown:onDragStart,onMouseUp:onDragEnd,style:{position:\"absolute\",inset:0,display:\"block\",appearance:\"none\",outline:\"none\",margin:0,cursor:\"pointer\",background:\"none\"}})]}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`#${id} input[type=range]::-webkit-slider-thumb {${handleCSS}}\n                    #${id} input[type=range]::-moz-range-thumb {${handleCSS}}\n                    #${id} input[type=range]::-webkit-slider-runnable-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-progress {${lineCSS}}`}})]});}VolumeSlider.displayName=\"Volume Slider\";addPropertyControls(VolumeSlider,{icon:{type:ControlType.Object,optional:true,defaultValue:{color:\"#FFF\",size:20},controls:{clickAction:{type:ControlType.Enum,defaultValue:\"none\",options:[\"toggleMute\",\"none\"],optionTitles:[\"Mute/Unmute\",\"None\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},muted:{type:ControlType.ResponsiveImage},middle:{type:ControlType.ResponsiveImage},full:{type:ControlType.ResponsiveImage},color:{type:ControlType.Color,optional:true,defaultValue:\"#FFF\"},size:{type:ControlType.Number,defaultValue:20,min:1,step:1,displayStepper:true},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1,displayStepper:true},location:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true}}},line:{type:ControlType.Object,buttonTitle:\"Style\",controls:{height:{type:ControlType.Number,defaultValue:4,min:1,step:1,displayStepper:true},leftColor:{type:ControlType.Color,defaultValue:\"#FFF\"},rightColor:{type:ControlType.Color,defaultValue:\"rgba(187, 187, 187, 0.3)\"},radius:{type:ControlType.BorderRadius,defaultValue:\"2px\"},shadows:{type:ControlType.BoxShadow}}},handle:{type:ControlType.Object,buttonTitle:\"Style\",icon:\"boolean\",controls:{size:{type:ControlType.Number,defaultValue:16,min:0,step:1},fill:{type:ControlType.Color,defaultValue:\"#FFF\"},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\"},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadows:{type:ControlType.BoxShadow,defaultValue:\"0px 4px 6px 0px rgba(0, 0, 0, 0.2)\"}}},preview:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,unit:\"%\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VolumeSlider\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VolumeSlider.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{useVideoStore,getVideoId,useInstanceId}from\"https://framerusercontent.com/modules/6ffgsaDzsjdxRp9dCkQD/MorESSBKyWuMljhmD7Xu/VideoFrameShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 200\n * @framerDisableUnlink\n */export default function ProgressBar(props){var _handle_border,_handle_border1;const{line,handle}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();const[videoState,setVideoState]=useVideoStore();const[videoId,setVideoId]=useState(null);const[isDragging,setIsDragging]=useState(false);const[dragValue,setDragValue]=useState(0);const[videoTime,setVideoTime]=useState(0);const[loadedTime,setLoadedTime]=useState(0);const state=videoState[videoId];const duration=(state===null||state===void 0?void 0:state.duration)||0;const ref=useRef(null);const inputRef=useRef(null);const wasPlayingRef=useRef(false);useEffect(()=>{const callback=time=>{if(time[0]!==null){setVideoTime(time[0]);}if(time[1]!==null){setLoadedTime(time[1]);}};if(state===null||state===void 0?void 0:state.addTimeCallback){state.addTimeCallback(callback);}return()=>{if(state===null||state===void 0?void 0:state.removeTimeCallback){state.removeTimeCallback(callback);}};},[!state]);useEffect(()=>{setVideoState({});},[]);useEffect(()=>{const videoId=getVideoId(ref.current);setVideoId(videoId);},[ref]);const value=isDragging?dragValue:videoTime;const step=.1;var _handle_border_color;const handleCSS=`appearance: none;\n        -webkit-appearance: none;\n        width: ${handle.size}px;\n        height: ${handle.size}px;\n        border-radius: ${handle.radius};\n        background-color: ${handle.fill};\n        box-sizing: border-box;\n        border-width: ${((_handle_border=handle.border)===null||_handle_border===void 0?void 0:_handle_border.width)||0}px;\n        border-style: ${handle.border?\"solid\":\"none\"};\n        border-color: ${(_handle_border_color=(_handle_border1=handle.border)===null||_handle_border1===void 0?void 0:_handle_border1.color)!==null&&_handle_border_color!==void 0?_handle_border_color:\"none\"};\n        box-shadow: ${handle.shadows};`;const lineCSS=`appearance: none;\n        -webkit-appearance: none;\n        height: ${line.height}px;`;const percent=isCanvas?props.preview:getPercentage(value,0,duration);const loadedPercent=getPercentage(loadedTime,0,duration);const onChange=event=>{if(isDragging){const newTime=Number(event.target.value);setDragValue(newTime);}};const onDragStart=()=>{if(state===null||state===void 0?void 0:state.playing){wasPlayingRef.current=true;state.setPlaying(false);}setIsDragging(true);};const onDragEnd=()=>{if(state){state.setTime(dragValue);if(wasPlayingRef.current){wasPlayingRef.current=false;state.setPlaying(true);}}setIsDragging(false);};return /*#__PURE__*/_jsxs(\"div\",{\"data-videoframe\":true,ref:ref,id:id,style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",...props.style},children:[/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",flex:1,height:Math.max(handle.size,line.height),display:\"flex\",flexDirection:\"row\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{height:line.height,background:loadedPercent>percent&&line.loadedFill?`linear-gradient(to right, ${line.playedFill} ${percent}%, ${line.loadedFill} ${percent}%, ${line.loadedFill} ${loadedPercent}%, ${line.unplayedFill} ${loadedPercent}%)`:`linear-gradient(to right, ${line.playedFill} ${percent}%, ${line.unplayedFill} ${percent}%)`,boxShadow:line.shadows,borderRadius:line.radius,flex:1}}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,type:\"range\",name:props.name,min:0,max:isCanvas?100:duration,step:step,value:isCanvas?props.preview:value,onChange:onChange,onMouseDown:onDragStart,onMouseUp:onDragEnd,style:{position:\"absolute\",inset:0,display:\"block\",appearance:\"none\",outline:\"none\",margin:0,cursor:\"pointer\",background:\"none\"}})]}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`#${id} input[type=range]::-webkit-slider-thumb {${handleCSS}\n                        translate: 0 ${(-handle.size+line.height)/2-(line.border?Math.min(line.border.width,line.height/2):0)}px;    \n                    }\n                    #${id} input[type=range]::-moz-range-thumb {${handleCSS}}\n                    #${id} input[type=range]::-webkit-slider-runnable-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-progress {${lineCSS}}`}})]});}ProgressBar.displayName=\"Progress Bar\";addPropertyControls(ProgressBar,{line:{type:ControlType.Object,buttonTitle:\"Style\",controls:{height:{type:ControlType.Number,defaultValue:4,min:1,step:1,displayStepper:true},playedFill:{type:ControlType.Color,defaultValue:\"#FFF\",title:\"Played\"},unplayedFill:{type:ControlType.Color,defaultValue:\"rgba(187, 187, 187, 0.3)\",title:\"Unplayed\"},loadedFill:{type:ControlType.Color,optional:true,defaultValue:\"rgba(187, 187, 187, 0.5)\",title:\"Loaded\",description:\"Only for YouTube and Vimeo videos\"},radius:{type:ControlType.BorderRadius,defaultValue:\"2px\"},shadows:{type:ControlType.BoxShadow}}},handle:{type:ControlType.Object,buttonTitle:\"Style\",icon:\"boolean\",controls:{size:{type:ControlType.Number,defaultValue:16,min:0,step:1},fill:{type:ControlType.Color,defaultValue:\"#FFF\"},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\"},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadows:{type:ControlType.BoxShadow,defaultValue:\"0px 4px 6px 0px rgba(0, 0, 0, 0.2)\"}}},preview:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,unit:\"%\"}});function getPercentage(value,min,max){if(min===max){return value===min?0:100;}// Ensure min is less than max by swapping if necessary\nif(min>max){[min,max]=[max,min];}// Clamp the value to be within the min and max range\nvalue=Math.max(min,Math.min(value,max));const percentage=(value-min)/(max-min)*100;return percentage;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ProgressBar\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ProgressBar.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "VIDEO_ID_ATTRIBUTE", "useVideoStore", "createStore", "speeds", "useInstanceId", "ae", "getVideoId", "element", "id", "VIDEO_ID_ATTRIBUTE", "Icon", "image", "color", "size", "style", "defaultImage", "colorValue", "p", "Border", "width", "style", "color", "borderRadius", "transition", "opacity", "p", "motion", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "cjs_exports", "__export", "cjs_default", "init_ssg_sandbox_shims", "e", "r", "isNonNullObject", "isSpecial", "isReactElement", "t", "n", "emptyTarget", "cloneUnlessOtherwiseSpecified", "deepmerge", "defaultArrayMerge", "getMergeFunction", "getEnumerableOwnPropertySymbols", "getKeys", "propertyIsOnObject", "propertyIsUnsafe", "mergeObject", "c", "i", "o", "memoize_one_cjs_exports", "__export", "memoize_one_cjs_default", "init_ssg_sandbox_shims", "r", "e", "isEqual", "n", "areInputsEqual", "memoizeOne", "t", "u", "a", "memoized", "i", "f", "npm_react_fast_compare_3_2_exports", "__export", "npm_react_fast_compare_3_2_default", "init_ssg_sandbox_shims", "e", "r", "t", "n", "f", "equal", "a", "u", "i", "s", "npm_prop_types_15_8_exports", "__export", "u", "s", "g", "m", "a", "r", "l", "b", "j", "h", "O", "v", "p", "c", "T", "d", "S", "F", "y", "f", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "_", "a", "r", "t", "n", "r", "emptyFunction", "emptyFunctionWithReset", "shim", "e", "i", "o", "s", "m", "getShim", "a", "h", "p", "c", "y", "f", "u", "g", "l", "b", "O", "v", "T", "d", "S", "F", "j", "init_ssg_sandbox_shims", "npm_load_script_1_0_exports", "__export", "npm_load_script_1_0_default", "init_ssg_sandbox_shims", "t", "n", "e", "a", "o", "setAttributes", "r", "stdOnEnd", "ieOnEnd", "o", "npm_react_18_2_exports", "e", "n", "npm_load_script_1_0_exports", "npm_load_script_1_0_default", "a", "cjs_exports", "cjs_default", "s", "i", "c", "l", "u", "m", "d", "f", "__export$1", "t", "__copyProps$1", "__toESM", "__toCommonJS$1", "p", "callPlayer", "getConfig", "O", "isBlobUrl", "isMediaStream", "lazy", "omit", "parseEndTime", "parseStartTime", "queryString", "randomString", "supportsWebKitPresentationMode", "w", "b", "v", "y", "_", "g", "h", "parseTimeParam", "parseTimeString", "getGlobal", "T", "r", "onLoaded", "S", "i", "A", "M", "P", "U", "C", "__export", "t", "e", "__copyProps", "o", "n", "__toCommonJS", "E", "V", "q", "F", "G", "B", "N", "$", "X", "K", "R", "H", "x", "z", "k", "W", "j", "D", "L", "Z", "Y", "I", "canPlayFile", "J", "o", "npm_prop_types_15_8_exports", "r", "i", "n", "p", "u", "d", "h", "y", "__export$2", "a", "__copyProps$2", "s", "__toESM$2", "__toCommonJS$2", "c", "C", "T", "f", "v", "P", "m", "b", "g", "w", "O", "k", "R", "noop", "I", "D", "npm_react_18_2_exports", "e", "L", "npm_react_fast_compare_3_2_exports", "npm_react_fast_compare_3_2_default", "E", "S", "j", "_", "V", "A", "x", "__defNormalProp$1", "__export$1", "__copyProps$1", "__toESM$1", "__toCommonJS$1", "__publicField$1", "U", "Player", "M", "H", "N", "B", "z", "t", "l", "F", "q", "Q", "cjs_exports", "cjs_default", "W", "memoize_one_cjs_exports", "memoize_one_cjs_default", "$", "G", "J", "K", "X", "Y", "Z", "ee", "te", "__defNormalProp", "__export", "__copyProps", "__toESM", "__toCommonJS", "__publicField", "ae", "createReactPlayer", "re", "se", "le", "oe", "ie", "ne", "pe", "ue", "de", "he", "ye", "ce", "fe", "ve", "init_ssg_sandbox_shims", "r", "npm_react_18_2_exports", "e", "s", "o", "l", "n", "i", "c", "u", "__defNormalProp", "a", "__export", "__copyProps", "__toESM", "__toCommonJS", "__publicField", "p", "YouTube", "y", "h", "S", "d", "J", "m", "P", "f", "g", "b", "v", "T", "t", "w", "e", "t", "ve", "o", "w", "p", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "s", "npm_react_18_2_exports", "e", "o", "a", "i", "n", "l", "p", "h", "__defNormalProp", "__export", "__copyProps", "__toESM", "__toCommonJS", "__publicField", "u", "Vimeo", "c", "y", "S", "d", "J", "m", "f", "cleanUrl", "t", "r", "v", "e", "t", "ve", "o", "v", "m", "VideoFrame", "props", "source", "border", "thumbnail", "startTime", "autoPlay", "isCanvas", "RenderTarget", "muted", "videoState", "setVideoState", "useVideoStore", "ref", "pe", "videoRef", "videoIdRef", "playerRef", "timeCallbacksRef", "state", "stateRef", "ue", "_ref_current_parentElement", "_ref_current", "videoParentElement", "newVideoId", "VIDEO_ID_ATTRIBUTE", "uuid", "setPlaying", "playing", "prev", "setFullscreen", "fullscreen", "customFullscreenSupported", "_videoRef_current1", "_HTMLVideoElement_prototype_webkitExitFullScreen", "_videoRef_current", "_HTMLVideoElement_prototype_webkitEnterFullScreen", "_props_enterFullscreenEvent", "_props_exitFullscreenEvent", "setPiP", "pip", "_props_enterPictureInPictureEvent", "_props_exitPictureInPictureEvent", "setMuted", "videoId", "setVolume", "volume", "setLoop", "loop", "setSpeed", "speed", "setTime", "time", "_stateRef_current", "duration", "newTime", "loopValue", "clamp", "callback", "getTime", "_videoRef_current_currentTime", "getLoadedTime", "addTimeCallback", "removeTimeCallback", "value", "isHTMLVideoType", "parseTimeToSeconds", "onVideoEnded", "_props_loopedEvent", "_props_endedEvent", "updateVideoTime", "onClick", "onVideoPlayingChanged", "_props_playingEvent", "_props_pausedEvent", "videoElement", "p", "onDurationChange", "onTimeChange", "onPlayerReady", "videoProps", "progress", "m", "addPropertyControls", "ControlType", "speeds", "d", "d2", "c", "r", "min", "max", "range", "timeString", "parts", "seconds", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "VideoButton", "props", "_state_videoRef", "_state_playerRef", "type", "skipTime", "videoState", "setVideoState", "useVideoStore", "videoId", "setVideoId", "ye", "state", "ref", "pe", "videoRef", "playerRef", "ue", "getVideoId", "icon", "defaultIcon", "onClick", "p", "_props_clickEvent", "Icon", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "VideoLabel", "props", "type", "videoState", "setVideoState", "useVideoStore", "videoId", "setVideoId", "ye", "videoTime", "setVideoTime", "state", "ref", "pe", "ue", "callback", "time", "getVideoId", "p", "formatTime", "addPropertyControls", "ControlType", "seconds", "hours", "minutes", "secs", "init_ssg_sandbox_shims", "DEFAULT_ICONS", "VolumeSlider", "props", "line", "handle", "icon", "isCanvas", "RenderTarget", "id", "useInstanceId", "videoState", "setVideoState", "useVideoStore", "videoId", "setVideoId", "ye", "isDragging", "setIsDragging", "dragValue", "setDragValue", "state", "ref", "pe", "inputRef", "value", "ue", "getVideoId", "handleCSS", "lineCSS", "onIconClick", "onChange", "event", "newValue", "onDragStart", "onDragEnd", "icons", "iconIndex", "u", "p", "Icon", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "ProgressBar", "props", "_handle_border", "_handle_border1", "line", "handle", "isCanvas", "RenderTarget", "id", "useInstanceId", "videoState", "setVideoState", "useVideoStore", "videoId", "setVideoId", "ye", "isDragging", "setIsDragging", "dragValue", "setDragValue", "videoTime", "setVideoTime", "loadedTime", "setLoadedTime", "state", "duration", "ref", "pe", "inputRef", "wasPlayingRef", "ue", "callback", "time", "getVideoId", "value", "step", "_handle_border_color", "handleCSS", "lineCSS", "percent", "getPercentage", "loadedPercent", "onChange", "event", "newTime", "onDragStart", "onDragEnd", "u", "p", "addPropertyControls", "ControlType", "min", "max", "VideoButtonFonts", "getFonts", "VideoButton", "VideoTimeLabelFonts", "VideoLabel", "ProgressBarFonts", "ProgressBar", "VolumeSliderFonts", "VolumeSlider", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "m5tRvdlRR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapu7j9m4", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerSrkGy03zf", "withCSS", "SrkGy03zf_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "VideoFrameFonts", "VideoFrame", "VideoPlayerVideoControllBarFonts", "SrkGy03zf_default", "Video1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "hasPlaceHolderVideo", "height", "id", "placeHolderVideo", "videoLink", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "D582nO2Lh", "SCxL02ILm", "qPy0UCv6f", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "m5tRvdlRRpxpkll", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerC2OrSMbkd", "withCSS", "C2OrSMbkd_default", "addPropertyControls", "ControlType", "addFonts"]
}
