{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/ecGAu4KiepbFAEvELSZQ/S6h8M5LPLuvbdeejBnD5/VideoOverlay_sam.js", "ssg:https://framerusercontent.com/modules/1gfFAjnxx8FC1Cf0WGPE/YiduRZTT32KhE0B3kGw9/T52l5yY3d.js"],
  "sourcesContent": ["/**\n * For any website & code related support, contact Sam from wealthisteps.com at wealthistep@gmail.com\n * Linkedin - https://www.linkedin.com/in/samagramishra/\n * */import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import*as React from\"react\";import{createPortal}from\"react-dom\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function PossibleVideoOverlay(props){const{videoUrl,quote,name,membership,backgroundColor,font}=props;const[isOpen,setIsOpen]=React.useState(false);const[isPlaying,setIsPlaying]=React.useState(false);const videoRef=React.useRef(null);const buttonRef=React.useRef(null);const getEmbedUrl=url=>{const youtubeMatch=url.match(/(?:youtube\\.com\\/(?:watch\\?v=|embed\\/|v\\/)|youtu\\.be\\/)([^?&\\/]+)/);const vimeoMatch=url.match(/(?:vimeo\\.com\\/|player\\.vimeo\\.com\\/video\\/)(\\d+)/);if(youtubeMatch){return`https://www.youtube.com/embed/${youtubeMatch[1]}?autoplay=1&controls=1`;}else if(vimeoMatch){return`https://player.vimeo.com/video/${vimeoMatch[1]}?autoplay=1&controls=1`;}return url;};const removeHover=()=>{if(buttonRef.current){const event=new MouseEvent(\"mouseleave\",{bubbles:true,cancelable:true,view:window});buttonRef.current.dispatchEvent(event);}};const handleOverlayClick=e=>{e.stopPropagation();setIsOpen(false);setIsPlaying(false);removeHover();};const handleCloseClick=e=>{e.stopPropagation();setIsOpen(false);setIsPlaying(false);removeHover();};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                .overlay {\n                    position: fixed;\n                    top: 0;\n                    left: 0;\n                    width: 100vw;\n                    height: 100vh;\n                    background-color: rgba(0, 0, 0, 0.9);\n                    display: flex;\n                    justify-content: center;\n                    align-items: center;\n                    z-index: 1000;\n                }\n                \n                .modal {\n                    max-width: 840px;\n                    width: 100%;\n                    padding: 20px;\n                    position: relative;\n                }\n                \n                .close-button {\n                    position: absolute;\n                    top: -48px;\n                    right: 20px;\n                    background: none;\n                    border: 1px solid #767676;\n                    border-radius: 50%;\n                    width: 40px;\n                    height: 40px;\n                    display: flex;\n                    justify-content: center;\n                    align-items: center;\n                    cursor: pointer;\n                }\n                \n                .content {\n                    display: flex;\n                    flex-direction: row;\n                    height: 400px;\n                    background-color: #fff;\n                    border-radius: 4px;\n                    overflow: hidden;\n                }\n                \n                .video-wrapper {\n                    width: 50%;\n                    position: relative;\n                    background-color: #000;\n                }\n                \n                .video {\n                    width: 100%;\n                    height: 100%;\n                    object-fit: cover;\n                }\n                \n                .iframe {\n                    width: 100%;\n                    height: 100%;\n                    border: none;\n                }\n                \n                .video-overlay {\n                    position: absolute;\n                    top: 0;\n                    left: 0;\n                    width: 100%;\n                    height: 100%;\n                    display: flex;\n                    align-items: center;\n                    justify-content: center;\n                    background: rgba(0, 0, 0, 0.3);\n                    cursor: pointer;\n                }\n                \n                .play-button {\n                    width: 80px;\n                    height: 80px;\n                    background: rgba(255, 255, 255, 0.9);\n                    border-radius: 50%;\n                    display: flex;\n                    align-items: center;\n                    justify-content: center;\n                }\n                \n                .play-icon {\n                    width: 0;\n                    height: 0;\n                    border-style: solid;\n                    border-width: 15px 0 15px 25px;\n                    border-color: transparent transparent transparent #000;\n                    margin-left: 5px;\n                }\n                \n                .text-block {\n                    width: 50%;\n                    position: relative;\n                    padding: 24px;\n                    display: flex;\n                    flex-direction: column;\n                    justify-content: space-between;\n                }\n                \n                .quote-icon {\n                    background-color: #E0E0E0;\n                    width: 48px;\n                    height: 48px;\n                    position: absolute;\n                    top: 0;\n                    left: 0;\n                    display: flex;\n                    align-items: center;\n                    justify-content: center;\n                }\n                \n                .quote-text {\n                    font-size: 32px;\n                    line-height: 1.2;\n                    font-weight: 400;\n                    white-space: pre-wrap;\n                }\n                \n                .member-name {\n                    margin-top: 24px;\n                    font-size: 16px;\n                    font-weight: 700;\n                }\n                \n                .member-since {\n                    font-size: 16px;\n                    font-weight: 400;\n                }\n                \n                /* Responsive styles */\n                @media (max-width: 768px) {\n                    .content {\n                        flex-direction: column;\n                        height: auto;\n                    }\n                    \n                    .video-wrapper, .text-block {\n                        width: 100%;\n                    }\n                    \n                    .video-wrapper {\n                        height: 300px;\n                    }\n                    \n                    .play-button {\n                        width: 60px;\n                        height: 60px;\n                    }\n                    \n                    .quote-text {\n                        font-size: 24px;\n                    }\n                }\n                \n                @media (max-width: 480px) {\n                    .modal {\n                        padding: 10px;\n                    }\n                    \n                    .video-wrapper {\n                        height: 200px;\n                    }\n                    \n                    .play-button {\n                        width: 50px;\n                        height: 50px;\n                    }\n                    \n                    .play-icon {\n                        border-width: 10px 0 10px 18px;\n                    }\n                    \n                    .quote-text {\n                        font-size: 20px;\n                    }\n                    \n                    .text-block {\n                        padding: 16px;\n                    }\n                    \n                    .member-name, .member-since {\n                        font-size: 14px;\n                    }\n                }\n            `}),/*#__PURE__*/_jsx(\"button\",{ref:buttonRef,style:{width:\"100%\",height:\"100%\",cursor:\"pointer\",background:\"transparent\",border:\"none\",padding:0,outline:\"none\"},onClick:()=>setIsOpen(true),children:isOpen&&/*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{className:\"overlay\",onClick:handleOverlayClick,children:/*#__PURE__*/_jsxs(\"div\",{className:\"modal\",children:[/*#__PURE__*/_jsx(\"button\",{onClick:handleCloseClick,className:\"close-button\",children:/*#__PURE__*/_jsx(\"svg\",{height:\"14\",viewBox:\"0 0 15 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M14.1475 0.868164L8.04688 6.99805L14.1475 13.127L13.3271 13.9443L7.17578 7.81543L1.02344 13.9443L0.203125 13.127L6.35547 6.99805L0.203125 0.868164L1.02344 0L7.17578 6.12988L13.3271 0L14.1475 0.868164Z\",fill:\"white\",stroke:\"white\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"video-wrapper\",children:videoUrl.includes(\"youtube.com\")||videoUrl.includes(\"youtu.be\")||videoUrl.includes(\"vimeo.com\")?/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"iframe\",{src:getEmbedUrl(videoUrl),className:\"iframe\",allow:\"autoplay; fullscreen;\",allowFullScreen:true}),!isPlaying&&/*#__PURE__*/_jsx(\"div\",{className:\"video-overlay\",onClick:()=>setIsPlaying(true),children:/*#__PURE__*/_jsx(\"div\",{className:\"play-button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"play-icon\"})})})]}):/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"video\",{ref:videoRef,src:videoUrl,className:\"video\",controls:isPlaying}),!isPlaying&&/*#__PURE__*/_jsx(\"div\",{className:\"video-overlay\",onClick:()=>{setIsPlaying(true);videoRef.current?.play();},children:/*#__PURE__*/_jsx(\"div\",{className:\"play-button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"play-icon\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"text-block\",style:{fontFamily:font?.fontFamily},children:[/*#__PURE__*/_jsx(\"div\",{className:\"quote-icon\",style:{backgroundColor:backgroundColor},children:/*#__PURE__*/_jsx(\"svg\",{width:\"48\",height:\"48\",viewBox:\"0 0 49 48\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M24.2524 21.7363L22.8444 25.3203H23.8044V28.6163H20.7324V25.5763L22.9084 21.7363H24.2524ZM28.8924 21.7363L27.4844 25.3203H28.4444V28.6163H25.3724V25.5763L27.5484 21.7363H28.8924Z\",fill:\"#1C1C1C\"})})}),/*#__PURE__*/_jsxs(\"p\",{className:\"quote-text\",style:{color:font?.color||\"#000\"},children:[props.prefix!==undefined?props.prefix:\"\",quote||\"Possible is always there for me.\"]}),/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"p\",{className:\"member-name\",style:{color:font?.color||\"#000\"},children:name||\"Tryston\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"member-since\",style:{color:font?.color||\"#000\"},children:[\"Member since\",\" \",membership||2018]})]})]})]})]})}),document.body)})]});}addPropertyControls(PossibleVideoOverlay,{videoUrl:{type:ControlType.String,title:\"Video URL\",defaultValue:\"https://www.w3schools.com/html/mov_bbb.mp4\"},prefix:{type:ControlType.String,title:\"Quote Prefix\",defaultValue:\"\"},quote:{type:ControlType.String,title:\"Quote\",defaultValue:\"Possible is always there for me.\"},name:{type:ControlType.String,title:\"Name\",defaultValue:\"Tryston\"},membership:{type:ControlType.Number,title:\"Member Since\",defaultValue:2018},font:{type:ControlType.Font,controls:\"extended\"},backgroundColor:{type:ControlType.Color,title:\"Quote Icon BG\",defaultValue:\"#E0E0E0\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PossibleVideoOverlay\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VideoOverlay_sam.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,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 WordHighlighter from\"https://framerusercontent.com/modules/LmM8cXITihYjBAxcIzgJ/AiIaMslwAUlSIqAFb9IL/TextHighlighter.js\";import PossibleVideoOverlay from\"https://framerusercontent.com/modules/ecGAu4KiepbFAEvELSZQ/S6h8M5LPLuvbdeejBnD5/VideoOverlay_sam.js\";import PlayIcon from\"https://framerusercontent.com/modules/ZnRQBJXeXNcsFQkstUSk/yTqjapTRsyfWInZFds0O/sDoP57UhI.js\";const PlayIconFonts=getFonts(PlayIcon);const WordHighlighterFonts=getFonts(WordHighlighter);const PossibleVideoOverlayFonts=getFonts(PossibleVideoOverlay);const cycleOrder=[\"gjM3DEHAT\",\"vbcYpfAtk\",\"c9E3xdLTj\",\"bb98BwDG8\",\"U15EtORDk\",\"uzGRQqXP1\"];const serializationHash=\"framer-uA0ZY\";const variantClassNames={bb98BwDG8:\"framer-v-djjw57\",c9E3xdLTj:\"framer-v-bnd58l\",gjM3DEHAT:\"framer-v-1knc6af\",U15EtORDk:\"framer-v-nzeq93\",uzGRQqXP1:\"framer-v-5w43gu\",vbcYpfAtk:\"framer-v-1mj4pvm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toString=value=>{return typeof value===\"string\"?value:String(value);};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Text - 2\":\"U15EtORDk\",\"Text - Phone\":\"uzGRQqXP1\",\"Text \":\"bb98BwDG8\",\"Video - Hover\":\"vbcYpfAtk\",\"Video - Phone\":\"c9E3xdLTj\",Video:\"gjM3DEHAT\"};const getProps=({border,color,height,id,image,memberFrom,name1,text,textColor,width,...props})=>{return{...props,bBcMuZgDJ:image??props.bBcMuZgDJ??{alt:\"\",pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/LvO8oUPLeSxS74TCmIqCJo8sF8.png\"},CnWmyA5rQ:textColor??props.CnWmyA5rQ??\"var(--token-bc5c9f0a-f2de-4c5c-9cc7-20389a293b3d, rgb(255, 255, 255))\",gPBYAo48r:color??props.gPBYAo48r??\"var(--token-bb31a71f-e362-4562-b827-79b43543b9e1, rgb(255, 211, 31))\",h0jhNts2a:memberFrom??props.h0jhNts2a??2013,MQHFTZVGb:name1??props.MQHFTZVGb??\"Kristopher\",r54OoVNdR:text??props.r54OoVNdR??\"     It\u2019s like I never have to worry about money.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"gjM3DEHAT\",wGnrtfK37:border??props.wGnrtfK37??{borderBottomWidth:1,borderColor:\"rgb(96, 83, 30)\",borderLeftWidth:1,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1}};};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,wGnrtfK37,r54OoVNdR,MQHFTZVGb,h0jhNts2a,bBcMuZgDJ,gPBYAo48r,CnWmyA5rQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gjM3DEHAT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1b7tj4i=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"vbcYpfAtk\");});const onMouseLeaveq21yuo=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"gjM3DEHAT\");});const onTap1p699ge=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gjM3DEHAT\"),100);});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"bb98BwDG8\",\"U15EtORDk\",\"uzGRQqXP1\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"bb98BwDG8\",\"U15EtORDk\",\"uzGRQqXP1\"].includes(baseVariant))return true;return false;};const textContent=prefix(toString(h0jhNts2a),\"Member Since \");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-1knc6af\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Video\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gjM3DEHAT\",onMouseEnter:onMouseEnter1b7tj4i,ref:refBinding,style:{\"--border-bottom-width\":(wGnrtfK37.borderBottomWidth??wGnrtfK37.borderWidth)+\"px\",\"--border-color\":wGnrtfK37.borderColor,\"--border-left-width\":(wGnrtfK37.borderLeftWidth??wGnrtfK37.borderWidth)+\"px\",\"--border-right-width\":(wGnrtfK37.borderRightWidth??wGnrtfK37.borderWidth)+\"px\",\"--border-style\":wGnrtfK37.borderStyle,\"--border-top-width\":(wGnrtfK37.borderTopWidth??wGnrtfK37.borderWidth)+\"px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{bb98BwDG8:{backgroundColor:\"rgba(0, 0, 0, 0)\"},c9E3xdLTj:{backgroundColor:\"rgba(0, 0, 0, 0)\"},U15EtORDk:{backgroundColor:\"rgba(0, 0, 0, 0)\"},uzGRQqXP1:{backgroundColor:\"rgba(0, 0, 0, 0)\"},vbcYpfAtk:{backgroundColor:gPBYAo48r}},...addPropertyOverrides({bb98BwDG8:{\"data-framer-name\":\"Text \",\"data-highlight\":undefined,onMouseEnter:undefined},c9E3xdLTj:{\"data-framer-name\":\"Video - Phone\",\"data-highlight\":undefined,onMouseEnter:undefined},U15EtORDk:{\"data-framer-name\":\"Text - 2\",\"data-highlight\":undefined,onMouseEnter:undefined},uzGRQqXP1:{\"data-framer-name\":\"Text - Phone\",\"data-highlight\":undefined,onMouseEnter:undefined},vbcYpfAtk:{\"data-framer-name\":\"Video - Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveq21yuo}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ro6rqg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"pjx86v6J4\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(96, 83, 30)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:gPBYAo48r},variants:{vbcYpfAtk:{backgroundColor:\"var(--token-55a89b24-0773-4b4e-990f-821869444902, rgb(255, 255, 255))\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,width:\"16px\",y:(componentViewport?.y||0)+0+15,...addPropertyOverrides({c9E3xdLTj:{y:(componentViewport?.y||0)+0+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q39vxn-container\",layoutDependency:layoutDependency,layoutId:\"VpY0RB6i5-container\",nodeId:\"VpY0RB6i5\",rendersWithMotion:true,scopeId:\"T52l5yY3d\",style:{scale:1},variants:{c9E3xdLTj:{scale:.7}},children:/*#__PURE__*/_jsx(PlayIcon,{height:\"100%\",id:\"VpY0RB6i5\",layoutId:\"VpY0RB6i5\",style:{height:\"100%\",width:\"100%\"},variant:\"vqAJhkxPS\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Quotation marks.\",fit:\"fill\",pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/rmrxn5EBn6GexWGxNab36nKHSwI.svg\"},className:\"framer-vvdkhz\",layoutDependency:layoutDependency,layoutId:\"D7n2Ysg43\",...addPropertyOverrides({bb98BwDG8:{background:{alt:\"Quotation marks.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/rmrxn5EBn6GexWGxNab36nKHSwI.svg\"}},U15EtORDk:{background:{alt:\"Quotation marks.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/rmrxn5EBn6GexWGxNab36nKHSwI.svg\"}},uzGRQqXP1:{background:{alt:\"Quotation marks.\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/rmrxn5EBn6GexWGxNab36nKHSwI.svg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zf4ng0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"isWVR91F4-container\",nodeId:\"isWVR91F4\",rendersWithMotion:true,scopeId:\"T52l5yY3d\",children:/*#__PURE__*/_jsx(WordHighlighter,{font:{fontFamily:'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",highlightColor:gPBYAo48r,id:\"isWVR91F4\",layoutId:\"isWVR91F4\",prefix:\"     \",preserveWhitespace:true,style:{width:\"100%\"},suffix:\"\",text:r54OoVNdR,textColor:CnWmyA5rQ,width:\"100%\",...addPropertyOverrides({c9E3xdLTj:{font:{fontFamily:'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',fontSize:\"26px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},prefix:\"    \"},uzGRQqXP1:{font:{fontFamily:'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',fontSize:\"26px\",letterSpacing:\"0em\",lineHeight:\"1.1em\"},prefix:\"    \"},vbcYpfAtk:{highlightColor:\"var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28))\",textColor:\"var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfo1ll\",\"data-framer-name\":\"meta\",layoutDependency:layoutDependency,layoutId:\"DSWrD5My7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-erea1d\",\"data-framer-name\":\"name\",layoutDependency:layoutDependency,layoutId:\"Nn6aqEjjg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gPBYAo48r-T52l5yY3d))\"},children:\"Kristopher\"})}),className:\"framer-15sb6em\",\"data-framer-name\":\"Keisha\",fonts:[\"CUSTOM;Haffer Bold\"],layoutDependency:layoutDependency,layoutId:\"tLb_j12sO\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-gPBYAo48r-T52l5yY3d)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-gPBYAo48r-T52l5yY3d\":gPBYAo48r},text:MQHFTZVGb,variants:{vbcYpfAtk:{\"--extracted-r6o4lv\":\"var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vbcYpfAtk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBCb2xk\",\"--framer-font-family\":'\"Haffer Bold\", \"Haffer Bold Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28)))\"},children:\"Kristopher\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBSZWd1bGFy\",\"--framer-font-family\":'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gPBYAo48r-T52l5yY3d))\"},children:\"Member Since 2013\"})}),className:\"framer-b0n4ao\",\"data-framer-name\":\"Member Since 2023\",fonts:[\"CUSTOM;Haffer Regular\"],layoutDependency:layoutDependency,layoutId:\"CHHmbUVmZ\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-gPBYAo48r-T52l5yY3d)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-gPBYAo48r-T52l5yY3d\":gPBYAo48r},text:textContent,variants:{vbcYpfAtk:{\"--extracted-r6o4lv\":\"var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vbcYpfAtk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hhZmZlciBSZWd1bGFy\",\"--framer-font-family\":'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eb8a580e-ba8c-47ef-9c27-df790fa58c47, rgb(28, 28, 28)))\"},children:\"Member Since 2013\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+17.5+(0+200+((componentViewport?.height||400)-41.5-424)/1*1)+88),pixelHeight:48,pixelWidth:48,sizes:\"48px\",...toResponsiveImage(bBcMuZgDJ)},className:\"framer-1gmuchr\",\"data-framer-name\":\"avatar\",layoutDependency:layoutDependency,layoutId:\"JgzcCdAFS\",...addPropertyOverrides({c9E3xdLTj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+9+(0+200+((componentViewport?.height||400)-25-434)/1*1)+98),pixelHeight:48,pixelWidth:48,sizes:\"48px\",...toResponsiveImage(bBcMuZgDJ)}},U15EtORDk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+17.5+(0+200+((componentViewport?.height||166.5)-41.5-424)/1*1)+88),pixelHeight:48,pixelWidth:48,sizes:\"48px\",...toResponsiveImage(bBcMuZgDJ)}},uzGRQqXP1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+(0+200+((componentViewport?.height||147)-26-440)/1*1)+104),pixelHeight:48,pixelWidth:48,sizes:\"48px\",...toResponsiveImage(bBcMuZgDJ)}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zwdu3h\",layoutDependency:layoutDependency,layoutId:\"FSsDGsudr\",...addPropertyOverrides({vbcYpfAtk:{\"data-highlight\":true,onTap:onTap1p699ge}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vlk51k-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"SGUtJjY3p-container\",nodeId:\"SGUtJjY3p\",rendersWithMotion:true,scopeId:\"T52l5yY3d\",children:/*#__PURE__*/_jsx(PossibleVideoOverlay,{backgroundColor:gPBYAo48r,font:{fontFamily:'\"Haffer Regular\", \"Haffer Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"SGUtJjY3p\",layoutId:\"SGUtJjY3p\",membership:2018,name:\"Tryston\",prefix:\"     \",quote:\"Possible is always there for me.\",style:{height:\"100%\",width:\"100%\"},videoUrl:\"https://www.w3schools.com/html/mov_bbb.mp4\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uA0ZY.framer-1gr95eo, .framer-uA0ZY .framer-1gr95eo { display: block; }\",\".framer-uA0ZY.framer-1knc6af { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 400px; justify-content: space-between; overflow: hidden; padding: 17.5px 24px 24px 24px; position: relative; width: 400px; }\",\".framer-uA0ZY .framer-1ro6rqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 48px; z-index: 1; }\",\".framer-uA0ZY .framer-1q39vxn-container { flex: none; height: 18px; position: relative; width: 16px; }\",\".framer-uA0ZY .framer-vvdkhz { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-uA0ZY .framer-zf4ng0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-uA0ZY .framer-1yfo1ll { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uA0ZY .framer-erea1d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uA0ZY .framer-15sb6em, .framer-uA0ZY .framer-b0n4ao { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uA0ZY .framer-1gmuchr { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-uA0ZY .framer-zwdu3h { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-uA0ZY .framer-vlk51k-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-uA0ZY.framer-v-1mj4pvm.framer-1knc6af, .framer-uA0ZY.framer-v-djjw57.framer-1knc6af { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\",\".framer-uA0ZY.framer-v-1mj4pvm .framer-zwdu3h { cursor: pointer; }\",\".framer-uA0ZY.framer-v-bnd58l.framer-1knc6af { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 400px); padding: 9px 16px 16px 16px; }\",\".framer-uA0ZY.framer-v-bnd58l .framer-1ro6rqg, .framer-uA0ZY.framer-v-5w43gu .framer-1ro6rqg { height: 34px; width: 34px; }\",\".framer-uA0ZY.framer-v-bnd58l .framer-1yfo1ll { padding: 10px 0px 0px 0px; }\",\".framer-uA0ZY.framer-v-nzeq93.framer-1knc6af { height: min-content; }\",\".framer-uA0ZY.framer-v-5w43gu.framer-1knc6af { height: min-content; padding: 10px 16px 16px 16px; }\",\".framer-uA0ZY.framer-v-5w43gu .framer-1yfo1ll { padding: 16px 0px 0px 0px; }\",'.framer-uA0ZY[data-border=\"true\"]::after, .framer-uA0ZY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vbcYpfAtk\":{\"layout\":[\"fixed\",\"fixed\"]},\"c9E3xdLTj\":{\"layout\":[\"fixed\",\"fixed\"]},\"bb98BwDG8\":{\"layout\":[\"fixed\",\"fixed\"]},\"U15EtORDk\":{\"layout\":[\"fixed\",\"auto\"]},\"uzGRQqXP1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wGnrtfK37\":\"border\",\"r54OoVNdR\":\"text\",\"MQHFTZVGb\":\"name1\",\"h0jhNts2a\":\"memberFrom\",\"bBcMuZgDJ\":\"image\",\"gPBYAo48r\":\"color\",\"CnWmyA5rQ\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerT52l5yY3d=withCSS(Component,css,\"framer-uA0ZY\");export default FramerT52l5yY3d;FramerT52l5yY3d.displayName=\"Testimonial Colored\";FramerT52l5yY3d.defaultProps={height:400,width:400};addPropertyControls(FramerT52l5yY3d,{variant:{options:[\"gjM3DEHAT\",\"vbcYpfAtk\",\"c9E3xdLTj\",\"bb98BwDG8\",\"U15EtORDk\",\"uzGRQqXP1\"],optionTitles:[\"Video\",\"Video - Hover\",\"Video - Phone\",\"Text \",\"Text - 2\",\"Text - Phone\"],title:\"Variant\",type:ControlType.Enum},wGnrtfK37:{defaultValue:{borderBottomWidth:1,borderColor:\"rgb(96, 83, 30)\",borderLeftWidth:1,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border\",type:ControlType.Border},r54OoVNdR:{defaultValue:\"     It\u2019s like I never have to worry about money.\",displayTextArea:true,placeholder:\"\",title:\"Text\",type:ControlType.String},MQHFTZVGb:{defaultValue:\"Kristopher\",displayTextArea:false,title:\"Name\",type:ControlType.String},h0jhNts2a:{defaultValue:2013,displayStepper:true,title:\"Member from\",type:ControlType.Number},bBcMuZgDJ:{__defaultAssetReference:\"data:framer/asset-reference,LvO8oUPLeSxS74TCmIqCJo8sF8.png?originalFilename=avatar.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,LvO8oUPLeSxS74TCmIqCJo8sF8.png?originalFilename=avatar.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},gPBYAo48r:{defaultValue:'var(--token-bb31a71f-e362-4562-b827-79b43543b9e1, rgb(255, 211, 31)) /* {\"name\":\"Gold\"} */',title:\"Color\",type:ControlType.Color},CnWmyA5rQ:{defaultValue:'var(--token-bc5c9f0a-f2de-4c5c-9cc7-20389a293b3d, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Text Color\",type:ControlType.Color}});addFonts(FramerT52l5yY3d,[{explicitInter:true,fonts:[{family:\"Haffer Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/jG9PZjh3OFT09PXweD8RX0WNfg.otf\"},{family:\"Haffer Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/ge7K7GHsqtsC0L8HwUhOUYxb4.otf\"}]},...PlayIconFonts,...WordHighlighterFonts,...PossibleVideoOverlayFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT52l5yY3d\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"wGnrtfK37\\\":\\\"border\\\",\\\"r54OoVNdR\\\":\\\"text\\\",\\\"MQHFTZVGb\\\":\\\"name1\\\",\\\"h0jhNts2a\\\":\\\"memberFrom\\\",\\\"bBcMuZgDJ\\\":\\\"image\\\",\\\"gPBYAo48r\\\":\\\"color\\\",\\\"CnWmyA5rQ\\\":\\\"textColor\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vbcYpfAtk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c9E3xdLTj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bb98BwDG8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U15EtORDk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uzGRQqXP1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PossibleVideoOverlay", "props", "videoUrl", "quote", "name", "membership", "backgroundColor", "font", "isOpen", "setIsOpen", "ye", "isPlaying", "setIsPlaying", "videoRef", "pe", "buttonRef", "getEmbedUrl", "url", "youtubeMatch", "vimeoMatch", "removeHover", "event", "window", "u", "l", "p", "Ga", "e", "addPropertyControls", "ControlType", "PlayIconFonts", "getFonts", "sDoP57UhI_default", "WordHighlighterFonts", "WordHighlighter", "PossibleVideoOverlayFonts", "PossibleVideoOverlay", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toString", "value", "prefix", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "color", "height", "id", "image", "memberFrom", "name1", "text", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wGnrtfK37", "r54OoVNdR", "MQHFTZVGb", "h0jhNts2a", "bBcMuZgDJ", "gPBYAo48r", "CnWmyA5rQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1b7tj4i", "args", "onMouseLeaveq21yuo", "onTap1p699ge", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "textContent", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerT52l5yY3d", "withCSS", "T52l5yY3d_default", "addPropertyControls", "ControlType", "addFonts"]
}
