{"version":3,"file":"ERoCUVvpI.C0sX85XL.mjs","names":["useState","value","Component","serializationHash","variantClassNames","convertFromBoolean","transition1","Transition","Variants","getProps","createLayoutDependency","Component","useRef","css","OpenNowLabel","OpenNowLabelInfo","Phosphor","Main","useRef"],"sources":["https:/framer.com/m/framer/utils.js@^0.9.0","https:/framerusercontent.com/modules/A1Wo2rDh8fNN0y9T3nus/zhXA8pF4wq3u29RhhTIv/Examples.js","https:/framerusercontent.com/modules/sSkuJ3WxWWvCaTbc8DKA/NjaEAMt92ujW10yjLJkl/BgImage.js","https:/framerusercontent.com/modules/vehUzL5KGign24tVBiUe/1qemlrbXw9DtVhMMIfw2/CMTg4TgGq.js","https:/framerusercontent.com/modules/JH4ydgsQMkVkdxjFnZbj/ny78vl9RBlgqlo0LKGAB/ERoCUVvpI.js"],"sourcesContent":["export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef,useEffect,useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\",terms:\"\",selectedText:\"\",suggestedCities:[],activeCity:\"\",itemType:\"city\",isDropdownOpen:false,externalCity:\"\",isTopRated:false,isMostReview:false,isAppointmentRequired:false,isEyebrowRemoval:false,openNowFilter:\"000\"});export function withRotate(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{rotate:90},transition:{duration:2}});});}export function withHover(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,whileHover:{scale:1.05}});});}export function withRandomColor(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});});}export function withSetSearch(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();const[value,setValue]=useState(\"\");const handleChange=e=>{const newStoreVal={...store,terms:e.target.value,selectedText:e.target.value};if(!e.target.value){setStore({...newStoreVal,itemType:\"city\"});}else if(Number.isNaN(Number(e.target.value))){setStore({...newStoreVal,itemType:\"searchSubstring\"});}else{setStore({...newStoreVal,itemType:\"zipCode\"});}};const handleKeyDown=e=>{if(e.code===\"ArrowDown\"){if(store.suggestedCities.length===0){return;}if(!store.activeCity){setStore(s=>({...s,activeCity:s.suggestedCities[0]}));return;}const currentIndex=store.suggestedCities.findIndex(item=>item===store.activeCity);if(currentIndex<store.suggestedCities.length-1){setStore(s=>({...s,activeCity:s.suggestedCities[currentIndex+1]}));}return;}if(e.code===\"ArrowUp\"){if(store.suggestedCities.length===0){return;}if(!store.activeCity){setStore(s=>({...s,activeCity:s.suggestedCities[s.suggestedCities.length-1]}));return;}const currentIndex=store.suggestedCities.findIndex(item=>item===store.activeCity);if(currentIndex>0){setStore(s=>({...s,activeCity:s.suggestedCities[currentIndex-1]}));}return;}if(e.code===\"Enter\"){if(!store.activeCity){return;}setStore(s=>({...s,selectedText:s.activeCity,itemType:\"city\"}));e.target.value=store.activeCity;return;}if(e.code===\"Escape\"){setStore(s=>({...s,isDropdownOpen:false}));return;}};const handleFocus=e=>{setStore(s=>({...s,isDropdownOpen:true}));e.target.select();};const handleBlur=()=>{setTimeout(()=>{setStore(s=>({...s,isDropdownOpen:false}));},200);};useEffect(()=>{if(!store.externalCity){return;}setValue(store.externalCity);setStore(s=>({...s,selectedText:store.externalCity,itemType:\"city\",externalCity:\"\"}));},[store.externalCity]);useEffect(()=>{const search=window.location.search;const params=new URLSearchParams(search);params.forEach((value,key)=>{console.log(`param[${key}]=${value}`);});if(params.has(\"city\")&&store.selectedText!==params.get(\"city\")){setStore(s=>({...s,externalCity:params.get(\"city\")}));}},[]);return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onChange:handleChange,onKeyDown:handleKeyDown,onFocus:handleFocus,onBlur:handleBlur,defaultValue:value});});}export function withSearchDropdown(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,search:store.terms,activeName:store.activeCity,isOpen:store.isDropdownOpen&&Boolean(store.terms)});});}export function withSearch(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,searchValue:store.selectedText?store.selectedText:props.city,itemType:store.itemType,minRating:store.isTopRated?4.6:0,minReviews:store.isMostReview?300:0,appointmentRequired:store.isAppointmentRequired?\"true\":\"\",openNowFilter:store.openNowFilter,isEyebrowRemoval:store.isEyebrowRemoval});});}export function withChangeSuggestion(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();const handleClick=()=>{if(!props.children.props.text){return;}console.log(\"handleClick\",props);setStore(s=>({...s,externalCity:props.children.props.text}));};useEffect(()=>{setStore(s=>{return{...s,suggestedCities:[...s.suggestedCities,props.children.props.text]};});return()=>{setStore(s=>{return{...s,suggestedCities:s.suggestedCities.filter(item=>item!==props.children.props.text)};});};},[props.children.props.text]);return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick});});}export function withCurrentPosition(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[label,setLabel]=useState(\"Current location\");const[store,setStore]=useStore();const showError=error=>{console.log(error.message);setState(\"Error\");setLabel(`Error: ${error.code}`);};const getPosition=position=>{const{latitude,longitude}=position.coords;const API_KEY=\"681d07257ff2c928815297ijc744fbb\";fetch(`https://geocode.maps.co/reverse?lat=${latitude}&lon=${longitude}&api_key=${API_KEY}`).then(response=>response.json()).then(result=>{const city=result.address.city;if(city){setState(\"Active\");setStore(s=>({...s,externalCity:city}));}}).catch(error=>{console.log(error);setState(\"Error\");});};const handleClick=()=>{if(window.navigator.geolocation){setState(\"Active\");window.navigator.geolocation.getCurrentPosition(getPosition,showError);}};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state,title:label});});}export function withTopRated(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[store,setStore]=useStore();const handleClick=()=>{setStore(s=>({...s,isTopRated:state===\"Inactive\"}));setState(activity=>activity===\"Active\"?\"Inactive\":\"Active\");};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state});});}export function withMostReviews(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[store,setStore]=useStore();const handleClick=()=>{setStore(s=>({...s,isMostReview:state===\"Inactive\"}));setState(activity=>activity===\"Active\"?\"Inactive\":\"Active\");};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state});});}export function withAppointmentRequired(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[store,setStore]=useStore();const handleClick=()=>{setStore(s=>({...s,isAppointmentRequired:state===\"Inactive\"}));setState(activity=>activity===\"Active\"?\"Inactive\":\"Active\");};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state});});}export function withOpenNow(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[store,setStore]=useStore();const handleClick=()=>{const now=new Date;const filterCode=`${now.getUTCDay()+1}${now.getUTCHours()}`;setStore(s=>({...s,openNowFilter:state===\"Inactive\"?filterCode:\"000\"}));setState(activity=>activity===\"Active\"?\"Inactive\":\"Active\");};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state});});}export function withEyebrowRemoval(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[state,setState]=useState(\"Inactive\");const[store,setStore]=useStore();const handleClick=()=>{setStore(s=>({...s,isEyebrowRemoval:state===\"Inactive\"}));setState(activity=>activity===\"Active\"?\"Inactive\":\"Active\");};return /*#__PURE__*/_jsx(Component,{ref:ref,...props,onClick:handleClick,variant:state});});}export function withSearchCard(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[timeCode,setTimeCode]=useState(\"-\");const getNthSundayOfTheMonth=(year,month,n)=>{const date=new Date(Date.UTC(year,month,1));const weekDay=date.getUTCDay();if(weekDay!==0){date.setUTCDate(weekDay===6?2:8-weekDay);}date.setUTCDate(date.getDate()+(n-1)*7);return date;};const getTimezoneHotpoints=now=>{const currentYear=now.getUTCFullYear();const springDate=getNthSundayOfTheMonth(currentYear,2,2)// get second sunday of the March\n;springDate.setUTCHours(2,0,0,0);const fallDate=getNthSundayOfTheMonth(currentYear,10,1)// get first sunday of the November\n;fallDate.setUTCHours(2,0,0,0);return[springDate.getTime(),fallDate.getTime()];};useEffect(()=>{const now=new Date;const[springDate,fallDate]=getTimezoneHotpoints(now);const time=now.getTime();const timeShift=time>springDate&&time<fallDate?1:0;setTimeCode(`${now.getUTCDay()+1}${now.getUTCHours()+timeShift}`);},[]);return /*#__PURE__*/_jsx(Component,{ref:ref,...props,currentTimeCode:timeCode});});}\nexport const __FramerMetadata__ = {\"exports\":{\"withAppointmentRequired\":{\"type\":\"reactHoc\",\"name\":\"withAppointmentRequired\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTopRated\":{\"type\":\"reactHoc\",\"name\":\"withTopRated\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withChangeSuggestion\":{\"type\":\"reactHoc\",\"name\":\"withChangeSuggestion\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSetSearch\":{\"type\":\"reactHoc\",\"name\":\"withSetSearch\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEyebrowRemoval\":{\"type\":\"reactHoc\",\"name\":\"withEyebrowRemoval\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSearchCard\":{\"type\":\"reactHoc\",\"name\":\"withSearchCard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSearchDropdown\":{\"type\":\"reactHoc\",\"name\":\"withSearchDropdown\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSearch\":{\"type\":\"reactHoc\",\"name\":\"withSearch\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withOpenNow\":{\"type\":\"reactHoc\",\"name\":\"withOpenNow\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCurrentPosition\":{\"type\":\"reactHoc\",\"name\":\"withCurrentPosition\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withMostReviews\":{\"type\":\"reactHoc\",\"name\":\"withMostReviews\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";export default function BgImage(props){const{imageUrl,width,height}=props;return /*#__PURE__*/_jsx(Frame,{width:width,height:height,background:\"#000\",position:\"relative\",overflow:\"hidden\",children:/*#__PURE__*/_jsx(motion.div,{style:{position:\"absolute\",top:0,left:0,width:\"100%\",height:\"100%\",background:imageUrl?`url(${imageUrl}) center/cover no-repeat`:\"\"}})});}addPropertyControls(BgImage,{imageUrl:{type:ControlType.Link,title:\"Image URL\",defaultValue:\"https://placehold.co/150\"}});BgImage.defaultProps={width:\"100%\",height:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BgImage\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BgImage.map","// Generated by Framer (d65dc2b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-Uv9a1\";const variantClassNames={yvxwm5zmo:\"framer-v-18yda72\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const convertFromBoolean=(value,activeLocale)=>{if(value){return 1;}else{return 0;}};const toNumber=value=>{if(typeof value===\"number\"&&Number.isFinite(value))return value;if(typeof value!==\"string\")return 0;const parsedNumber=parseFloat(value);return typeof parsedNumber===\"number\"&&Number.isFinite(parsedNumber)?parsedNumber:0;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({currentTimeCode,height,id,width,workingHours,...props})=>{return{...props,DAlz0S6TF:workingHours??props.DAlz0S6TF??\"-\",M7vwbI5JA:currentTimeCode??props.M7vwbI5JA??\"-\"};};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,DAlz0S6TF,M7vwbI5JA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yvxwm5zmo\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const opacity=toNumber(convertFromBoolean(contains(DAlz0S6TF,M7vwbI5JA),activeLocale));const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=contains(DAlz0S6TF,M7vwbI5JA);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18yda72\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yvxwm5zmo\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0.46)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity,...style},children:visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Open Now\"})}),className:\"framer-ez34qj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S_oD7A1yK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Uv9a1.framer-ppxjzb, .framer-Uv9a1 .framer-ppxjzb { display: block; }\",\".framer-Uv9a1.framer-18yda72 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: min-content; }\",\".framer-Uv9a1 .framer-ez34qj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51.2\n * @framerIntrinsicWidth 111.767\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"DAlz0S6TF\":\"workingHours\",\"M7vwbI5JA\":\"currentTimeCode\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCMTg4TgGq=withCSS(Component,css,\"framer-Uv9a1\");export default FramerCMTg4TgGq;FramerCMTg4TgGq.displayName=\"OpenNowLabel\";FramerCMTg4TgGq.defaultProps={height:51.2,width:111.767};addPropertyControls(FramerCMTg4TgGq,{DAlz0S6TF:{defaultValue:\"-\",displayTextArea:true,title:\"workingHours\",type:ControlType.String},M7vwbI5JA:{defaultValue:\"-\",title:\"currentTimeCode\",type:ControlType.String}});addFonts(FramerCMTg4TgGq,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCMTg4TgGq\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"111.767\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"DAlz0S6TF\\\":\\\"workingHours\\\",\\\"M7vwbI5JA\\\":\\\"currentTimeCode\\\"}\",\"framerIntrinsicHeight\":\"51.2\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMTg4TgGq.map","// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import BgImage from\"https://framerusercontent.com/modules/sSkuJ3WxWWvCaTbc8DKA/NjaEAMt92ujW10yjLJkl/BgImage.js\";import{withSearchCard}from\"https://framerusercontent.com/modules/A1Wo2rDh8fNN0y9T3nus/zhXA8pF4wq3u29RhhTIv/Examples.js\";import OpenNowLabel,*as OpenNowLabelInfo from\"https://framerusercontent.com/modules/vehUzL5KGign24tVBiUe/1qemlrbXw9DtVhMMIfw2/CMTg4TgGq.js\";import Main from\"https://framerusercontent.com/modules/UAnqCP0pkZN4bYJkZUoE/aTPPyDWhg191oFFnxzBK/GrSSRtrXb.js\";const OpenNowLabelFonts=getFonts(OpenNowLabel);const OpenNowLabelWithSearchCardsgyjb0WithMappedReactProps3cltag=withMappedReactProps(withCodeBoundaryForOverrides(OpenNowLabel,{nodeId:\"HNPNDYGYn\",override:withSearchCard,scopeId:\"ERoCUVvpI\"}),OpenNowLabelInfo);const BgImageFonts=getFonts(BgImage);const PhosphorFonts=getFonts(Phosphor);const MainFonts=getFonts(Main);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-co6Uu\";const variantClassNames={D0P1yk3u3:\"framer-v-1cekaqn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:20};const transition1={damping:58,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const greaterThan=(a,b)=>{return typeof a===\"number\"&&typeof b===\"number\"?a>b:false;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"fill\";}else{return\"bold\";}};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition3={delay:.6,duration:.5,ease:[.16,.46,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({address,bookingUrl,height,id,imageUrl,isAppointmentRequired,name1,phone,rating,reviews,siteUrl,width,workingHours,...props})=>{return{...props,ao8LFAgxK:address??props.ao8LFAgxK??\"123 Main St, Suite 100, New York\",BkqHQtpi1:imageUrl??props.BkqHQtpi1,kVFjmnxNi:reviews??props.kVFjmnxNi,Nc9w69HVl:rating??props.Nc9w69HVl,NiLyCZGZa:bookingUrl??props.NiLyCZGZa,pis4AHUB7:workingHours??props.pis4AHUB7,qhOODWkGo:siteUrl??props.qhOODWkGo,uxsOeBRHx:phone??props.uxsOeBRHx??\"(555) 123-4567\",XUT3hZYmm:name1??props.XUT3hZYmm??\"Clear Canvas Laser\",y0xlPapBc:isAppointmentRequired??props.y0xlPapBc??true};};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,XUT3hZYmm,Nc9w69HVl,ao8LFAgxK,uxsOeBRHx,NiLyCZGZa,BkqHQtpi1,qhOODWkGo,kVFjmnxNi,y0xlPapBc,pis4AHUB7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D0P1yk3u3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=numberToString(Nc9w69HVl,{locale:\"\",maximumFractionDigits:1,minimumFractionDigits:1,minimumIntegerDigits:1,notation:\"standard\",style:\"decimal\"},activeLocaleCode);const textContent1=numberToString(kVFjmnxNi,{locale:\"\",maximumFractionDigits:0,minimumFractionDigits:0,notation:\"standard\",style:\"decimal\"},activeLocaleCode);const visible=isSet(NiLyCZGZa);const visible1=isSet(qhOODWkGo);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1cekaqn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D0P1yk3u3\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19li3nh\",layoutDependency:layoutDependency,layoutId:\"wUU1Xjsrt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+0+16,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sgyjb0-container\",layoutDependency:layoutDependency,layoutId:\"HNPNDYGYn-container\",nodeId:\"HNPNDYGYn\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(OpenNowLabelWithSearchCardsgyjb0WithMappedReactProps3cltag,{DAlz0S6TF:pis4AHUB7,height:\"100%\",id:\"HNPNDYGYn\",layoutId:\"HNPNDYGYn\",M7vwbI5JA:\"-\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g2xalf\",\"data-framer-name\":\"Image Box\",layoutDependency:layoutDependency,layoutId:\"aKCnQPX0Y\",style:{backgroundColor:\"rgba(69, 205, 255, 0)\",borderBottomLeftRadius:21,borderBottomRightRadius:21,borderTopLeftRadius:21,borderTopRightRadius:21},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy6yjz\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"jsGW0F3Ew\",style:{backgroundColor:\"rgb(33, 197, 93)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Open now\"})}),className:\"framer-1x2g792\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"IamnNAfZh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejmcfz\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"Kwg1_piWe\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12r6cks-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ttXzzDm6e-container\",nodeId:\"ttXzzDm6e\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(BgImage,{height:\"100%\",id:\"ttXzzDm6e\",imageUrl:BkqHQtpi1,layoutId:\"ttXzzDm6e\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a4s10z\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"qDcW5FI1w\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szdfub\",layoutDependency:layoutDependency,layoutId:\"xTjm7wJyF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef53b8c4-fc95-441d-ad02-1ec321aa6502, rgb(0, 0, 0)))\"},children:\"Clear Canvas Laser\"})}),className:\"framer-wx2g78\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"aVgS7TiNr\",style:{\"--extracted-r6o4lv\":\"var(--token-ef53b8c4-fc95-441d-ad02-1ec321aa6502, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XUT3hZYmm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h7xe5j\",\"data-framer-name\":\"Stars Wrapper\",layoutDependency:layoutDependency,layoutId:\"pf18wd1bc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pdmuzf\",layoutDependency:layoutDependency,layoutId:\"oS66_KFiH\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mk5wbo-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EJo69481a-container\",nodeId:\"EJo69481a\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(250, 204, 20)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"EJo69481a\",layoutId:\"EJo69481a\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:convertFromBoolean(greaterThan(Nc9w69HVl,.5),activeLocale),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y5t8zu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bFseHs1zO-container\",nodeId:\"bFseHs1zO\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(250, 204, 20)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"bFseHs1zO\",layoutId:\"bFseHs1zO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:convertFromBoolean(greaterThan(Nc9w69HVl,1.5),activeLocale),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gyoirv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bobgbK5tL-container\",nodeId:\"bobgbK5tL\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(250, 204, 20)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"bobgbK5tL\",layoutId:\"bobgbK5tL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:convertFromBoolean(greaterThan(Nc9w69HVl,2.5),activeLocale),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5hs1e9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sqVoGvMAT-container\",nodeId:\"sqVoGvMAT\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(250, 204, 20)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"sqVoGvMAT\",layoutId:\"sqVoGvMAT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:convertFromBoolean(greaterThan(Nc9w69HVl,3.5),activeLocale),width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uw3zj4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jYY1aBEwk-container\",nodeId:\"jYY1aBEwk\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(250, 204, 20)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"jYY1aBEwk\",layoutId:\"jYY1aBEwk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:convertFromBoolean(greaterThan(Nc9w69HVl,4.5),activeLocale),width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f1df3bb-bd76-4843-b5e6-a552d8a054c2, rgb(13, 13, 13)))\"},children:\"4.9\"})}),className:\"framer-ncxk4i\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"KHwVj98kV\",style:{\"--extracted-r6o4lv\":\"var(--token-2f1df3bb-bd76-4843-b5e6-a552d8a054c2, rgb(13, 13, 13))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sfksp0\",layoutDependency:layoutDependency,layoutId:\"l5arvCAjq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"(\"})}),className:\"framer-1tsjkca\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VvaBmf8BM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"0\"})}),className:\"framer-s6kv2e\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"u0QgPNiNY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\" reviews\"})}),className:\"framer-2gxvak\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"N9LRIkIwX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\")\"})}),className:\"framer-1lqyudo\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EuNDb31jn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ocyxi\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"fVHu6pCvU\",style:{backgroundColor:\"rgba(194, 195, 196, 0.22)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d1a45h\",layoutDependency:layoutDependency,layoutId:\"pRrj8BLMx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n87vpc\",\"data-framer-name\":\"Location Wrapper\",layoutDependency:layoutDependency,layoutId:\"PXVTfJRxD\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1kckk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"THkAeJlRX-container\",nodeId:\"THkAeJlRX\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MapPin\",id:\"THkAeJlRX\",layoutId:\"THkAeJlRX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99)))\"},children:\"123 Main St, Suite 100, New York\"})}),className:\"framer-96wmn2\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"brvn51aNU\",style:{\"--extracted-r6o4lv\":\"var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ao8LFAgxK,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aqayik\",\"data-framer-name\":\"Phone Wrapper\",layoutDependency:layoutDependency,layoutId:\"jCohhsq3x\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u4jmnv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZAAOHfmw8-container\",nodeId:\"ZAAOHfmw8\",rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Phone\",id:\"ZAAOHfmw8\",layoutId:\"ZAAOHfmw8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99)))\"},children:\"(555) 123-4567\"})}),className:\"framer-su4ymy\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"FGTmKdLX5\",style:{\"--extracted-r6o4lv\":\"var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uxsOeBRHx,verticalAlignment:\"top\",withExternalLayout:true}),y0xlPapBc&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(93, 101, 112))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(199, 46, 0))\"},children:\"*\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99)))\"},children:\" \"}),\"Appointment required\"]})}),className:\"framer-5c1j19\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"DSiPiQKih\",style:{\"--extracted-1w3ko1f\":\"rgb(199, 46, 0)\",\"--extracted-3sq8v0\":\"var(--token-7ee768c9-0351-4e9e-98b3-21727fd0cbac, rgb(99, 99, 99))\",\"--extracted-r6o4lv\":\"rgb(93, 101, 112)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cnp1yj\",layoutDependency:layoutDependency,layoutId:\"FHBft18GM\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max((${componentViewport?.width||\"100vw\"} + 14px) / 0, 1px)`,y:(componentViewport?.y||0)+0+725+-28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-yb5q81-container\",\"data-framer-appear-id\":\"yb5q81\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"RaLGquR8Y-container\",nodeId:\"RaLGquR8Y\",optimized:true,rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Main,{height:\"100%\",hIBkNpkgA:true,id:\"RaLGquR8Y\",layoutId:\"RaLGquR8Y\",PjUGkw6rw:NiLyCZGZa,SbHorswjl:\"Book Consultation\",style:{width:\"100%\"},variant:\"e6qfKAACI\",width:\"100%\",WLxz46KxO:\"CaretRight\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max((${componentViewport?.width||\"100vw\"} + 14px) / 0, 1px)`,y:(componentViewport?.y||0)+0+725+-28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-7rlb10-container\",\"data-framer-appear-id\":\"7rlb10\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"tGDTUw5kK-container\",nodeId:\"tGDTUw5kK\",optimized:true,rendersWithMotion:true,scopeId:\"ERoCUVvpI\",children:/*#__PURE__*/_jsx(Main,{height:\"100%\",hIBkNpkgA:true,id:\"tGDTUw5kK\",layoutId:\"tGDTUw5kK\",SbHorswjl:\"View Details\",style:{width:\"100%\"},variant:\"WEx1bJSXP\",width:\"100%\",WLxz46KxO:\"CaretRight\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-co6Uu.framer-1nqgohi, .framer-co6Uu .framer-1nqgohi { display: block; }\",\".framer-co6Uu.framer-1cekaqn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 600px; }\",\".framer-co6Uu .framer-19li3nh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-sgyjb0-container { flex: none; height: auto; position: absolute; right: 16px; top: 16px; width: auto; z-index: 3; }\",\".framer-co6Uu .framer-g2xalf { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 320px; justify-content: flex-start; overflow: hidden; padding: 18px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-co6Uu .framer-1cy6yjz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 12px 7px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-co6Uu .framer-1x2g792, .framer-co6Uu .framer-ncxk4i, .framer-co6Uu .framer-1tsjkca, .framer-co6Uu .framer-s6kv2e, .framer-co6Uu .framer-2gxvak, .framer-co6Uu .framer-1lqyudo, .framer-co6Uu .framer-su4ymy, .framer-co6Uu .framer-5c1j19 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-co6Uu .framer-1ejmcfz { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55%; justify-content: center; left: calc(48.648648648648674% - 107.83783783783785% / 2); overflow: hidden; padding: 20px; position: absolute; width: 108%; z-index: 2; }\",\".framer-co6Uu .framer-12r6cks-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-co6Uu .framer-a4s10z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-szdfub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-wx2g78 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-co6Uu .framer-h7xe5j, .framer-co6Uu .framer-n87vpc, .framer-co6Uu .framer-aqayik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-1pdmuzf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-co6Uu .framer-mk5wbo-container, .framer-co6Uu .framer-1y5t8zu-container, .framer-co6Uu .framer-gyoirv-container, .framer-co6Uu .framer-5hs1e9-container, .framer-co6Uu .framer-uw3zj4-container, .framer-co6Uu .framer-1d1kckk-container, .framer-co6Uu .framer-1u4jmnv-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-co6Uu .framer-sfksp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-co6Uu .framer-2ocyxi { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-co6Uu .framer-d1a45h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-96wmn2 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-co6Uu .framer-1cnp1yj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; min-height: 19px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-co6Uu .framer-yb5q81-container, .framer-co6Uu .framer-7rlb10-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 560\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XUT3hZYmm\":\"name1\",\"Nc9w69HVl\":\"rating\",\"ao8LFAgxK\":\"address\",\"uxsOeBRHx\":\"phone\",\"NiLyCZGZa\":\"bookingUrl\",\"BkqHQtpi1\":\"imageUrl\",\"qhOODWkGo\":\"siteUrl\",\"kVFjmnxNi\":\"reviews\",\"y0xlPapBc\":\"isAppointmentRequired\",\"pis4AHUB7\":\"workingHours\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerERoCUVvpI=withCSS(Component,css,\"framer-co6Uu\");export default FramerERoCUVvpI;FramerERoCUVvpI.displayName=\"Listing-Card\";FramerERoCUVvpI.defaultProps={height:560,width:600};addPropertyControls(FramerERoCUVvpI,{XUT3hZYmm:{defaultValue:\"Clear Canvas Laser\",displayTextArea:false,title:\"Name\",type:ControlType.String},Nc9w69HVl:{defaultValue:0,title:\"Rating\",type:ControlType.Number},ao8LFAgxK:{defaultValue:\"123 Main St, Suite 100, New York\",displayTextArea:false,title:\"Address\",type:ControlType.String},uxsOeBRHx:{defaultValue:\"(555) 123-4567\",displayTextArea:false,title:\"Phone\",type:ControlType.String},NiLyCZGZa:{title:\"BookingUrl\",type:ControlType.Link},BkqHQtpi1:{title:\"ImageUrl\",type:ControlType.Link},qhOODWkGo:{title:\"SiteUrl\",type:ControlType.Link},kVFjmnxNi:{defaultValue:0,title:\"Reviews\",type:ControlType.Number},y0xlPapBc:{defaultValue:true,title:\"isAppointmentRequired\",type:ControlType.Boolean},pis4AHUB7:{defaultValue:\"\",displayTextArea:true,title:\"workingHours\",type:ControlType.String}});addFonts(FramerERoCUVvpI,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...OpenNowLabelFonts,...BgImageFonts,...PhosphorFonts,...MainFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerERoCUVvpI\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"XUT3hZYmm\\\":\\\"name1\\\",\\\"Nc9w69HVl\\\":\\\"rating\\\",\\\"ao8LFAgxK\\\":\\\"address\\\",\\\"uxsOeBRHx\\\":\\\"phone\\\",\\\"NiLyCZGZa\\\":\\\"bookingUrl\\\",\\\"BkqHQtpi1\\\":\\\"imageUrl\\\",\\\"qhOODWkGo\\\":\\\"siteUrl\\\",\\\"kVFjmnxNi\\\":\\\"reviews\\\",\\\"y0xlPapBc\\\":\\\"isAppointmentRequired\\\",\\\"pis4AHUB7\\\":\\\"workingHours\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"560\",\"framerIntrinsicWidth\":\"600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}