{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fwOoPlNa1SJstQwswFA4/n8GvyKAE4nc8X4HDe4B2/YckFIlg3V.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/qL4w7vXz6reuG83Jgp7h/IRT7saGNIllQY5EjWpYg/J3Ow6uGfC-0.js", "ssg:https://framerusercontent.com/modules/qL4w7vXz6reuG83Jgp7h/IRT7saGNIllQY5EjWpYg/J3Ow6uGfC.js", "ssg:https://framerusercontent.com/modules/3iwwBwgzqqoHToCBpbNQ/piqsJKDQjEv5m6ptqT72/JeqZLbsLh-0.js", "ssg:https://framerusercontent.com/modules/3iwwBwgzqqoHToCBpbNQ/piqsJKDQjEv5m6ptqT72/JeqZLbsLh.js", "ssg:https://framerusercontent.com/modules/ZQvgVTioxLMWgnmd7O25/VRnys7cnc8X33oFSAyVH/W_rVsbXyg-0.js", "ssg:https://framerusercontent.com/modules/ZQvgVTioxLMWgnmd7O25/VRnys7cnc8X33oFSAyVH/W_rVsbXyg.js"],
  "sourcesContent": ["import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Work Sans-900\"]);export const fonts=[{family:\"Work Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/YckFIlg3V:default\",url:\"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\",weight:\"900\"}];export const css=['.framer-W5gpq .framer-styles-preset-12lj5ox:not(.rich-text-wrapper), .framer-W5gpq .framer-styles-preset-12lj5ox.rich-text-wrapper h3, .framer-W5gpq .framer-styles-preset-12lj5ox.rich-text-wrapper [data-preset-tag=\"h3\"] { --framer-font-family: \"Work Sans\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 900; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, #141719); --framer-text-decoration: none; --framer-text-transform: uppercase; }'];export const className=\"framer-W5gpq\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Online Reservation\"})});export const v1=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Information\"})}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reserve for our WEEKEND BRUNCH or FOR OUR SUMMER GARDEN\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Reservations give you the security of getting a place, especially on popular brunch Sundays..\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"It is NOT possible to reserve for brunch in the summer garden. In case of bad weather, we only reserve for the indoor area to guarantee a place. Depending on capacity, you can move to the outdoor area on site.\"})})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Please note:\"})}),/*#__PURE__*/_jsxs(motion.ul,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-utobz9, var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25)))\"},children:[/*#__PURE__*/_jsx(motion.li,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Reserved tables (applies only to reservations for 1-6 people) can only be allocated for a maximum of two and a half hours during brunch, as these tables are then rebooked.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"If you have made a reservation via our online form, you can easily cancel at any time via the confirmation email. \"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"If you are running late, please give us a short call at +49 (0)30 293 648 26. You can also contact us by email if you can't reach us by phone.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"The reservation expires after 15 minutes at the latest.\"})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"For reservations of 4 or more persons, we request credit card details. We pre-authorize and charge 10\u20AC per person for late cancellations (within 24 hours before the reservation day) or no shows.\",/*#__PURE__*/_jsx(motion.br,{}),\"We kindly ask for timely information in case of changes in the number of persons- at least by email and at the latest before our opening hours on the reserved day. Thank you very much.\"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Participation in the brunch is mandatory.\"})})]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/uDDknYMfKi6MYKAqYgl4/MLUa8sWEv05wm6Qu5tOX/vIWTjDEa1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fwOoPlNa1SJstQwswFA4/n8GvyKAE4nc8X4HDe4B2/YckFIlg3V.js\";import*as localizedValues from\"./J3Ow6uGfC-0.js\";const EmbedFonts=getFonts(Embed);const cycleOrder=[\"qAW3RTxSJ\",\"TNqp0zTER\"];const serializationHash=\"framer-EFAwk\";const variantClassNames={qAW3RTxSJ:\"framer-v-1w5pke9\",TNqp0zTER:\"framer-v-1u6zdwd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={UJeaHYtAQ:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"qAW3RTxSJ\",Mobile:\"TNqp0zTER\"};const getProps=({close,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,ryLnB0VKw:close!==null&&close!==void 0?close:props.ryLnB0VKw,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qAW3RTxSJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ryLnB0VKw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qAW3RTxSJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapb2p0z2=activeVariantCallback(async(...args)=>{if(ryLnB0VKw){const res=await ryLnB0VKw(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TNqp0zTER\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-1w5pke9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qAW3RTxSJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{TNqp0zTER:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({TNqp0zTER:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9ubpa\",\"data-framer-name\":\"NavTrigger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YLPdZGeH5\",onTap:onTapb2p0z2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-npsueq\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"JfR1DYbTn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-aonxt3\",layoutDependency:layoutDependency,layoutId:\"yFMJIHqbi\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtu9wx\",layoutDependency:layoutDependency,layoutId:\"IfCJ0Hpsv\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ltg7bl\",layoutDependency:layoutDependency,layoutId:\"VZtJH6gC_\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:45}})]})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-os4l96\",layoutDependency:layoutDependency,layoutId:\"o4gbYbNyL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Online Reservierung\"})}),className:\"framer-125sgqb\",\"data-framer-name\":\"Online Reservierung\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IGXHo2qtk\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16o21a2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yobmj5tVk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xer41z-container\",layoutDependency:layoutDependency,layoutId:\"nZ9Lh0Y6E-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div id=\"teburio-2PAzf9SJcfuMRDmEr\"></div>\\n<script>(function( d, s, f, js, fjs) {\\n(js = d.createElement(s)), (fjs = d.getElementsByTagName(s)[0]);\\njs.src = f; js.async = 1;\\nfjs.parentNode.insertBefore(js, fjs);\\n})( document, \"script\", \"https://static.teburio.de/w2.js?id=2PAzf9SJcfuMRDmEr&dl=1\");\\n</script>',id:\"nZ9Lh0Y6E\",layoutId:\"nZ9Lh0Y6E\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",...addPropertyOverrides({TNqp0zTER:{html:'<div id=\"teburio-2PAzf9SJcfuMRDmEr\"></div>\\n<script>(function( d, s, f, js, fjs) {\\n(js = d.createElement(s)), (fjs = d.getElementsByTagName(s)[0]);\\njs.src = f; js.async = 1;\\nfjs.parentNode.insertBefore(js, fjs);\\n})( document, \"script\", \"https://static.teburio.de/w2.js?id=2PAzf9SJcfuMRDmEr&height=750\");\\n</script>'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"Wichtige Infos f\\xfcr Ihre Reservierung:\"})}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1q4lcmb\",\"data-styles-preset\":\"vIWTjDEa1\",children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"F\\xfcr den \",/*#__PURE__*/_jsx(motion.strong,{children:\"Brunch\"}),\" kann \",/*#__PURE__*/_jsx(motion.strong,{children:\"nicht im Sommergarten\"}),\" reserviert werden. Um auch bei schlechtem Wetter einen garantierten Platz zu haben, reservieren wir nur im Innenbereich. Es kann vor Ort - je nach Verf\\xfcgbarkeit - in den Au\\xdfenbereich umgezogen werden.\"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"F\\xfcr den \",/*#__PURE__*/_jsx(motion.strong,{children:\"Sommergarten\"}),\" behalten wir uns vor bei kurzfristigem \",/*#__PURE__*/_jsx(motion.strong,{children:\"Wetterumschwung\"}),\" (Regen, Wind, Temperatur, etc) Reservierungen f\\xfcr den Sommergarten vorab zu stornieren. \"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Bei einer Reservierung f\\xfcr den \",/*#__PURE__*/_jsx(motion.strong,{children:\"Sommergarten\"}),\" k\\xf6nnen Sie nach R\\xfccksprache per E-Mail auch in den \",/*#__PURE__*/_jsx(motion.strong,{children:\"Innenbereich\"}),\" ausweichen - sofern dort keine  Veranstaltung stattfindet.\"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Tischreservierungen bis einschlie\\xdflich 6 Personen werden  f\\xfcr \",/*#__PURE__*/_jsx(motion.strong,{children:\"2,5 Stunden\"}),\" vergeben, da die Tische anschlie\\xdfend wieder reserviert sind. \"]})}),/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Brunch\"}),\" \",/*#__PURE__*/_jsx(motion.strong,{children:\"Reservierungen f\\xfcr 1-2 Personen\"}),\" werden automatisch auf unserer \",/*#__PURE__*/_jsx(motion.strong,{children:\"Empore\"}),\" platziert.\"]})}),/*#__PURE__*/_jsx(motion.li,{className:\"text-styles-preset-reset\",\"data-styles-preset\":\"reset\",style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-1sot9ii, var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25)))\"},children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Bei Brunch-\",/*#__PURE__*/_jsx(motion.strong,{children:\"Reservierungen\"}),\" ab 3 Personen \",/*#__PURE__*/_jsx(motion.strong,{children:\"blockieren wir auf ihrer Kreditkarte 3 Tage vorab 10\u20AC pro Person\"}),\", die nur im Falle einer zu sp\\xe4ten Stornierung oder Nichterscheinens (No Show) einbehalten werden (gleiches gilt f\\xfcr Sommergarten-Reservierungen ab 25 Personen). \"]})}),/*#__PURE__*/_jsx(motion.li,{className:\"text-styles-preset-reset\",\"data-styles-preset\":\"reset\",style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-1eblhzk, var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25)))\"},children:/*#__PURE__*/_jsxs(motion.p,{children:[\"\\xdcber die \",/*#__PURE__*/_jsx(motion.strong,{children:\"Best\\xe4tigungsmail\"}),\" k\\xf6nnen Sie Ihre Reservierung bis 24 Stunden vorher \",/*#__PURE__*/_jsx(motion.strong,{children:\"anpassen\"}),\" oder \",/*#__PURE__*/_jsx(motion.strong,{children:\"stornieren\"}),\". \"]})}),/*#__PURE__*/_jsx(motion.li,{className:\"text-styles-preset-reset\",\"data-styles-preset\":\"reset\",style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-eb2l0a, var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25)))\"},children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Wir bitten bei \",/*#__PURE__*/_jsx(motion.strong,{children:\"kurzfristigen\"}),\" \",/*#__PURE__*/_jsx(motion.strong,{children:\"\\xc4nderungen\"}),\" (weniger als 24 Stunden) der Personenzahl und Versp\\xe4tungen uns direkt telefonisch unter (0)30/29364826 zu kontaktieren und uns eine E-Mail (info[at]alte-turnhalle-berlin.de) zu schreiben, sollten Sie uns telefonisch nicht erreichen.\"]})}),/*#__PURE__*/_jsx(motion.li,{className:\"text-styles-preset-reset\",\"data-styles-preset\":\"reset\",style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-1h5e4pk, var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25)))\"},children:/*#__PURE__*/_jsx(motion.p,{children:\"Sp\\xe4testens nach 15 Minuten erlischt Ihre Reservierung.\"})})]})]}),className:\"framer-1yh45qp\",\"data-framer-name\":\"Informationen Reservieren Sie f\\xfcr unseren BRUNCH AM WOCHENENDE oder F\\xdcR UNSEREN SOMMERGARTEN Reservierungen geben Ihnen insbesondere an den beliebten Brunch-Sonntagen die Sicherheit Ihren gew\\xfcnschten Platz zu bekommen. F\\xfcr unseren Brunch entfallen alle Zugangsbeschr\\xe4nkungen (keine 3G-Kontrolle mehr) sowie die Maskenpflicht. Sie haben Fragen zu unseren Hygiene- & Sicherheitsma\\xdfnahmen? Informieren Sie sich hier. Bitte beachten Sie beim Brunch: Reservierte Tische (bis sechs Personen) k\\xf6nnen beim Brunch nur f\\xfcr maximal zweieinhalb Stunden vergeben werden, da diese Tische anschlie\\xdfend wieder reserviert sind. Sollten Sie \\xfcber unser Onlineformular reserviert haben, k\\xf6nnen Sie \\xfcber die Best\\xe4tigungsmail bequem jederzeit stornieren. Wenn Sie sich versp\\xe4ten sollten, bitten wir um einen kurzen Anruf unter + 49 (0)30 293 648 26. Gerne auch per Mail, sollten Sie uns telefonisch nicht erreichen. Sp\\xe4testens nach 30 Minuten erlischt die Reservierung.\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"BI8XlyjAv\",style:{\"--extracted-1eblhzk\":\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",\"--extracted-1h5e4pk\":\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",\"--extracted-1sot9ii\":\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",\"--extracted-eb2l0a\":\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EFAwk.framer-11ynjy6, .framer-EFAwk .framer-11ynjy6 { display: block; }\",\".framer-EFAwk.framer-1w5pke9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-height: 700px; max-width: 870px; overflow: auto; padding: 24px; position: relative; width: 720px; }\",\".framer-EFAwk .framer-1e9ubpa { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: absolute; right: 24px; top: 24px; width: min-content; z-index: 1; }\",\".framer-EFAwk .framer-npsueq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: relative; width: 18px; }\",\".framer-EFAwk .framer-aonxt3, .framer-EFAwk .framer-jtu9wx, .framer-EFAwk .framer-1ltg7bl { bottom: 8px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 8px; }\",\".framer-EFAwk .framer-os4l96 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EFAwk .framer-125sgqb, .framer-EFAwk .framer-1yh45qp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-EFAwk .framer-16o21a2 { align-content: flex-start; align-items: flex-start; 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-EFAwk .framer-xer41z-container { flex: none; height: 700px; position: relative; width: 305px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EFAwk.framer-1w5pke9, .framer-EFAwk .framer-1e9ubpa, .framer-EFAwk .framer-os4l96, .framer-EFAwk .framer-16o21a2 { gap: 0px; } .framer-EFAwk.framer-1w5pke9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-EFAwk.framer-1w5pke9 > :first-child, .framer-EFAwk .framer-1e9ubpa > :first-child { margin-top: 0px; } .framer-EFAwk.framer-1w5pke9 > :last-child, .framer-EFAwk .framer-1e9ubpa > :last-child { margin-bottom: 0px; } .framer-EFAwk .framer-1e9ubpa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-EFAwk .framer-os4l96 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-EFAwk .framer-os4l96 > :first-child, .framer-EFAwk .framer-16o21a2 > :first-child { margin-left: 0px; } .framer-EFAwk .framer-os4l96 > :last-child, .framer-EFAwk .framer-16o21a2 > :last-child { margin-right: 0px; } .framer-EFAwk .framer-16o21a2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-EFAwk.framer-v-1u6zdwd.framer-1w5pke9 { max-height: unset; padding: 10px 24px 24px 24px; width: 342px; }\",\".framer-EFAwk.framer-v-1u6zdwd .framer-1e9ubpa { top: 23px; }\",\".framer-EFAwk.framer-v-1u6zdwd .framer-16o21a2 { flex-direction: column; }\",\".framer-EFAwk.framer-v-1u6zdwd .framer-xer41z-container { height: 750px; order: 0; width: 100%; }\",\".framer-EFAwk.framer-v-1u6zdwd .framer-1yh45qp { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EFAwk.framer-v-1u6zdwd .framer-16o21a2 { gap: 0px; } .framer-EFAwk.framer-v-1u6zdwd .framer-16o21a2 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-EFAwk.framer-v-1u6zdwd .framer-16o21a2 > :first-child { margin-top: 0px; } .framer-EFAwk.framer-v-1u6zdwd .framer-16o21a2 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 700\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"870px\",null,\"700px\"]},\"TNqp0zTER\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"870px\",null,null]}}}\n * @framerVariables {\"ryLnB0VKw\":\"close\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ3Ow6uGfC=withCSS(Component,css,\"framer-EFAwk\");export default FramerJ3Ow6uGfC;FramerJ3Ow6uGfC.displayName=\"Modal Reservierung\";FramerJ3Ow6uGfC.defaultProps={height:700,width:720};addPropertyControls(FramerJ3Ow6uGfC,{variant:{options:[\"qAW3RTxSJ\",\"TNqp0zTER\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ryLnB0VKw:{title:\"Close\",type:ControlType.EventHandler}});addFonts(FramerJ3Ow6uGfC,[{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\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]},...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ3Ow6uGfC\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ryLnB0VKw\\\":\\\"close\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"720\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"870px\\\",null,\\\"700px\\\"]},\\\"TNqp0zTER\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"870px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"700\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J3Ow6uGfC.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Rental inquiry\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b74823f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/fwOoPlNa1SJstQwswFA4/n8GvyKAE4nc8X4HDe4B2/YckFIlg3V.js\";import*as localizedValues from\"./JeqZLbsLh-0.js\";const EmbedFonts=getFonts(Embed);const cycleOrder=[\"W8RwECfNJ\"];const serializationHash=\"framer-LWbAY\";const variantClassNames={W8RwECfNJ:\"framer-v-zorlr5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={UJeaHYtAQ:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({close,height,id,tap,width,...props})=>{return{...props,aVO7Nwsqz:tap!==null&&tap!==void 0?tap:props.aVO7Nwsqz,zou2IpaPi:close!==null&&close!==void 0?close:props.zou2IpaPi};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,aVO7Nwsqz,zou2IpaPi,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"W8RwECfNJ\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1b5ijmf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aVO7Nwsqz){const res=await aVO7Nwsqz(...args);if(res===false)return false;}});const onTap1lplcxj=activeVariantCallback(async(...args)=>{if(zou2IpaPi){const res=await zou2IpaPi(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zorlr5\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"W8RwECfNJ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1b5ijmf,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r94a83\",layoutDependency:layoutDependency,layoutId:\"omkri5QFb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",children:\"Mietanfrage\"})}),className:\"framer-1pkzjew\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"hMYxfgCpz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-114dz5f\",\"data-framer-name\":\"NavTrigger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZaYwFPhSx\",onTap:onTap1lplcxj,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vbd363\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Atqh39jv1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stpkm7\",layoutDependency:layoutDependency,layoutId:\"itt9I3YsS\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a0grwq\",layoutDependency:layoutDependency,layoutId:\"m8rhBWQ50\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vnpvl4\",layoutDependency:layoutDependency,layoutId:\"X_eNowlRX\",style:{backgroundColor:\"var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, rgb(20, 23, 25))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:45}})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fmhnsc-container\",layoutDependency:layoutDependency,layoutId:\"fZI71U1Jy-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!DOCTYPE html>\\n<html lang=\"de\">\\n<style>\\n\\n  .mietanfrage {\\n    font-family: \"DM Sans\", sans-serif;\\n    font-size: 14px;\\n    font-weight: 400;\\n    line-height: 1.5em;\\n    color: #141719;\\n    display: flex;\\n    flex-direction: column;\\n    gap: 16px;\\n    width: 100%;\\n  }\\n\\n  .mietanfrage label.required:after {\\n    content: \"*\";\\n    color: red;\\n    margin-left: 2px;\\n  }\\n\\n  .mietanfrage .disclaimer {\\n    font-size: 12px;\\n    line-height: 1.5em;\\n    margin-top: 4px;\\n  }\\n\\n  .mietanfrage p a {\\n    color: inherit;\\n  }\\n\\n  .mietanfrage .row {\\n    display: flex;\\n    flex-direction: row;\\n    gap: 16px;\\n  }\\n\\n  .mietanfrage .row,\\n  .mietanfrage .item {\\n    width: 100%;\\n  }\\n\\n  .mietanfrage .row .item > * {\\n    width: 100%;\\n  }\\n\\n  .mietanfrage .row .item > label {\\n    display: block;\\n    margin-bottom: 4px;\\n  }\\n\\n  .mietanfrage input,\\n  .mietanfrage textarea,\\n  .mietanfrage select {\\n    border: 1px solid #eee;\\n    padding: 12px;\\n    border-radius: 8px;\\n  }\\n\\n  .mietanfrage input[type=\"date\"] {\\n    appearance: none;\\n    -webkit-appearance: none;\\n    background: white;\\n    min-height: 40px;\\n  }\\n\\n  .mietanfrage select {\\n    appearance: none;\\n    -webkit-appearance: none;\\n    background: white;\\n  }\\n\\n  .mietanfrage button {\\n    appearance: none;\\n    display: block;\\n    width: 100%;\\n    line-height: 1.4em;\\n    outline: none;\\n    border: none;\\n    border-radius: 40px;\\n    padding: 12px 24px;\\n    font-family: \"DM Sans\", sans-serif;\\n    font-weight: 500;\\n    font-size: 14px;\\n    background: linear-gradient(90deg, rgb(77, 77, 255) 0%, rgba(77, 77, 255, 0.42) 100%);\\n    cursor: pointer;\\n    color: rgb(255, 255, 255);\\n  }\\n</style>\\n<form class=\"mietanfrage\" action=\"https://submit-form.com/zQ1TxKfL\">\\n  <input\\n    type=\"hidden\"\\n    name=\"_redirect\"\\n    value=\"https://www.alte-turnhalle-berlin.de/vielen-dank\"\\n  />\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"name\">Ihr Name</label>\\n      <input type=\"text\" id=\"name\" name=\"name\" required=\"\" />\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"email\" class=\"required\">Ihre E-Mail Adresse</label>\\n      <input type=\"email\" id=\"email\" name=\"email\" required=\"\" />\\n      </div>\\n    <div class=\"item\">\\n      <label for=\"phone\" class=\"required\">Ihre Telefonnummer</label>\\n      <input type=\"text\" id=\"phone\" name=\"phone\" required=\"\" />\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"date\" class=\"required\">Wunschtermin</label>\\n      <input type=\"date\" id=\"date\" name=\"date\" placeholder=\"Test\" required=\"\" />\\n    </div>\\n    <div class=\"item\">\\n      <label for=\"alternative-date\" class=\"required\">Ausweichtermin</label>\\n      <input type=\"date\" id=\"alternative-date\" name=\"alternative-date\" required=\"\" />\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"anlass\" class=\"required\">Anlass</label>\\n      <select id=\"anlass\" name=\"anlass\" required=\"\">\\n        <option value=\"Firmenfeier\">Firmenfeier</option>\\n        <option value=\"Sommerfest\">Sommerfest</option>\\n        <option value=\"Weihnachtsfeier\">Weihnachtsfeier</option>\\n        <option value=\"Tagesveranstaltung\">Tagesveranstaltung</option>\\n        <option value=\"Hochzeit\">Hochzeit</option>\\n        <option value=\"Geburtstag\">Geburtstag</option>\\n        <option value=\"Sonstiges\">Sonstiges</option>\\n      </select>\\n    </div>\\n    <div class=\"item\">\\n      <label for=\"pax\" class=\"required\">Gesch\\xe4tzte Personenzahl</label>\\n      <input type=\"number\" id=\"pax\" name=\"pax\" required=\"\" />\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"nachricht\">Ihre Nachricht</label>\\n      <textarea\\n        id=\"nachricht\"\\n        name=\"nachricht\"\\n      ></textarea>\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <label for=\"lead\">Wie sind Sie auf uns aufmerksam geworden?</label>\\n      <select id=\"lead\" name=\"lead\">\\n        <option value=\"Empfehlung\">Empfehlung</option>\\n        <option value=\"Locationportal\">Locationportal</option>\\n        <option value=\"Brunchbesuch\">Brunch Besuch</option>\\n        <option value=\"Social-Media\">Social Media</option>\\n        <option value=\"Suchmaschine\">Suchmaschine</option>\\n        <option value=\"Geburtstag\">Geburtstag</option>\\n        <option value=\"Sonstiges\">Sonstiges</option>\\n      </select>\\n    </div>\\n  </div>\\n  <div class=\"row\">\\n    <div class=\"item\">\\n      <input type=\"hidden\" name=\"_email.subject\" value=\"Mietanfrage an die Alte Turnhalle Berlin\" />\\n      <button type=\"submit\">Anfrage verschicken</button>\\n      <p class=\"disclaimer\">Mit der Versendung erkl\\xe4ren Sie sich einverstanden, dass Ihre Daten zur Bearbeitung Ihres Anliegens verwendet werden. Weitere Informationen und Widerrufshinweise finden Sie in der <a href=\"/datenschutz\">Datenschutzerkl\\xe4rung</a>.\\n    </div>\\n  </div>\\n</form>\\n</html>\\n',id:\"fZI71U1Jy\",layoutId:\"fZI71U1Jy\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})]})})});});const css=['.framer-LWbAY[data-border=\"true\"]::after, .framer-LWbAY [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LWbAY.framer-1uh3mrl, .framer-LWbAY .framer-1uh3mrl { display: block; }\",\".framer-LWbAY.framer-zorlr5 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 714px; justify-content: flex-start; overflow: auto; padding: 24px 24px 24px 24px; position: relative; width: 500px; }\",\".framer-LWbAY .framer-1r94a83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-LWbAY .framer-1pkzjew { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LWbAY .framer-114dz5f { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px 6px 6px 6px; position: relative; width: min-content; }\",\".framer-LWbAY .framer-vbd363 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 18px; }\",\".framer-LWbAY .framer-1stpkm7, .framer-LWbAY .framer-1a0grwq, .framer-LWbAY .framer-vnpvl4 { bottom: 8px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 8px; }\",\".framer-LWbAY .framer-1fmhnsc-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LWbAY.framer-zorlr5, .framer-LWbAY .framer-1r94a83, .framer-LWbAY .framer-114dz5f { gap: 0px; } .framer-LWbAY.framer-zorlr5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-LWbAY.framer-zorlr5 > :first-child, .framer-LWbAY .framer-114dz5f > :first-child { margin-top: 0px; } .framer-LWbAY.framer-zorlr5 > :last-child, .framer-LWbAY .framer-114dz5f > :last-child { margin-bottom: 0px; } .framer-LWbAY .framer-1r94a83 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-LWbAY .framer-1r94a83 > :first-child { margin-left: 0px; } .framer-LWbAY .framer-1r94a83 > :last-child { margin-right: 0px; } .framer-LWbAY .framer-114dz5f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 714\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"aVO7Nwsqz\":\"tap\",\"zou2IpaPi\":\"close\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerJeqZLbsLh=withCSS(Component,css,\"framer-LWbAY\");export default FramerJeqZLbsLh;FramerJeqZLbsLh.displayName=\"Modal Mietanfrage\";FramerJeqZLbsLh.defaultProps={height:714,width:500};addPropertyControls(FramerJeqZLbsLh,{aVO7Nwsqz:{title:\"Tap\",type:ControlType.EventHandler},zou2IpaPi:{title:\"Close\",type:ControlType.EventHandler}});addFonts(FramerJeqZLbsLh,[...EmbedFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJeqZLbsLh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"aVO7Nwsqz\\\":\\\"tap\\\",\\\"zou2IpaPi\\\":\\\"close\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"500\",\"framerIntrinsicHeight\":\"714\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JeqZLbsLh.map", "export const v0=\"Rental Inquiry\";export const v1=\"Reservation\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b74823f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/49rLZMSm1upgJLbzM7LW/UnYQCUa83nFSGfhvKwMZ/AIAUkPGRL.js\";import*as localizedValues from\"./W_rVsbXyg-0.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"cXRkk60jT\"];const serializationHash=\"framer-t1Ymk\";const variantClassNames={cXRkk60jT:\"framer-v-ql37b4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={UJeaHYtAQ:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,tap,tap2,width,...props})=>{return{...props,OlZGG1FI5:tap2!==null&&tap2!==void 0?tap2:props.OlZGG1FI5,xsqfg3pdc:tap!==null&&tap!==void 0?tap:props.xsqfg3pdc};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xsqfg3pdc,OlZGG1FI5,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"cXRkk60jT\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Tt4PbskiMtnl6xx=activeVariantCallback(async(...args)=>{if(xsqfg3pdc){const res=await xsqfg3pdc(...args);if(res===false)return false;}});const Tt4PbskiM1be4jt8=activeVariantCallback(async(...args)=>{if(OlZGG1FI5){const res=await OlZGG1FI5(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];var _getLocalizedValue,_getLocalizedValue1;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ql37b4\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"cXRkk60jT\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jx9wq6-container\",layoutDependency:layoutDependency,layoutId:\"zihqHflZ8-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"zihqHflZ8\",layoutId:\"zihqHflZ8\",o9eFEcqhh:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Mietanfrage\",Tt4PbskiM:Tt4PbskiMtnl6xx,variant:\"Vc99mf_AJ\",width:\"100%\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gngglw-container\",layoutDependency:layoutDependency,layoutId:\"jVDwMjgxT-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jVDwMjgxT\",layoutId:\"jVDwMjgxT\",o9eFEcqhh:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Reservierung\",Tt4PbskiM:Tt4PbskiM1be4jt8,variant:\"gkZ58bxl5\",width:\"100%\"})})]})})});});const css=['.framer-t1Ymk[data-border=\"true\"]::after, .framer-t1Ymk [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t1Ymk.framer-uf6xsq, .framer-t1Ymk .framer-uf6xsq { display: block; }\",\".framer-t1Ymk.framer-ql37b4 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-t1Ymk .framer-jx9wq6-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-t1Ymk .framer-gngglw-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t1Ymk.framer-ql37b4 { gap: 0px; } .framer-t1Ymk.framer-ql37b4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-t1Ymk.framer-ql37b4 > :first-child { margin-top: 0px; } .framer-t1Ymk.framer-ql37b4 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 98\n * @framerIntrinsicWidth 133.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xsqfg3pdc\":\"tap\",\"OlZGG1FI5\":\"tap2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerW_rVsbXyg=withCSS(Component,css,\"framer-t1Ymk\");export default FramerW_rVsbXyg;FramerW_rVsbXyg.displayName=\"Floating Buttons\";FramerW_rVsbXyg.defaultProps={height:98,width:133.5};addPropertyControls(FramerW_rVsbXyg,{xsqfg3pdc:{title:\"Tap\",type:ControlType.EventHandler},OlZGG1FI5:{title:\"Tap 2\",type:ControlType.EventHandler}});addFonts(FramerW_rVsbXyg,[...ButtonFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW_rVsbXyg\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"xsqfg3pdc\\\":\\\"tap\\\",\\\"OlZGG1FI5\\\":\\\"tap2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"133.5\",\"framerIntrinsicHeight\":\"98\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W_rVsbXyg.map"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "J3Ow6uGfC_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "u", "__FramerMetadata__", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "J3Ow6uGfC_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "close", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ryLnB0VKw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapb2p0z2", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerJ3Ow6uGfC", "withCSS", "J3Ow6uGfC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "JeqZLbsLh_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "valuesByLocaleId", "JeqZLbsLh_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "close", "height", "id", "tap", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "aVO7Nwsqz", "zou2IpaPi", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1b5ijmf", "args", "onTap1lplcxj", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "LayoutGroup", "u", "motion", "cx", "serializationHash", "RichText2", "x", "Embed", "css", "FramerJeqZLbsLh", "withCSS", "JeqZLbsLh_default", "addPropertyControls", "ControlType", "addFonts", "EmbedFonts", "fonts", "W_rVsbXyg_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "v1", "__FramerMetadata__", "ButtonFonts", "getFonts", "AIAUkPGRL_default", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "valuesByLocaleId", "W_rVsbXyg_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "tap", "tap2", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xsqfg3pdc", "OlZGG1FI5", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Tt4PbskiMtnl6xx", "args", "Tt4PbskiM1be4jt8", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "LayoutGroup", "u", "motion", "cx", "serializationHash", "AIAUkPGRL_default", "css", "FramerW_rVsbXyg", "withCSS", "W_rVsbXyg_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts"]
}
